:root {
    --red-border: #e6492b;
    --baf-red: #E53935;
    --baf-red-dark: #C62828;
    --baf-brand: #e6492b;
    --baf-white: #ffffff;
    --baf-border: #E6E8EC;
    --logos-height-desktop: 52px;
    --logos-height-mobile: 36px;
    --nav-h-desktop: 88px;
    --nav-h-mobile: 72px;
    --logos-bar-h-desktop: 84px;
    --logos-bar-h-mobile: 64px;
}

.baf-home {
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.baf-navbar {
    flex: 0 0 var(--nav-h-desktop);
    z-index: 5;
    background: #fff !important;
    border-bottom: 1px solid #eee;
}

.menu-btn {
    position: absolute;
    right: 40px;
    top: 11px;
}

@media (max-width: 576px) {
    .menu-btn {
        position: absolute;
        right: 10px;
        top: 11px;
    }
}

.menu-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    backdrop-filter: blur(6px);
    color: #fff;
    font-weight: 700;
    line-height: 1;
    font-size: .85rem;
    -webkit-backdrop-filter: blur(6px);
    background: linear-gradient(180deg, #ff7b68 0%, #d93522 60%, #b71d0c 100%);
    cursor: pointer;
    transition: all .25s ease;
    z-index: 1000;
    border: 2px solid #b51c0b;
    box-shadow:
        inset 0 3px 8px rgba(255, 255, 255, 0.4),
        inset 0 -3px 8px rgba(0, 0, 0, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.3);
}

.menu-btn:hover {
    transform: translateY(-1px) scale(1.03);
    background: linear-gradient(180deg, #ff8b7a 0%, #e54430 60%, #c22514 100%);
    box-shadow:
        inset 0 4px 10px rgba(255, 255, 255, 0.45),
        inset 0 -3px 8px rgba(0, 0, 0, 0.45),
        0 6px 14px rgba(0, 0, 0, 0.35);
}

.baf-btn {
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    font-size: .85rem;
    border-radius: 999px;
    padding: 10px 22px;
    line-height: 1;
    text-decoration: none;
    transition: transform .2s, background .2s, color .2s, box-shadow .2s;
    display: inline-block;
}

.baf-btn-red {
    color: #fff;
    background: linear-gradient(180deg, #ff7b68 0%, #d93522 60%, #b71d0c 100%);
    border: 2px solid #b51c0b;
    box-shadow:
        inset 0 3px 8px rgba(255, 255, 255, 0.4),
        inset 0 -3px 8px rgba(0, 0, 0, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.3);
}

.baf-btn-red:hover {
    transform: translateY(-1px) scale(1.03);
    background: linear-gradient(180deg, #ff8b7a 0%, #e54430 60%, #c22514 100%);
    box-shadow:
        inset 0 4px 10px rgba(255, 255, 255, 0.45),
        inset 0 -3px 8px rgba(0, 0, 0, 0.45),
        0 6px 14px rgba(0, 0, 0, 0.35);
}

.baf-btn-red:active {
    transform: scale(0.97);
    background: linear-gradient(180deg, #e56f60 0%, #c9321e 60%, #9e1a0a 100%);
    box-shadow:
        inset 0 2px 6px rgba(0, 0, 0, 0.6),
        0 2px 5px rgba(0, 0, 0, 0.25);
}

.baf-btn-outline {
    color: #000;
    background: #fff;
}

.baf-btn-outline:hover {
    color: #fff;
    background: linear-gradient(#e6beb3, #bf3e2b, #de402c);
}

.baf-hero {
    position: relative;
    flex: 1 1 auto;
    overflow: hidden;
}

.baf-hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.baf-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, .15) 0%,
            rgba(0, 0, 0, .35) 60%,
            rgba(0, 0, 0, .65) 100%);
}



.baf-logos {
    flex: 0 0 var(--logos-bar-h-desktop);
    background: #fff;
    border-top: 1px solid #eaeaea;
}

.baf-logos-inner {
    height: 100%;
    margin: 0 auto;
    padding: 0 12px;
    display: flex;
    align-items: center;
}

.baf-marquee {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.baf-track {
    display: inline-flex;
    align-items: center;
    gap: 56px;
    will-change: transform;
    animation: baf-scroll 28s linear infinite;
}

.baf-track img {
    width: 80px;
    filter: grayscale(15%);
}

@keyframes baf-scroll {
    0% {
        transform: translateX(1px)
    }

    100% {
        transform: translateX(-33.333%);
    }
}

@media (max-width:768px) {
    .baf-navbar {
        flex-basis: var(--nav-h-mobile);
    }

    .baf-logos {
        flex-basis: var(--logos-bar-h-mobile);
    }

    
}

.text-brand {
    color: var(--baf-brand);
}

.offcanvas-dark {
    background: rgba(10, 10, 14, .96);
    color: #f1f1f1;
    backdrop-filter: blur(6px);
}

.offcanvas-dark .offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.menu-list li a {
    display: block;
    padding: .6rem .2rem;
    text-decoration: none;
    font-size: 0.8rem;
    color: #e8e8e8;
    border-radius: 8px;
    transition: background .2s ease, transform .15s ease;
}

.menu-list li a:hover {
    background: rgba(255, 255, 255, .06);
    transform: translateX(4px);
}

.menu-list li a.active {
    color: var(--red-border);
}

.navbar .navbar-toggler .navbar-toggler-icon {
    filter: invert(1) brightness(1.4);
}

/* About Us Page */
.about-us {
    position: relative;
    min-height: 100vh;
    color: #fff;
    overflow: hidden;
    padding: 10px 1.5rem;
}


.about-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.content-wrapper {
    z-index: 2;
}

.about-us * {
    text-shadow: -2px 6px 6px rgba(0, 0, 0, 0.4);
}

.about-us h2 {
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Cinzel", serif;
}

.about-us .about-text {
    width: 50%;
    position: absolute;
    bottom: 10px;
    right: 40px;
}

@media (max-width: 991px) {
    .about-us .about-text {
        width: 70%;
    }
}

@media (max-width: 768px) {
    .about-us .about-text {
        width: 90%;
    }
}

.about-us .about-text p {
    text-align: right;
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Mission Statement */

.mission-statement {
    position: relative;
    min-height: 100vh;
    color: #fff;
    overflow: hidden;
    padding: 10px 1.5rem;
}

.mission-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.mission-statement * {
    text-shadow: -2px 6px 6px rgba(0, 0, 0, 0.4);
}

.mission-statement h2 {
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Cinzel", serif;
}

.mission-statement .mission-statement-text {
    width: 50%;
    position: absolute;
    bottom: 10px;
    right: 40px;
}

@media (max-width: 991px) {
    .mission-statement .mission-statement-text {
        width: 70%;
    }
}

@media (max-width: 768px) {
    .mission-statement .mission-statement-text {
        width: 90%;
        right: 20px;
    }

}

.mission-statement .mission-statement-text p {
    text-align: right;
    line-height: 1.7;
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Register Page */
.baf-classic {
    background: #fff;
    min-height: 100vh;
    padding-top: 10px;
    padding-bottom: 24px;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.baf-box {
    border: 1px solid #1a1a1a;
    padding: 16px 18px 14px;
    background: #ffffff;
}

.baf-box-title {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: .02em;
    color: #111;
    text-transform: uppercase;
    padding: 8px 10px;
    margin: 0 0 14px 0;
    display: inline-block;
    background: #fff;
}

.baf-field {
    margin-bottom: 10px;
}

.baf-field>label {
    display: block;
    font-size: 13px;
    color: #000;
    letter-spacing: .02em;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.baf-field>input[type="text"],
.baf-field>input[type="email"],
.baf-field>input[type="password"],
.baf-field>input[type="number"],
.baf-field>input[type="file"],
.baf-field>input[type="url"],
.baf-field>textarea {
    width: 100%;
    border: 1px solid #1a1a1a;
    padding: 6px 8px;
    border-radius: 0;
    font-size: 14px;
    background: #fff;
}

.baf-or {
    font-style: italic;
    margin: 4px 0 8px;
    color: #333;
    text-transform: lowercase;
}

.btn-join {
    display: inline-block;
    background: #1267b0;
    color: #fff;
    border: 1px solid #0f4f85;
    padding: 10px 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .02em;
    cursor: pointer;
}

.btn-join:hover {
    background: #0f5c9e;
}

.baf-list-title {
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 6px;
}

.baf-list-title span {
    font-weight: 400;
    font-size: 12px;
}

.baf-checkgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 8px;
}

.baf-check {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    text-transform: uppercase;
    color: #000;
}

.baf-check input {
    margin: 0;
}

.was-validated input:invalid {
    border-color: #d52a2a !important;
}

/* Passenger Boarding Posting Fee */
.passenger-posting-fee {
    min-height: 100vh;
}

.passenger-posting-fee h4 {
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: -2px 6px 6px rgba(0, 0, 0, 0.4);
    color: #fff;
    position: absolute;
    right: 50px;
}

.passenger-posting-fee p, h5, h4 {
    font-family: 'Times New Roman', Times, serif !important;
}

.passenger-posting-fee p {
    font-size: 1.15rem;
}

.passenger-posting-fee h5 {
    font-weight: 600;
}

.passenger-posting-fee .container-fluid {
    padding: 2rem 7rem;
}

@media (max-width: 991px) {
    .passenger-posting-fee .container-fluid {
        padding: 2rem 4rem;
    }

}

@media (max-width: 768px) {
    .passenger-posting-fee .container-fluid {
        padding: 2rem 2rem;
    }

}

@media (max-width: 576px) {
    .passenger-posting-fee .container-fluid {
        padding: 2rem 1rem;
    }

}

.passenger-posting-fee .block-1 {
    min-height: 100vh;
    padding: 2.4rem 0rem;
    background-image: url('../images/passenger-posting-fee.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* Toaster */
.baf-toast-wrap {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 1060;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.baf-toast {
    pointer-events: auto;
    min-width: 260px;
    max-width: 360px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.35;
    animation: toast-in .3s ease-out;
}

.baf-toast .baf-title {
    font-weight: 600;
    margin: 0 0 2px;
}

.baf-toast .baf-text {
    margin: 0;
}

.baf-toast .baf-close {
    margin-left: auto;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    color: #666;
}

.baf-toast-success {
    border-color: #34d399;
}

.baf-toast-success .baf-title {
    color: #065f46;
}

.baf-toast-error {
    border-color: #f87171;
}

.baf-toast-error .baf-title {
    color: #7f1d1d;
}

@keyframes toast-in {
    from {
        opacity: 0;
        transform: translateY(-6px) translateX(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0) translateX(0);
    }
}