/* ============================================================
   TRANSPORT SERVICES
   ABOUT PAGE — FINAL PREMIUM CSS
   ============================================================ */


/* ============================================================
   01. ABOUT PAGE VARIABLES
   ============================================================ */

:root {
    --about-primary: #078bd1;
    --about-primary-dark: #0069a8;
    --about-primary-light: #e7f7ff;

    --about-sky: #dff4ff;
    --about-sky-soft: #f4fbff;

    --about-text: #0b2d49;
    --about-text-soft: #55748d;
    --about-white: #ffffff;

    --about-border: rgba(8, 139, 209, 0.14);

    --about-shadow:
        0 20px 55px rgba(5, 69, 105, 0.10);

    --about-shadow-hover:
        0 28px 70px rgba(5, 69, 105, 0.16);

    --about-radius: 24px;
    --about-container: 1080px;
}


/* ============================================================
   02. PAGE BASE
   ============================================================ */

.transport-about-main {
    width: 100%;
    overflow: hidden;
    color: var(--about-text);
    background:
        linear-gradient(
            180deg,
            #f5fbff 0%,
            #ffffff 42%,
            #eef9ff 100%
        );
}

.transport-about-main .container {
    width: min(
        calc(100% - 40px),
        var(--about-container)
    );

    margin-left: auto;
    margin-right: auto;
}


/* ============================================================
   03. HERO
   ============================================================ */

.about-hero {
    position: relative;
    isolation: isolate;

    padding: 92px 0 86px;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(7, 139, 209, 0.13),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 10%,
            rgba(72, 194, 239, 0.17),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #edfaff 0%,
            #ffffff 52%,
            #e2f6ff 100%
        );

    border-bottom: 1px solid var(--about-border);
}


.about-hero-background {
    position: absolute;
    inset: 0;

    pointer-events: none;
    overflow: hidden;

    z-index: -1;
}


.about-hero-orb {
    position: absolute;

    border-radius: 50%;

    filter: blur(1px);

    opacity: 0.7;
}


.about-hero-orb-one {
    width: 320px;
    height: 320px;

    top: -170px;
    right: -80px;

    background:
        radial-gradient(
            circle,
            rgba(7, 139, 209, 0.20),
            rgba(7, 139, 209, 0)
        );
}


.about-hero-orb-two {
    width: 260px;
    height: 260px;

    bottom: -150px;
    left: -100px;

    background:
        radial-gradient(
            circle,
            rgba(71, 194, 239, 0.18),
            rgba(71, 194, 239, 0)
        );
}


.about-hero-content {
    max-width: 820px;
}


.about-eyebrow,
.about-section-label,
.about-cta-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: var(--about-primary);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.2px;
    text-transform: uppercase;
}


.about-eyebrow {
    padding: 9px 15px;

    background: rgba(255, 255, 255, 0.82);

    border: 1px solid rgba(7, 139, 209, 0.18);

    border-radius: 999px;

    box-shadow:
        0 8px 24px rgba(7, 139, 209, 0.08);
}


.about-eyebrow i {
    font-size: 13px;
}


.about-hero-title {
    margin: 22px 0 18px;

    color: var(--about-text);

    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.02;
    letter-spacing: -2.8px;
    font-weight: 900;
}


.about-hero-title span {
    display: inline;

    color: var(--about-primary);
}


.about-hero-description {
    max-width: 760px;

    margin: 0;

    color: var(--about-text-soft);

    font-size: 18px;
    line-height: 1.8;
}


/* ============================================================
   04. INTRO SECTION
   ============================================================ */

.about-intro {
    padding: 92px 0;
    background: #ffffff;
}


.about-content-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.4fr)
        minmax(300px, 0.8fr);

    gap: 72px;

    align-items: center;
}


.about-content {
    max-width: 700px;
}


.about-section-label {
    margin-bottom: 13px;
}


.about-section-label i {
    font-size: 14px;
}


.about-section-title {
    margin: 0 0 20px;

    color: var(--about-text);

    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
    letter-spacing: -1.4px;
    font-weight: 900;
}


.about-content p {
    margin: 0 0 19px;

    color: var(--about-text-soft);

    font-size: 16px;
    line-height: 1.85;
}


.about-content p:last-child {
    margin-bottom: 0;
}


/* ============================================================
   05. TRUST CARD
   ============================================================ */

.about-trust-card {
    position: relative;

    padding: 34px;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #effaff 100%
        );

    border: 1px solid var(--about-border);

    border-radius: var(--about-radius);

    box-shadow: var(--about-shadow);

    overflow: hidden;
}


.about-trust-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -90px;
    right: -70px;

    border-radius: 50%;

    background:
        rgba(7, 139, 209, 0.08);
}


.about-card-icon {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    margin-bottom: 22px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--about-primary),
            var(--about-primary-dark)
        );

    border-radius: 17px;

    box-shadow:
        0 12px 28px rgba(7, 139, 209, 0.25);
}


.about-card-icon i {
    font-size: 22px;
}


.about-trust-card h3 {
    position: relative;

    margin: 0 0 12px;

    color: var(--about-text);

    font-size: 22px;
    font-weight: 850;
}


.about-trust-card > p {
    position: relative;

    margin: 0 0 22px;

    color: var(--about-text-soft);

    font-size: 15px;
    line-height: 1.75;
}


.about-card-points {
    position: relative;

    display: grid;
    gap: 13px;
}


.about-card-point {
    display: flex;
    align-items: center;
    gap: 11px;

    color: var(--about-text);

    font-size: 14px;
    font-weight: 700;
}


.about-card-point i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    flex: 0 0 22px;

    color: #ffffff;

    background: #18b878;

    border-radius: 50%;

    font-size: 10px;
}


/* ============================================================
   06. SERVICES
   ============================================================ */

.about-services {
    padding: 92px 0;

    background:
        linear-gradient(
            180deg,
            #effaff 0%,
            #e5f7ff 100%
        );
}


.about-section-heading {
    max-width: 760px;

    margin-bottom: 48px;
}


.about-section-heading > p {
    margin: 0;

    color: var(--about-text-soft);

    font-size: 16px;
    line-height: 1.8;
}


.about-services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;
}


.about-service-card {
    position: relative;

    min-height: 220px;

    padding: 30px;

    background:
        rgba(255, 255, 255, 0.92);

    border: 1px solid rgba(7, 139, 209, 0.13);

    border-radius: 21px;

    box-shadow:
        0 12px 35px rgba(7, 91, 132, 0.07);

    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;

    overflow: hidden;
}


.about-service-card::after {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    top: -65px;
    right: -55px;

    border-radius: 50%;

    background:
        rgba(7, 139, 209, 0.07);
}


.about-service-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(7, 139, 209, 0.28);

    box-shadow:
        var(--about-shadow-hover);
}


.about-service-icon {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    margin-bottom: 22px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--about-primary),
            #0aa5e8
        );

    border-radius: 15px;

    box-shadow:
        0 10px 25px rgba(7, 139, 209, 0.20);
}


.about-service-icon i {
    font-size: 19px;
}


.about-service-card h3 {
    position: relative;
    z-index: 1;

    margin: 0 0 10px;

    color: var(--about-text);

    font-size: 18px;
    line-height: 1.35;
    font-weight: 850;
}


.about-service-card p {
    position: relative;
    z-index: 1;

    margin: 0;

    color: var(--about-text-soft);

    font-size: 14px;
    line-height: 1.7;
}


/* ============================================================
   07. BOOKING PROCESS
   ============================================================ */

.about-process {
    padding: 92px 0;

    background: #ffffff;
}


.about-process-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;
}


.about-process-card {
    position: relative;

    padding: 30px 25px;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f4fbff 100%
        );

    border: 1px solid var(--about-border);

    border-radius: 20px;

    box-shadow:
        0 10px 30px rgba(5, 69, 105, 0.06);

    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease;
}


.about-process-card:hover {
    transform: translateY(-5px);

    box-shadow:
        var(--about-shadow);
}


.about-process-number {
    margin-bottom: 19px;

    color: rgba(7, 139, 209, 0.22);

    font-size: 15px;
    font-weight: 900;
    letter-spacing: 1px;
}


.about-process-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin-bottom: 19px;

    color: var(--about-primary);

    background: var(--about-primary-light);

    border: 1px solid rgba(7, 139, 209, 0.12);

    border-radius: 14px;
}


.about-process-icon i {
    font-size: 18px;
}


.about-process-card h3 {
    margin: 0 0 10px;

    color: var(--about-text);

    font-size: 18px;
    font-weight: 850;
}


.about-process-card p {
    margin: 0;

    color: var(--about-text-soft);

    font-size: 14px;
    line-height: 1.7;
}


/* ============================================================
   08. CTA
   ============================================================ */

.about-cta {
    padding: 0 0 92px;

    background: #ffffff;
}


.about-cta-box {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding: 48px 52px;

    background:
        linear-gradient(
            135deg,
            #063d62 0%,
            #075c89 50%,
            #078bd1 100%
        );

    border-radius: 28px;

    box-shadow:
        0 24px 65px rgba(3, 62, 96, 0.22);

    overflow: hidden;
}


.about-cta-box::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    top: -170px;
    right: -80px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.09);
}


.about-cta-box::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    bottom: -160px;
    left: 30%;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.07);
}


.about-cta-content,
.about-cta-action {
    position: relative;
    z-index: 1;
}


.about-cta-label {
    color: #a9e4ff;

    margin-bottom: 12px;
}


.about-cta-content h2 {
    max-width: 680px;

    margin: 0 0 12px;

    color: #ffffff;

    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    letter-spacing: -1px;
    font-weight: 900;
}


.about-cta-content p {
    max-width: 620px;

    margin: 0;

    color: rgba(255, 255, 255, 0.80);

    font-size: 15px;
    line-height: 1.7;
}


.about-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-width: 190px;

    padding: 15px 22px;

    color: var(--about-text);

    background: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.55);

    border-radius: 13px;

    font-size: 14px;
    font-weight: 850;

    text-decoration: none;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.14);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.about-cta-button:hover {
    color: var(--about-text);

    transform: translateY(-3px);

    box-shadow:
        0 17px 35px rgba(0, 0, 0, 0.20);
}


.about-cta-button i {
    color: var(--about-primary);

    transition:
        transform 0.25s ease;
}


.about-cta-button:hover i {
    transform: translateX(4px);
}


/* ============================================================
   09. FOCUS / ACCESSIBILITY
   ============================================================ */

.about-cta-button:focus-visible {
    outline: 3px solid rgba(7, 139, 209, 0.30);
    outline-offset: 4px;
}


.about-service-card:focus-within,
.about-process-card:focus-within {
    outline: 2px solid rgba(7, 139, 209, 0.25);
    outline-offset: 3px;
}


/* ============================================================
   10. TABLET
   ============================================================ */

@media (max-width: 991.98px) {

    .about-hero {
        padding: 78px 0 72px;
    }


    .about-content-grid {
        grid-template-columns: 1fr;

        gap: 42px;
    }


    .about-content {
        max-width: 100%;
    }


    .about-services-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .about-process-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .about-cta-box {
        padding: 40px;
    }

}


/* ============================================================
   11. MOBILE
   ============================================================ */

@media (max-width: 767.98px) {

    .transport-about-main .container {
        width: min(
            calc(100% - 28px),
            var(--about-container)
        );
    }


    .about-hero {
        padding: 64px 0 58px;
    }


    .about-hero-title {
        margin-top: 18px;

        font-size: clamp(36px, 11vw, 52px);

        letter-spacing: -1.8px;
    }


    .about-hero-description {
        font-size: 16px;
        line-height: 1.7;
    }


    .about-intro,
    .about-services,
    .about-process {
        padding: 68px 0;
    }


    .about-section-title {
        font-size: 31px;
    }


    .about-trust-card {
        padding: 27px;
    }


    .about-services-grid,
    .about-process-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    .about-service-card {
        min-height: auto;

        padding: 26px;
    }


    .about-process-card {
        padding: 27px;
    }


    .about-cta {
        padding-bottom: 68px;
    }


    .about-cta-box {
        flex-direction: column;
        align-items: flex-start;

        padding: 34px 27px;

        border-radius: 22px;
    }


    .about-cta-content h2 {
        font-size: 30px;
    }


    .about-cta-action {
        width: 100%;
    }


    .about-cta-button {
        width: 100%;
    }

}


/* ============================================================
   12. SMALL MOBILE
   ============================================================ */

@media (max-width: 479.98px) {

    .about-eyebrow {
        padding: 8px 12px;

        font-size: 10px;
        letter-spacing: 0.9px;
    }


    .about-hero-title {
        font-size: 36px;
    }


    .about-hero-description {
        font-size: 15px;
    }


    .about-section-title {
        font-size: 28px;
    }


    .about-section-heading {
        margin-bottom: 34px;
    }


    .about-card-icon,
    .about-service-icon {
        width: 48px;
        height: 48px;
    }


    .about-trust-card {
        padding: 23px;
    }


    .about-service-card {
        padding: 23px;
    }


    .about-process-card {
        padding: 23px;
    }


    .about-cta-box {
        padding: 29px 22px;
    }


    .about-cta-content h2 {
        font-size: 27px;
    }

}


/* ============================================================
   13. REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    .about-service-card,
    .about-process-card,
    .about-cta-button,
    .about-cta-button i {
        transition: none;
    }

}