/* =========================================================
   MILES WINGS TRAVEL
   ABOUT US PAGE
========================================================= */

:root {

    --navy: #06285C;
    --navy-dark: #031C43;
    --gold: #E9A719;
    --gold-light: #F5B82E;

    --white: #FFFFFF;
    --off-white: #F8FAFD;

    --text: #172033;
    --muted: #687386;
    --border: #E7EBF1;

}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text);

    line-height: 1.5;

    overflow-x: hidden;

}


img {

    max-width: 100%;

    display: block;

}


a {
    color: inherit;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100px;

    background:
        #FFFFFF;

    z-index: 9999;

    transition:
        height 0.55s cubic-bezier(0.22,1,0.36,1),
        box-shadow 0.55s ease;

}


.site-header.scrolled {

    height: 72px;

    box-shadow:
        0 4px 22px rgba(3,28,67,0.10);

}


.header-container {

    width: 92%;
    max-width: 1380px;

    height: 100%;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* =========================================================
   LOGO
========================================================= */

.brand-logo {

    margin-left: 15px;

    display: flex;

    align-items: center;

    text-decoration: none;

}


.brand-logo img {

    width: 105px;

    transition:
        width 0.55s cubic-bezier(0.22,1,0.36,1);

}


.site-header.scrolled .brand-logo img {

    width: 90px;

}


/* =========================================================
   NAVIGATION
========================================================= */

.main-navigation {

    margin-left: auto;

    margin-right: 28px;

}


.main-navigation ul {

    list-style: none;

    display: flex;

    align-items: center;

    gap: 4px;

}


.main-navigation a {

    position: relative;

    height: 88px;

    padding: 0 16px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--navy);

    text-decoration: none;

    font-size: 15px;

    font-weight: 600;

    transition:
        height 0.55s cubic-bezier(0.22,1,0.36,1),
        color 0.25s ease;

}


.site-header.scrolled
.main-navigation a:not(.quote-button) {

    height: 62px;

}


.main-navigation a::after {

    content: "";

    position: absolute;

    bottom: 23px;
    left: 50%;

    width: 0;
    height: 2px;

    background: var(--gold);

    transform: translateX(-50%);

    transition:
        width 0.25s ease,
        bottom 0.55s ease;

}


.site-header.scrolled
.main-navigation a::after {

    bottom: 10px;

}


.main-navigation a:hover,
.main-navigation a.active {

    color: var(--gold);

}


.main-navigation a:hover::after,
.main-navigation a.active::after {

    width: 60%;

}


/* =========================================================
   QUOTE BUTTON
========================================================= */

.quote-button {

    width: 120px !important;
    height: 42px !important;

    border-radius: 5px;

    background: var(--navy);

    color: var(--white) !important;

}


.site-header.scrolled
.quote-button {

    width: 112px !important;
    height: 38px !important;

}


.quote-button::after {

    display: none !important;

}


.quote-button:hover {

    background: var(--gold);

    color: var(--navy) !important;

}


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

.mobile-menu {

    display: none;

    width: 40px;
    height: 40px;

    border: none;

    background: transparent;

    cursor: pointer;

    flex-direction: column;

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

    gap: 5px;

    z-index: 10001;

}


.mobile-menu span {

    width: 25px;
    height: 2px;

    background: var(--navy);

    transition:
        transform 0.3s ease,
        opacity 0.2s ease;

}


.mobile-menu.active
span:nth-child(1) {

    transform:
        translateY(7px)
        rotate(45deg);

}


.mobile-menu.active
span:nth-child(2) {

    opacity: 0;

}


.mobile-menu.active
span:nth-child(3) {

    transform:
        translateY(-7px)
        rotate(-45deg);

}


/* =========================================================
   SHARED LABEL
========================================================= */

.section-label {

    display: inline-block;

    color: var(--gold);

    font-size: 24px;

    font-weight: 800;

    letter-spacing: 2.8px;

}


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

.about-hero {

    min-height: 78vh;

    padding:
        150px 8%
        90px;

    position: relative;

    display: flex;

    align-items: flex-end;

    color: var(--white);

    background: var(--navy-dark);

    overflow: hidden;

}


.hero-image {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(3,28,67,0.96),
            rgba(3,28,67,0.75),
            rgba(3,28,67,0.20)
        ),

        url("travel-about.jpg")
        center / cover no-repeat;

}


.hero-content {

    position: relative;

    z-index: 2;

    max-width: 780px;

}


.hero-label {

    color: var(--gold-light);

    font-size: 18px;

    font-weight: 800;

    letter-spacing: 3px;

}


.hero-content h1 {

    margin:
        16px 0
        22px;

    font-size:
        clamp(50px, 7vw, 88px);

    line-height: 0.98;

    letter-spacing: -3px;

}


.hero-content h1 em {

    display: block;

    color: var(--gold-light);

    font-style: normal;

}


.hero-content p {

    max-width: 600px;

    color:
        rgba(255,255,255,0.82);

    font-size: 17px;

    line-height: 1.75;

    white-space: normal;

}

@media (min-width: 1001px) {
    .hero-content p{
        white-space: nowrap;
    }
}


.hero-side {

    position: absolute;

    right: 5%;
    bottom: 55px;

    writing-mode: vertical-rl;

    transform: rotate(180deg);

    color:
        rgba(255,255,255,0.35);

    font-size: 10px;

    letter-spacing: 4px;

    font-weight: 800;

}


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

.story-section {

    max-width: 1250px;

    margin: auto;

    padding:
        120px 7%;

    display: grid;

    grid-template-columns:
        1fr
        0.9fr;

    gap: 90px;

    align-items: center;

}


.story-image {

    position: relative;

    padding-right: 30px;

}


.story-image img {

    width: 100%;

    height: 540px;

    object-fit: cover;

}


.story-badge {

    position: absolute;

    right: 0;
    bottom: 30px;

    width: 180px;

    padding: 20px;

    background: var(--navy);

    color: var(--white);

}


.story-badge small,
.story-badge span {

    display: block;

    color:
        rgba(255,255,255,0.60);

    font-size: 9px;

    letter-spacing: 1.5px;

}


.story-badge strong {

    display: block;

    color: var(--gold-light);

    font-size: 25px;

}


.story-content h2 {

    margin:
        12px 0
        25px;

    color: var(--navy);

    font-size:
        clamp(38px, 4vw, 45px);

    line-height: 1.05;

    text-align: justify;

}


.story-content h2 span {

    color: var(--gold);

}


.story-content p {

    margin-bottom: 16px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.85;

    text-align: justify;

}


.story-content .story-lead {

    color: var(--navy);

    font-size: 18px;

    font-weight: 600;

}


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

.mission-section {

    padding:
        105px 7%;

    background: var(--off-white);

}


.section-head {

    max-width: 1100px;

    margin:
        0 auto
        55px;

    text-align: center;

}


.section-head h2 {

    margin-top: 12px;

    color: var(--navy);

    font-size:
        clamp(38px, 4vw, 52px);

    line-height: 1.05;

    white-space: nowrap;

}

@media (max-width: 600px) {

    .section-head {
        max-width: 100%;
    }

    .section-head h2 {
        white-space: normal;
    }

}


.section-head h2 span {

    color: var(--gold);
    display: inline;

}


.mission-grid {

    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 20px;

}


.mission-card {

    min-height: 320px;

    padding: 45px;

    position: relative;

    border:
        1px solid var(--border);

}


.mission-card.dark {

    background: var(--navy);

    color: var(--white);

    border: none;

}


.mission-card > b {

    position: absolute;

    right: 30px;
    top: 25px;

    font-size: 11px;

    opacity: 0.5;

}


.mission-card small {

    display: block;

    color: var(--gold);

    font-size: 15px;

    font-weight: 800;

    letter-spacing: 2.5px;

}


.mission-card h3 {

    margin:
        18px 0;

    font-size:
        clamp(20px, 3vw, 30px);

    line-height: 1.08;

}


.mission-card h3 strong {

    display: block;

    color: var(--gold-light);

}


.mission-card:not(.dark)
h3 strong {

    color: var(--gold);

}


.mission-card p {

    max-width: 550px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;

}


.mission-card.dark p {

    color:
        rgba(255,255,255,0.68);

}


/* =========================================================
   PROCESS
========================================================= */

.process-section {

    padding:
        120px 7%;

}


.process-head {

    max-width: 1100px;

    margin:
        auto auto 60px;

    display: grid;

    grid-template-columns:
        1fr
        0.8fr;

    gap: 80px;

    align-items: center;

}


.process-head h2 {

    margin-top: 12px;

    color: var(--navy);

    font-size:
        clamp(40px, 4.5vw, 58px);

    line-height: 1.03;

}


.process-head h2 span {

    color: var(--gold);
    display: block;

}


.process-head > p {

    color: var(--muted);

    font-size: 16px;

    line-height: 1.8;

    text-align: justify;

}


.steps {

    max-width: 1200px;

    margin: auto;

    display: grid;

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

    border-top:
        1px solid var(--border);

}


.process-step {

    min-height: 220px;

    padding:
        38px 28px;

    border-right:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);

}


.process-step:first-child {

    border-left:
        1px solid var(--border);

}


.process-step i {

    display: flex;

    width: 34px;
    height: 34px;

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

    margin-bottom: 30px;

    border-radius: 50%;

    background:
        #FFF6DF;

    color: var(--navy);

    font-size: 10px;

    font-style: normal;

    font-weight: 800;

}


.process-step h3 {

    margin-bottom: 9px;

    color: var(--navy);

    font-size: 21px;

}


.process-step p {

    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;

}


/* =========================================================
   DIFFERENCE
========================================================= */

.difference-section {

    padding:
        110px 7%;

    background:
        var(--off-white);

    display: grid;

    grid-template-columns:
        0.95fr
        1.05fr;

    gap: 85px;

    align-items: center;

}


.difference-image img {

    width: 100%;

    height: 560px;

    object-fit: cover;

}


.difference-content h2 {

    margin:
        12px 0
        22px;

    color: var(--navy);

    font-size:
        clamp(38px, 4vw, 53px);

    line-height: 1.05;

}


.difference-content h2 span {

    color: var(--gold);

}


.difference-content > p {

    max-width: 600px;

    margin-bottom: 32px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.8;

    text-align: justify;

}


.difference-list {

    border-top:
        1px solid var(--border);

}


.difference-item {

    padding:
        18px 0;

    display: grid;

    grid-template-columns:
        40px
        1fr;

    gap: 15px;

    border-bottom:
        1px solid var(--border);

}


.difference-item b {

    color: var(--gold);

    font-size: 11px;

}


.difference-item span {

    color: var(--muted);

    font-size: 12px;

    line-height: 1.6;

}


.difference-item strong {

    display: block;

    color: var(--navy);

    font-size: 15px;

}


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

.values-section {

    padding:
        100px 7%;

    background: var(--navy);

    color: var(--white);

}


.values-section .section-head {
    max-width: 1100px;
}

.values-section .section-head h2 {
    color: var(--white);
    white-space: nowrap;
}


@media (max-width: 600px) {

    .values-section .section-head {
        max-width: 100%;
    }

    .values-section .section-head h2 {
        white-space: normal;
    }

}


.value-grid {

    max-width: 1200px;

    margin: auto;

    display: grid;

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

    border-top:
        1px solid
        rgba(255,255,255,0.16);

    border-bottom:
        1px solid
        rgba(255,255,255,0.16);

}


.value-item {

    min-height: 210px;

    padding:
        30px 25px;

    border-right:
        1px solid
        rgba(255,255,255,0.16);

}


.value-item:last-child {

    border-right: none;

}


.value-item b {

    color: var(--gold-light);

    font-size: 11px;

}


.value-item h3 {

    margin:
        45px 0
        8px;

    font-size: 18px;

}


.value-item p {

    color:
        rgba(255,255,255,0.60);

    font-size: 12px;

    line-height: 1.7;

}


/* =========================================================
   SERVICES SNAPSHOT
========================================================= */

.services-snapshot {

    max-width: 1250px;

    margin: auto;

    padding:
        115px 7%;

    display: grid;

    grid-template-columns:
        0.8fr
        1.2fr;

    gap: 90px;

    align-items: center;

}


.snapshot-content h2 {

    margin:
        12px 0
        20px;

    color: var(--navy);

    font-size:
        clamp(38px, 4vw, 52px);

    line-height: 1.05;

}


.snapshot-content h2 span {

    color: var(--gold);

}


.snapshot-content p {

    max-width: 480px;

    margin-bottom: 25px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.8;

    text-align: justify;

}


.text-button {

    display: inline-flex;

    gap: 10px;

    color: var(--navy);

    text-decoration: none;

    font-size: 13px;

    font-weight: 800;

}


.text-button span {

    color: var(--gold);

}


.service-list {

    border-top:
        1px solid var(--border);

}


.service-list a {

    min-height: 76px;

    display: grid;

    grid-template-columns:
        50px
        1fr
        auto;

    align-items: center;

    gap: 15px;

    border-bottom:
        1px solid var(--border);

    text-decoration: none;

}


.service-list b {

    color: var(--gold);

    font-size: 10px;

}


.service-list strong {

    color: var(--navy);

    font-size: 16px;

}


.service-list small {

    color: var(--muted);

    font-size: 11px;

}


.service-list a:hover strong {

    color: var(--gold);

}


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

.about-cta {

    padding:
        110px 7%;

    text-align: center;

    color: var(--white);

    background:

        linear-gradient(
            rgba(3,28,67,0.93),
            rgba(6,40,92,0.95)
        ),

        url("travel-cta.jpg")
        center / cover no-repeat;

}


.cta-inner {

    max-width: 900px;

    margin: auto;

}

.cta-inner h3 {
    color: var(--gold-light);
}

.about-cta > div > span {

    color: var(--gold-light);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;

}


.about-cta h2 {

    margin:
        15px 0
        17px;

    font-size:
        clamp(38px,5vw,62px);

    line-height: 1.04;

}


.about-cta h2 strong {

    display: block;

    color: var(--gold-light);

}


.about-cta p {

    color:
        rgba(255,255,255,0.72);

    font-size: 16px;

}


.cta-buttons {

    margin-top: 32px;

    display: flex;

    justify-content: center;

    gap: 12px;

}


.gold-button,
.light-button {

    min-height: 50px;

    padding: 0 27px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 5px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 800;

}


.gold-button {

    background: var(--gold);

    color: var(--navy);

}


.gold-button:hover {

    background: var(--gold-light);

}


.light-button {

    border:
        1px solid
        rgba(255,255,255,0.75);

    color: var(--white);

}


.light-button:hover {

    background: var(--white);

    color: var(--navy);

}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    background: var(--navy-dark);

    color: var(--white);

}


.footer-container {

    max-width: 1250px;

    margin: auto;

    padding:
        65px 7%;

    display: grid;

    grid-template-columns:
        1.4fr
        0.8fr
        1.2fr
        1fr;

    gap: 45px;

}


.footer-brand img {

    width: 50px;

    margin-bottom: 15px;

}


.footer-container h3 {

    margin-bottom: 17px;

    color: var(--gold-light);

    font-size: 13px;

}


.footer-container p,
.footer-container a,
.footer-container span {

    color:
        rgba(255,255,255,0.62);

    font-size: 13px;

}


.footer-container a {

    text-decoration: none;

}


.footer-links,
.footer-contact {

    display: flex;

    flex-direction: column;

    gap: 9px;

}


.footer-links a:hover,
.footer-contact a:hover {

    color: var(--gold-light);

}


.footer-cta > a {

    color: var(--gold-light);

    font-weight: 800;

}


.footer-bottom {

    min-height: 55px;

    padding:
        15px 7%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    border-top:
        1px solid
        rgba(255,255,255,0.12);

}


.footer-bottom p {

    color:
        rgba(255,255,255,0.45);

    font-size: 11px;

}


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

@media (max-width: 1000px) {


    .site-header {

        height: 75px;

    }


    .site-header.scrolled {

        height: 68px;

    }


    .header-container {

        width: 92%;

    }


    .brand-logo {

        margin-left: 5px;

    }


    .brand-logo img {

        width: 100px;

    }


    .site-header.scrolled
    .brand-logo img {

        width: 90px;

    }


    .mobile-menu {

        display: flex;

        margin-left: auto;

    }


    .main-navigation {

        position: fixed !important;

        top: 75px !important;

        left: 0;

        width: 100%;

        margin: 0;

        background: var(--white);

        max-height: 0;

        overflow: hidden;

        opacity: 0;

        visibility: hidden;

        pointer-events: none;

        transform:
            translateY(-12px);

        transition:
            max-height 0.45s ease,
            opacity 0.3s ease,
            transform 0.4s ease;

    }


    .site-header.scrolled
    .main-navigation {

        top: 68px !important;

    }


    .main-navigation.mobile-open {

        max-height: 520px;

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform: translateY(0);

    }


    .main-navigation ul {

        width: 92%;

        margin: auto;

        padding:
            12px 0
            18px;

        display: flex;

        flex-direction: column;

        gap: 0;

    }


    .main-navigation li {

        width: 100%;

    }


    .main-navigation a,
    .site-header.scrolled
    .main-navigation a:not(.quote-button) {

        width: 100%;

        height: 48px !important;

        border-bottom:
            1px solid #eee;

    }


    .main-navigation a::after {

        display: none;

    }


    .main-navigation li:last-child {

        padding-top: 12px;

    }


    .quote-button,
    .site-header.scrolled
    .quote-button {

        width: 100% !important;

        height: 44px !important;

    }


    .story-section,
    .difference-section {

        grid-template-columns: 1fr;

    }


    .mission-grid {

        grid-template-columns: 1fr;

    }


    .process-head {

        grid-template-columns: 1fr;

        gap: 25px;

    }


    .steps {

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

    }


    .value-grid {

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

    }


    .value-item:nth-child(2) {

        border-right: none;

    }


    .value-item:nth-child(n+3) {

        border-top:
            1px solid
            rgba(255,255,255,0.16);

    }


    .services-snapshot {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .footer-container {

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

    }

}


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

@media (max-width: 600px) {


    .site-header {

        height: 72px;

    }


    .site-header.scrolled {

        height: 68px;

    }


    .header-container {

        width: 94%;

    }


    .brand-logo img {

        width: 100px;

    }


    .site-header.scrolled
    .brand-logo img {

        width: 90px;

    }


    .main-navigation {

        top: 72px !important;

    }


    .site-header.scrolled
    .main-navigation {

        top: 68px !important;

    }


    .mobile-menu {

        width: 38px;

        height: 38px;

    }


    .about-hero {

        min-height: 75vh;

        padding:
            115px 6%
            70px;

    }


    .hero-content h1 {

        font-size: 46px;

        letter-spacing:
            -1.5px;

    }


    .hero-content p {

        font-size: 14px;

    }


    .hero-side {

        display: none;

    }


    .story-section {

        padding:
            75px 6%;

        gap: 50px;

    }


    .story-image {

        padding-right: 12px;

    }


    .story-image img {

        height: 330px;

    }


    .story-badge {

        right: 0;

        bottom: 20px;

        width: 150px;

    }


    .story-content h2 {

        font-size: 37px;

    }


    .story-content p {

        font-size: 14px;

    }


    .mission-section,
    .process-section,
    .difference-section,
    .values-section,
    .services-snapshot,
    .about-cta {

        padding:
            75px 6%;

    }


    .section-head h2,
    .process-head h2,
    .difference-content h2,
    .snapshot-content h2 {

        font-size: 36px;

    }


    .mission-card {

        min-height: auto;

        padding: 30px;

    }


    .mission-card h3 {

        font-size: 28px;

    }


    .steps {

        grid-template-columns: 1fr;

    }


    .process-step {

        min-height: auto;

        border-left:
            1px solid var(--border);

    }


    .difference-section {

        gap: 45px;

    }


    .difference-image img {

        height: 330px;

    }


    .value-grid {

        grid-template-columns: 1fr;

    }


    .value-item {

        min-height: auto;

        border-right: none;

        border-bottom:
            1px solid
            rgba(255,255,255,0.16);

    }


    .value-item:nth-child(n+3) {

        border-top: none;

    }


    .value-item:last-child {

        border-bottom: none;

    }


    .value-item h3 {

        margin-top: 20px;

    }


    .service-list a {

        grid-template-columns:
            35px
            1fr;

        padding:
            14px 0;

    }


    .service-list small {

        grid-column: 2;

    }


    .about-cta h2 {

        font-size: 36px;

    }


    .about-cta p {

        font-size: 14px;

    }


    .cta-buttons {

        flex-direction: column;

        align-items: center;

    }


    .gold-button,
    .light-button {

        width: 100%;

        max-width: 300px;

    }


    .footer-container {

        padding:
            55px 7%;

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .footer-bottom {

        padding:
            15px 7%;

        flex-direction: column;

        align-items: flex-start;

    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

:focus-visible {

    outline:
        3px solid var(--gold);

    outline-offset: 3px;

}


/* =========================================================
   NAVBAR BRAND NAME
   Miles Wings Travel
========================================================= */

.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.brand-name {
    display: inline-block;
    color: var(--navy);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1.1px;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    transition:
        font-size .5s cubic-bezier(.22,1,.36,1),
        color .25s ease,
        opacity .25s ease;
}

.site-header.scrolled .brand-name {
    font-size: 14px;
}

.brand-logo:hover .brand-name {
    color: var(--gold);
}

@media (max-width: 1100px) {
    .brand-logo {
        gap: 12px;
    }

    .brand-name {
        font-size: 14px;
        letter-spacing: .8px;
    }

    .site-header.scrolled .brand-name {
        font-size: 13px;
    }
}

@media (max-width: 1000px) {
    .brand-logo {
        gap: 10px;
    }

    .brand-name {
        font-size: 13px;
        letter-spacing: .7px;
    }

    .site-header.scrolled .brand-name {
        font-size: 12px;
    }
}

@media (max-width: 600px) {
    .brand-logo {
        gap: 8px;
        max-width: calc(100% - 55px);
    }

    .brand-name {
        font-size: 12px;
        letter-spacing: .55px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .site-header.scrolled .brand-name {
        font-size: 11px;
    }
}
