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

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #222;
    background: #fff
}

/* COLORS */
:root {
    --gold: #c5a059;
    --gold-dark: #a68245;
    --blue: #003d7a;
    --blue-dark: #002b56;
    --dark: #1a1a1a;
    --dark2: #2d2d2d;
    --gray: #f5f5f5;
    --border: #e0e0e0;
    --text: #333;
    --muted: #666;
    --light: #999;
    --light-blue: #f0f7ff;
}

/* NAV */
/* TOP UTILITY BAR - ELITE REDESIGN */
.topbar {
    background: #002b56;
    padding: 10px 0;
    border-bottom: 3px solid var(--gold);
    position: relative;
    z-index: 101;
}

.topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar-left a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
}

.topbar-left a svg {
    width: 14px;
    height: 14px;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.topbar-left a:hover {
    color: #fff;
    transform: translateY(-1px);
}

.topbar-left a:hover svg {
    transform: scale(1.1);
    opacity: 1;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    background: rgba(197, 160, 89, 0.2);
    border: 1px solid rgba(197, 160, 89, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-btn svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    position: relative;
    z-index: 2;
}

.social-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.social-btn:hover {
    transform: translateY(-3px) scale(1.1);
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
    color: #fff;
}

.social-btn:hover::before {
    opacity: 1;
}

@media (max-width: 768px) {
    .topbar-left {
        display: none;
    }

    /* Hide info on mobile to keep it clean */
    .topbar-inner {
        justify-content: center;
    }

    /* Center social icons */
}

/* ELITE PREMIUM NAV */
.nav-premium {
    background: #fff !important;
    border-bottom: 2px solid #f1f5f9;
    height: 95px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10000;
}

.logo-img-asset {
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .logo-img-asset {
        max-height: 45px !important;
    }

    .nav-premium {
        height: 70px !important;
    }
}

.nav-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    height: 100%;
    border: none !important;
}

.nav-links a {
    color: #001529 !important;
    font-size: 13.5px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    height: 100%;
    letter-spacing: 0.03em;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold) !important;
    text-decoration: none !important;
    border: none !important;
}

.nav-links a.has-drop::after {
    content: '';
    display: inline-block;
    margin-left: 6px;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    opacity: 0.7;
}

.nav-item-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    background: #001c36;
    border-top: 3px solid var(--gold);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}

.dropdown-menu a {
    color: #fff !important;
    font-size: 14px !important;
    padding: 12px 25px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.dropdown-menu a:last-child {
    border-bottom: none !important;
}

.nav-links a.nav-cta {
    background: var(--gold);
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 4px;
    height: auto;
    align-self: center;
    font-size: 13px;
    margin-left: 10px;
}

.nav-links a.nav-cta:hover {
    background: #a68241;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-icon {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.logo-text-wrap {
    line-height: 1;
}

.logo-main {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #001529;
    letter-spacing: 0.02em;
    display: block;
    text-transform: uppercase;
    text-decoration: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #001529;
    border-radius: 3px;
    transition: all .3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hidden on desktop, only shown in mobile drawer */
.nav-close-btn {
    display: none;
}

@media (max-width: 1024px) {
    .nav-inner {
        padding: 0 20px;
    }

    .nav-toggle {
        display: flex;
    }

    /* Mobile drawer */
    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 20px 0 40px;
        z-index: 9999;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .nav-links.open {
        transform: translateX(0);
    }

    /* Shrink logo and nav height on tablet/mobile */
    .nav-inner {
        padding: 0 15px;
    }

    /* Close button row at top */
    .nav-close-btn {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: 100%;
        padding: 0 20px 16px;
        border-bottom: 1px solid #f1f5f9;
        margin-bottom: 10px;
    }

    .nav-close-btn button {
        border: none;
        background: #f1f5f9;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        font-size: 18px;
        cursor: pointer;
        font-weight: 700;
        color: #334155;
    }

    /* All top-level nav links on mobile */
    .nav-links>a,
    .nav-links .nav-item-dropdown>a {
        display: block !important;
        width: 100%;
        padding: 14px 24px !important;
        font-size: 14px !important;
        border-bottom: 1px solid #f1f5f9 !important;
        color: #001529 !important;
        height: auto !important;
        align-items: flex-start !important;
    }

    /* Dropdown items indented under parent */
    .nav-links .nav-item-dropdown {
        width: 100%;
        position: static;
        height: auto;
        flex-direction: column;
        align-items: flex-start;
    }

    /* Mobile: dropdown always static, shown via JS toggle */
    .nav-links .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border-top: none !important;
        border-radius: 0 !important;
        display: none;
        width: 100%;
        background: #f8fafc;
        padding: 0;
    }

    .nav-links .dropdown-menu.mob-open {
        display: flex !important;
    }

    .nav-links .dropdown-menu a {
        padding: 11px 24px 11px 40px !important;
        font-size: 13px !important;
        color: #334155 !important;
        border-bottom: 1px solid #edf2f7 !important;
    }

    /* Enquire Now CTA button */
    .nav-links a.nav-cta {
        margin: 20px 24px 0 !important;
        width: calc(100% - 48px);
        text-align: center;
        justify-content: center;
        border-radius: 6px !important;
        padding: 14px 20px !important;
        font-size: 14px !important;
        display: block !important;
        height: auto !important;
    }

    /* Backdrop overlay */
    .nav-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
    }

    .nav-backdrop.open {
        display: block;
    }
}

/* HERO */
.hero {
    position: relative;
    overflow: hidden;
    background: #1a2035
}

.hero-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    opacity: .75
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .25) 60%, transparent 100%)
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 0 80px
}

.hero-text {
    max-width: 680px
}

.hero-h1 {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .3)
}

.hero-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 500px
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.btn-red {
    background: var(--gold);
    color: #fff;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    transition: all .2s;
    border: 2px solid var(--gold)
}

.btn-red:hover {
    background: #a68241;
    border-color: #a68241
}

.btn-outline-white {
    background: transparent;
    color: var(--gold);
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    transition: all .2s;
    border: 2px solid var(--gold)
}

.btn-outline-white:hover {
    background: var(--gold);
    color: #fff;
}

/* RED BANNER */
.red-banner {
    background: var(--gold);
    padding: 16px 0
}

.red-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

.red-banner-text {
    color: #fff;
    font-size: 14px;
    font-style: italic;
    line-height: 1.6;
    text-align: center
}

/* PILOT TRAINING PROGRAMS */
.pilot-programs-sec {
    padding: 80px 0 0 0;
    background: #fff;
}

.programs-tab-bar {
    background: var(--blue);
    padding: 15px 0;
}

.pt-tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.pt-tab-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 24px;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s;
    font-family: inherit;
}

.pt-tab-btn:hover {
    color: #ccc;
}

.pt-tab-btn.active {
    background: #fff;
    color: var(--blue);
    font-weight: 700;
}

.pt-content-box {
    display: flex;
    gap: 40px;
    align-items: center;
    animation: fadeEffect 0.6s;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.pt-image {
    flex: 1;
}

.pt-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: block;
}

.pt-desc {
    flex: 1.2;
}

.pt-desc p {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
}

.pt-btn {
    display: inline-block;
    background: var(--blue);
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s;
}

.pt-btn:hover {
    background: var(--blue-dark);
    color: #fff;
}

.pt-grid-boxes {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #666;
    border-left: 1px solid #666;
    margin-bottom: 20px;
    background: #fff;
}

.pt-box {
    width: 25%;
    border-right: 1px solid #666;
    border-bottom: 1px solid #666;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--blue);
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .pt-content-box {
        flex-direction: column;
    }

    .pt-desc {
        padding: 0 15px;
    }

    .pt-box {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .pt-tabs {
        overflow-x: auto;
        justify-content: flex-start;
        gap: 15px;
        padding-bottom: 10px;
    }

    .pt-tab-btn {
        white-space: nowrap;
    }
}

/* ABOUT SECTION */
.about-premium {
    padding: 90px 0;
    background: #fff;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
    padding: 20px 20px 40px 0;
}

.about-main-img {
    width: 100%;
    display: block;
    border-radius: 6px;
    box-shadow: 25px 25px 60px rgba(0, 0, 0, 0.1);
}

.about-experience-badge {
    position: absolute;
    bottom: 0;
    right: 20px;
    background: var(--gold);
    color: #fff;
    padding: 20px 28px;
    border-radius: 8px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
    animation: float 4s ease-in-out infinite;
}

.exp-num {
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
}

.exp-text {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
    font-weight: 700;
}

.about-h2 {
    font-size: 44px;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 28px;
}

.lead-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 30px 0;
}

.a-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
}

.a-feat i {
    color: var(--gold);
    font-size: 16px;
}

.about-coordinators {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid #efefef;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-coordinators .label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    font-weight: 800;
}

.about-coordinators .names {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-h2 {
        font-size: 34px;
    }
}

/* LEGACY STATS REMOVED */

/* SECTION COMMON */
.section {
    padding: 72px 0
}

.section-alt {
    background: var(--gray)
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

.sec-header {
    text-align: center;
    margin-bottom: 48px
}

.sec-tag {
    display: inline-block;
    color: var(--gold);
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px
}

.sec-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 0
}

.sec-title .red {
    color: var(--gold)
}

.sec-title-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 12px auto 0
}

.sec-sub {
    font-size: 14.5px;
    color: var(--muted);
    margin-top: 14px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto
}

/* COURSES */
.courses-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 36px;
    flex-wrap: wrap
}

.ctab {
    padding: 10px 22px;
    border: 2px solid var(--border);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    background: #fff;
    cursor: pointer;
    transition: all .2s
}

.ctab.active,
.ctab:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold)
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.service-card-new {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.service-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.service-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.service-card-new:hover::before {
    width: 100%;
}

.s-card-icon-box {
    width: 60px;
    height: 60px;
    background: var(--light-blue);
    color: var(--blue-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card-new:hover .s-card-icon-box {
    background: var(--gold);
    color: #fff;
    transform: rotateY(180deg);
}

.s-card-icon-box svg {
    width: 28px;
    height: 28px;
}

.s-card-title {
    font-size: 19px;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.s-card-desc {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.7;
    flex-grow: 1;
}

.s-card-footer {
    margin-top: 30px;
}

.s-card-btn {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background: var(--gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    transition: 0.3s;
}

.s-card-btn:hover {
    background: #a68241;
    transform: translateY(-2px);
    gap: 12px;
}

.course-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    transition: all .3s;
    cursor: pointer
}

.course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .1);
    border-color: var(--gold)
}

.course-card-img {
    height: 160px;
    background: linear-gradient(135deg, #1a2035, #2d3a5e);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.course-card-img svg {
    width: 48px;
    height: 48px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.5;
    opacity: .6
}

.course-card-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 3px;
    letter-spacing: .08em;
    text-transform: uppercase
}

.course-card-body {
    padding: 18px 20px
}

.course-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px
}

.course-card-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 14px
}

.course-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--border)
}

.course-card-tag {
    font-size: 11.5px;
    background: var(--gray);
    color: var(--muted);
    padding: 4px 10px;
    border-radius: 3px
}

.course-card-link {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .05em
}

.course-card-link:hover {
    text-decoration: underline
}

.courses-more {
    text-align: center;
    margin-top: 32px
}

/* JOURNEY — like Amigo's Get on Board but cleaner */
.journey-sec {
    padding: 72px 0;
    background: #fff
}

.journey-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 48px
}

.journey-line {
    position: absolute;
    top: 52px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(to right, var(--gold), rgba(197, 160, 89, .3));
    z-index: 0
}

.journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 24px;
    position: relative;
    z-index: 1
}

.journey-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all .3s;
    position: relative
}

.journey-circle svg {
    width: 30px;
    height: 30px;
    stroke: #999;
    fill: none;
    stroke-width: 1.8;
    transition: stroke .3s
}

.journey-step:hover .journey-circle {
    border-color: var(--gold);
    background: var(--gold)
}

.journey-step:hover .journey-circle svg {
    stroke: #fff
}

.journey-num {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    background: var(--gold);
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center
}

.journey-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 8px
}

.journey-desc {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.6
}

/* CTA BOX */
.cta-box {
    background: var(--blue-dark);
    padding: 24px 32px;
    margin-top: 0;
    border-top: 3px solid var(--gold)
}

.cta-box-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.cta-box p {
    color: rgba(255, 255, 255, .75);
    font-size: 14px;
    font-style: italic
}

.cta-box-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0
}

/* ALLIANCES */
.alliances-sec {
    padding: 48px 0;
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.airlines-marquee {
    overflow: hidden;
    margin-top: 28px
}

.airlines-track {
    display: flex;
    animation: scroll 35s linear infinite;
    white-space: nowrap
}

.airlines-track:hover {
    animation-play-state: paused
}

.airline-pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 28px;
    margin: 0 4px;
    border: 1.5px solid var(--border);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    color: #555;
    background: #fff;
    letter-spacing: .04em;
    transition: all .2s;
    cursor: default;
    flex-shrink: 0
}

.airline-pill:hover {
    border-color: var(--red);
    color: var(--red)
}

/* TESTIMONIALS */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.testi-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 24px;
    transition: all .3s;
    position: relative
}

.testi-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, .08);
    border-color: var(--gold)
}

.testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 12px
}

.testi-stars span {
    color: #f4b700;
    font-size: 15px
}

.testi-text {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 18px
}

.testi-text::before {
    content: '\201C';
    font-size: 48px;
    color: rgba(197, 160, 89, .15);
    line-height: 0;
    vertical-align: -.4em;
    margin-right: 4px
}

.testi-foot {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border)
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--dark);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid var(--gold)
}

.testi-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark)
}

.testi-role {
    font-size: 11px;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-top: 1px
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 4px;
    margin-bottom: 8px;
    overflow: hidden;
    transition: border-color .2s
}

.faq-item.open {
    border-color: var(--gold)
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    gap: 12px
}

.faq-q span {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--dark);
    transition: color .2s
}

.faq-item.open .faq-q span {
    color: var(--red)
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--muted);
    transition: all .2s;
    line-height: 1
}

.faq-item.open .faq-icon {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff
}

.faq-a {
    display: none;
    padding: 0 20px 16px;
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.75;
    border-top: 1px solid #f0f0f0
}

.faq-item.open .faq-a {
    display: block
}

/* CONTACT SECTION */
.contact-sec {
    padding: 72px 0;
    background: var(--gray)
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px
}

.contact-info h3 span {
    color: var(--red)
}

.contact-info p {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 28px;
    line-height: 1.6
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid var(--border)
}

.contact-item:hover {
    border-color: var(--red)
}

.contact-item-icon {
    width: 38px;
    height: 38px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.contact-item-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.8
}

.contact-item-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 3px
}

.contact-item-val {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark)
}

.contact-item-sub {
    font-size: 11.5px;
    color: var(--light);
    margin-top: 1px
}

.contact-form {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .06)
}

.contact-form h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px
}

.contact-form p {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 24px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.form-group {
    margin-bottom: 14px
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 4px;
    padding: 11px 14px;
    font-size: 13.5px;
    font-family: inherit;
    color: var(--dark);
    background: #fff;
    outline: none;
    transition: border-color .2s
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red)
}

.form-group textarea {
    resize: vertical;
    min-height: 90px
}

.form-submit {
    width: 100%;
    background: var(--gold);
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s;
    letter-spacing: .04em
}

.form-submit:hover {
    background: #a68241
}

/* FOOTER */
footer {
    background: var(--blue-dark);
    border-top: 3px solid var(--gold);
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px
}

.footer-logo-name {
    font-size: 20px;
    font-weight: 700;
    color: #fff
}

.footer-logo-name span {
    color: var(--gold)
}

.footer-about {
    font-size: 13px;
    color: rgba(255, 255, 255, .85);
    line-height: 1.7;
    margin-bottom: 18px
}

.footer-socials {
    display: flex;
    gap: 8px
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gold);
    display: inline-block
}

.footer-links {
    list-style: none
}

.footer-links li {
    margin-bottom: 8px
}

.footer-links li a {
    font-size: 13px;
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color .2s
}

.footer-links li a::before {
    content: '›';
    color: var(--gold);
    font-size: 14px;
    font-weight: 700
}

.footer-links li a:hover {
    color: rgba(255, 255, 255, .8)
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.footer-contact-row {
    display: flex;
    gap: 10px;
    align-items: flex-start
}

.footer-contact-row svg {
    width: 14px;
    height: 14px;
    stroke: var(--gold);
    fill: none;
    flex-shrink: 0;
    margin-top: 2px
}

.footer-contact-row span {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .85);
    line-height: 1.5
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 16px 24px
}

.footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px
}

.footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, .6)
}

.footer-bottom-links {
    display: flex;
    gap: 20px
}

.footer-bottom-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    transition: color .2s
}

.footer-bottom-links a:hover {
    color: rgba(255, 255, 255, .5)
}

.footer-logo-bottom {
    text-align: center;
    padding: 16px 0
}

.footer-logo-bottom svg {
    width: 120px;
    height: 32px;
    opacity: .2
}

/* FLOATING SOCIAL SIDEBAR */
.social-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 200;
    display: flex;
    flex-direction: column
}

.sidebar-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: width .2s;
    overflow: hidden
}

.sidebar-icon svg {
    width: 16px;
    height: 16px;
    fill: #fff;
    flex-shrink: 0
}

/* WA FLOAT */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, .4);
    z-index: 200;
    text-decoration: none;
    transition: transform .2s
}

.wa-float:hover {
    transform: scale(1.08)
}

.wa-float svg {
    width: 26px;
    height: 26px;
    fill: #fff
}

/* ANIMATIONS */
@keyframes scroll {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease
}

.fade-up.in {
    opacity: 1;
    transform: translateY(0)
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .nav-inner {
        height: 72px;
        padding: 0 16px;
        justify-content: space-between;
        align-items: center;
    }

    .logo-main {
        font-size: 16px;
    }

    .logo-sub {
        font-size: 9px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        flex-direction: column;
        padding: 100px 30px 40px;
        gap: 15px;
        z-index: 1000;
        overflow-y: auto;
        justify-content: flex-start;
        animation: slideIn .4s forwards ease;
    }

    .nav-links.active {
        display: flex;
    }

    @keyframes slideIn {
        from {
            transform: translateX(100%);
        }

        to {
            transform: translateX(0);
        }
    }

    .nav-links a {
        font-size: 20px;
        width: 100%;
        text-align: left;
        padding: 12px 0;
        border-bottom: 1px solid #f5f5f5;
        font-weight: 600;
    }

    .nav-cta {
        background: var(--gold);
        color: #fff !important;
        text-align: center !important;
        padding: 16px !important;
        margin-top: 10px;
        border-radius: 8px;
        border-bottom: none !important;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .dropdown-menu {
        position: static;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
        border-top: none;
        padding: 10px 0 10px 20px;
        min-width: 100%;
        text-align: left;
        background: #fafafa;
        border-radius: 0;
    }

    .nav-item-dropdown:hover .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        font-size: 15px !important;
        border-bottom: none !important;
        padding: 8px 0 !important;
    }

    .hero-img {
        height: 320px;
    }

    .hero-content {
        padding: 0 20px;
        text-align: center;
    }

    .hero-h1 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .hero-sub {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-btns {
        justify-content: center;
        gap: 8px;
    }

    .btn-red,
    .btn-outline-white {
        padding: 10px 20px;
        font-size: 13px;
    }

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

    .stat-box {
        padding: 20px 10px;
    }

    .stat-num {
        font-size: 32px;
    }

    .courses-grid,
    .services-grid,
    .testi-grid,
    .contact-grid,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .services-grid {
        gap: 15px;
    }

    .journey-steps {
        grid-template-columns: 1fr;
    }

    .journey-line {
        display: none;
    }

    .journey-step {
        margin-bottom: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-box-inner {
        flex-direction: column !important;
        text-align: center !important;
        gap: 24px !important;
        padding: 30px 0 !important;
        align-items: center !important;
    }

    .cta-box p {
        font-size: 16px !important;
        line-height: 1.6 !important;
        max-width: 100% !important;
        margin-bottom: 0 !important;
    }

    .cta-box-btns {
        width: 100% !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
    }

    .cta-box-btns a {
        width: 100% !important;
        max-width: 300px !important;
        text-align: center !important;
        margin: 0 !important;
    }
}

@media (max-width: 768px) {
    .stats-inner {
        grid-template-columns: 1fr;
    }

    .stat-box {
        border-right: none;
    }

    .hero-h1 {
        font-size: 24px;
    }
}

/* INTERNAL PAGES */
.internal-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #001a33 0%, #002b56 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--gold)
}

.internal-hero-content {
    position: relative;
    z-index: 1;
    text-align: center
}

.internal-hero h1 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 12px
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, .5)
}

.breadcrumb a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600
}

.breadcrumb span.sep {
    color: rgba(255, 255, 255, .2)
}

.page-intro {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px
}

/* PILOT COUNTRIES SECTION */
.pilot-countries {
    background: radial-gradient(circle at 50% 50%, #002d5b 0%, #001f3f 100%);
    padding: 100px 0;
    border-top: 4px solid var(--gold);
}

.pilot-countries .sec-title {
    color: #fff !important;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.country-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: default;
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: #fff;
}

.country-flag {
    width: 40px;
    height: 28px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.country-name {
    font-size: 15px;
    font-weight: 700;
    color: #1a2035;
    letter-spacing: 0.02em;
}

@media (max-width: 992px) {
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .countries-grid {
        grid-template-columns: 1fr;
    }
}

/* BG HELPERS */
.bg-white {
    background: #fff
}

.bg-gray {
    background: var(--gray)
}

/* NEWS TICKER - ELITE PERFORMANCE */
.news-ticker {
    background: #002b56;
    border-bottom: 2px solid var(--gold);
    overflow: hidden;
    height: 44px;
    position: relative;
    z-index: 90;
    display: flex;
    align-items: center;
}

.ticker-wrap {
    display: flex;
    height: 100%;
    align-items: center;
    width: 100%;
}

.ticker-label {
    background: var(--gold);
    color: #fff;
    padding: 0 30px 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
    box-shadow: 10px 0 30px rgba(197, 160, 89, 0.5);
}

.rotate-n25 {
    transform: rotate(-15deg);
    display: inline-block;
}

.ticker-content {
    flex-grow: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: ticker-scroll 60s linear infinite;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    padding-right: 60px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.ticker-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.ticker-item a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.ticker-sep {
    margin-left: 25px;
    color: var(--gold);
    font-size: 10px;
    opacity: 0.6;
    display: inline-block;
    transform: rotate(180deg);
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .news-ticker {
        height: 38px;
    }

    .ticker-label {
        padding: 0 20px 0 15px;
        font-size: 10px;
        clip-path: none;
    }

    .ticker-label span {
        display: none;
    }

    /* Show only icon on small mobile */
    .ticker-item {
        font-size: 12px;
        padding-right: 40px;
    }
}

/* SYLLABUS SECTION */
.syllabus-container {
    margin-top: 60px;
    padding: 40px 0;
    border-top: 1px solid #eee;
}

.syllabus-main-title {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #001529;
    text-align: center;
    margin-bottom: 50px;
}

.syllabus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.syllabus-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.syllabus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.syllabus-card-header {
    background: var(--blue);
    color: #fff;
    padding: 15px;
    text-align: center;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.syllabus-card-body {
    padding: 25px 20px;
    font-size: 13px;
    line-height: 1.7;
    color: #555;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.syllabus-note {
    margin-top: 40px;
    font-size: 12px;
    color: #888;
    font-style: italic;
    text-align: center;
    line-height: 1.6;
    border-top: 1px solid #f5f5f5;
    padding-top: 20px;
}

@media (max-width: 900px) {
    .syllabus-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .enquiry-card-premium {
        flex-direction: column;
    }

    .enquiry-info,
    .enquiry-form-wrap {
        padding: 30px !important;
    }
}

@media (max-width: 600px) {
    .syllabus-grid {
        grid-template-columns: 1fr;
    }

    .enquiry-card-premium .form-row {
        grid-template-columns: 1fr !important;
    }
}

/* USER CONTENT STYLES (CKEDITOR) */
.user-html-content h1,
.user-html-content h2,
.user-html-content h3 {
    color: var(--dark);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 800;
}

.user-html-content ul,
.user-html-content ol {
    padding-left: 25px;
    margin-bottom: 20px;
}

.user-html-content li {
    margin-bottom: 8px;
}

.user-html-content table {
    width: 100% !important;
    border-collapse: collapse;
    margin: 20px 0;
}

.user-html-content table td,
.user-html-content table th {
    border: 1px solid var(--border);
    padding: 12px;
}

.user-html-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.user-html-content p {
    margin-bottom: 20px;
}

.user-html-content blockquote {
    border-left: 4px solid var(--gold);
    padding-left: 20px;
    font-style: italic;
    color: var(--muted);
    margin: 30px 0;
}

/* ==========================================
   REDESIGNED PREMIUM ABOUT SECTION (BULLETPROOF)
   ========================================== */
.about-premium {
    padding: 120px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Visual Side */
.about-visual-side {
    position: relative;
}

.about-card-wrapper {
    position: relative;
    padding: 20px;
    z-index: 2;
}

/* Floating Stats Badge */
.floating-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: #bcbbbb;
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    gap: 12px;
    align-items: center;
    z-index: 30;
    border: 1px solid rgba(197, 160, 89, 0.4);
}

.badge-icon {
    width: 35px;
    height: 35px;
    background: var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}

.badge-num {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.badge-label {
    font-size: 9px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 3px;
}

/* Premium Slider Container */
.about-slider-premium {
    position: relative;
    height: 540px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
    background: #000;
    z-index: 5;
}

.asp-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.asp-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    transition: opacity 1.5s ease-in-out, visibility 1.5s;
    transform: scale(1.15);
}

.asp-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 20;
    transform: scale(1);
    animation: kenburns 8s ease-out forwards;
}

@keyframes kenburns {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.12);
    }
}

.asp-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.asp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
}

/* Nav & Progress */
.asp-nav-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    z-index: 100;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    pointer-events: none;
    /* Allow clicks to pass through container */
}

.asp-numbers {
    display: flex;
    gap: 20px;
    pointer-events: auto;
    /* Re-enable for the numbers */
}

.asp-n {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    padding-bottom: 8px;
    pointer-events: auto !important;
}

.asp-n::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.asp-n.active {
    color: #fff;
    font-size: 18px;
}

.asp-n.active::after {
    width: 100%;
}

.asp-progress {
    width: 150px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.asp-bar {
    height: 100%;
    width: 0%;
    background: var(--gold);
    transition: width 0.1s linear;
}

.about-glow {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

/* Content Side */
.about-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.red-line {
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.about-h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 38px;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.accent-red {
    color: var(--gold);
}

.about-text-wrap {
    margin-bottom: 30px;
}

.lead-p {
    font-size: 16px;
    font-weight: 600;
    color: #334155;
    line-height: 1.5;
    margin-bottom: 15px;
}

.desc-p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.mission-highlight {
    background: #bcbbbb;
    border-left: 5px solid var(--gold);
    padding: 30px 35px;
    border-radius: 4px 16px 16px 4px;
    color: #fff;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    line-height: 1.6;
    position: relative;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    margin: 30px 0;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.mission-highlight i {
    position: absolute;
    top: -18px;
    left: 20px;
    font-size: 40px;
    color: var(--gold);
    opacity: 0.5;
    font-style: normal;
}

/* Founder Section */
.founder-signature-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 25px;
    border-top: 1px solid #f1f5f9;
}

.founder-label {
    font-size: 9px;
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 3px;
}

.founder-names {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 900;
    color: var(--dark);
    margin: 0;
}

/* Responsive Adjustments for About Section */
@media (max-width: 1024px) {
    .about-grid {
        gap: 40px;
    }

    .about-h1 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-visual-side {
        order: 1;
    }
    .about-content-side {
        order: 2;
    }

    .about-card-wrapper {
        padding: 10px;
    }
    .about-slider-premium {
        height: 450px;
        border-radius: 20px;
    }
    .asp-item {
        transform: scale(1) !important;
        animation: none !important;
    }
    .asp-item.active {
        transform: scale(1) !important;
        animation: none !important;
    }
    .asp-nav-wrap {
        padding: 20px;
    }

    .floating-badge {
        right: 20px;
        bottom: -20px;
    }

    .about-h1 {
        font-size: 30px;
        margin-bottom: 15px;
    }
    .lead-p {
        font-size: 15px;
    }
    .mission-highlight {
        padding: 20px 25px;
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .about-premium {
        padding: 80px 0;
    }

    .about-slider-premium {
        height: 400px;
    }
    .about-card-wrapper {
        padding: 5px;
    }
}

/* ENQUIRY MODAL */
.enquiry-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.enquiry-modal.show {
    display: flex;
    opacity: 1;
}

.enquiry-modal-content {
    background: #fff;
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    position: relative;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s;
}

.enquiry-modal.show .enquiry-modal-content {
    transform: translateY(0);
}

.enquiry-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    background: none;
    border: none;
}

.enquiry-modal-close:hover {
    color: var(--gold);
}

.enquiry-modal h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--dark);
}

.enquiry-modal p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.enquiry-modal .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 500px) {
    .enquiry-modal .form-row {
        grid-template-columns: 1fr;
    }
}

/* RICH TEXT CONTENT STYLING */
.user-html-content p {
    margin-bottom: 1.2rem;
}

.user-html-content ul,
.user-html-content ol {
    margin-bottom: 1.2rem;
    padding-left: 20px;
}

.user-html-content li {
    margin-bottom: 0.5rem;
}

.user-html-content strong {
    font-weight: 700;
    color: var(--dark);
}

.user-html-content h1,
.user-html-content h2,
.user-html-content h3,
.user-html-content h4 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
    line-height: 1.2;
}

.user-html-content br {
    content: '';
    display: block;
    margin-bottom: 0.5rem;
}

/* GLOBAL TRAINING PROGRAMS SECTION (RESPONSIVE) */
.pilot-countries {
    background: radial-gradient(circle at 50% 50%, #002d5b 0%, #001f3f 100%);
    border-top: 4px solid var(--gold);
    padding: 100px 0;
}

.pilot-countries .sec-title {
    color: #fff;
    font-size: 26px;
}

.training-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
    align-items: start;
}

.training-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.training-box h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 12px;
}

.training-box .icon-wrap {
    width: 40px;
    height: 40px;
    background: rgba(197, 160, 89, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.training-box .icon-wrap i {
    color: var(--gold);
}

.training-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 16px;
}

.cpt-list {
    grid-template-columns: 1fr 1fr;
}

.training-box li {
    display: flex;
    align-items: center;
    gap: 15px;
}

.training-box li.bordered {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.training-box li img {
    width: 36px;
    height: 24px;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.training-box li span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .training-split-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pilot-countries {
        padding: 60px 0;
    }

    .pilot-countries .sec-title {
        font-size: 20px;
        white-space: normal !important;
        line-height: 1.4;
    }

    .training-box {
        padding: 25px;
    }

    .cpt-list {
        grid-template-columns: 1fr;
    }
}