/* ==========================================
   PASSY AIRPORT ACADEMY - FORMATION PAGE CSS
   Imports and extends style.css
========================================== */
@import url('style.css');

/* PAGE HERO */
.page-hero {
    position: relative;
    padding: 160px 0 100px;
    /* Lightened background for better logo contrast */
    background: linear-gradient(135deg, #0F193C 0%, #1A2B5F 100%);
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(232, 115, 74, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.page-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 115, 74, .15);
    border: 1px solid rgba(232, 115, 74, .3);
    color: var(--orange-l);
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.page-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.page-hero-title span {
    color: var(--orange);
}

.page-hero-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 500px;
}

.page-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50px;
    padding: 7px 16px;
    font-size: .82rem;
    color: rgba(255, 255, 255, .85);
}

.pill svg {
    color: var(--orange);
    flex-shrink: 0;
}

.page-hero-img-wrap {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .4);
    aspect-ratio: 4/3;
}

.page-hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232, 115, 74, .15) 0%, transparent 60%);
}

.hero-badge-float {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    border-radius: var(--r-md);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--sh-lg);
    z-index: 2;
}

.hero-badge-float .hbf-icon {
    width: 40px;
    height: 40px;
    background: rgba(232, 115, 74, .12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
}

.hero-badge-float strong {
    display: block;
    font-size: .88rem;
    font-weight: 700;
    color: var(--dark);
}

.hero-badge-float span {
    font-size: .75rem;
    color: var(--grey);
}

/* BREADCRUMB */
.breadcrumb {
    background: var(--off);
    border-bottom: 1px solid var(--grey-l);
    padding: 14px 0;
    margin-top: 136px;
}

@media (max-width: 1024px) {
    .breadcrumb {
        margin-top: 100px;
    }
}

@media (max-width: 768px) {
    .breadcrumb {
        margin-top: 115px;
    }
}

@media (max-width: 480px) {
    .breadcrumb {
        margin-top: 105px;
    }
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    font-size: .82rem;
}

.breadcrumb-list li a {
    color: var(--grey);
    text-decoration: none;
    transition: color .2s;
}

.breadcrumb-list li a:hover {
    color: var(--orange);
}

.breadcrumb-list li.active {
    color: var(--dark);
    font-weight: 500;
}

.breadcrumb-sep {
    color: var(--grey-l);
    font-size: .7rem;
}

/* OVERVIEW SECTION */
.overview {
    padding: 96px 0;
    background: var(--white);
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    align-items: start;
}

.overview h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 18px;
}

.overview p {
    font-size: .96rem;
    color: #4A5068;
    line-height: 1.85;
    margin-bottom: 16px;
}

/* OBJECTIVES */
.objectives {
    margin-top: 32px;
}

.objectives h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: .78rem;
}

.obj-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.obj-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .93rem;
    color: var(--dark);
    line-height: 1.55;
}

.obj-list svg {
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 3px;
}

/* SIDEBAR */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: sticky;
    top: 96px;
}

.info-card {
    background: var(--off);
    border: 1px solid var(--grey-l);
    border-radius: var(--r-lg);
    padding: 26px;
}

.info-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--grey);
    margin-bottom: 16px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--grey-l);
}

.info-row:last-child {
    border-bottom: none;
}

.info-icon {
    width: 36px;
    height: 36px;
    background: rgba(232, 115, 74, .1);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    flex-shrink: 0;
}

.info-row strong {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    color: var(--dark);
}

.info-row span {
    font-size: .78rem;
    color: var(--grey);
}

.cta-card {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-d) 100%);
    border-radius: var(--r-lg);
    padding: 28px;
    text-align: center;
    color: var(--white);
    box-shadow: var(--sh-o);
}

.cta-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.cta-card p {
    font-size: .86rem;
    opacity: .85;
    margin-bottom: 20px;
    line-height: 1.65;
}

.btn-white {
    display: block;
    background: var(--white);
    color: var(--orange);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: .92rem;
    padding: 12px 0;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--tr);
}

.btn-white:hover {
    background: var(--off);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

/* PROGRAMME / MODULES */
.programme {
    padding: 96px 0;
    background: var(--off);
}

.modules-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 860px;
}

.module-item {
    background: var(--white);
    border: 1px solid var(--grey-l);
    border-radius: var(--r-md);
    padding: 26px 28px;
    display: flex;
    gap: 22px;
    align-items: flex-start;
    transition: var(--tr);
    box-shadow: var(--sh-sm);
}

.module-item:hover {
    border-color: var(--orange);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.module-num {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--orange);
    opacity: .25;
    line-height: 1;
    flex-shrink: 0;
    width: 40px;
}

.module-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.module-body p {
    font-size: .87rem;
    color: var(--grey);
    line-height: 1.7;
}

.module-tag {
    display: inline-block;
    font-size: .7rem;
    font-weight: 600;
    background: rgba(232, 115, 74, .1);
    color: var(--orange);
    border-radius: 50px;
    padding: 3px 10px;
    margin-top: 8px;
    letter-spacing: .04em;
}

/* PUBLIC / PRÉREQUIS */
.public-section {
    padding: 96px 0;
    background: var(--white);
}

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

.public-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    transition: all 0.4s ease;
}

.public-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    border-color: rgba(232, 115, 74, 0.1);
}

.public-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(232, 115, 74, .1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    margin-bottom: 18px;
}

.public-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.public-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.public-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: .9rem;
    color: #4A5068;
    line-height: 1.55;
}

.public-card svg {
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 3px;
}

/* FINANCEMENT */
.page-financement {
    padding: 96px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--navy-d) 100%);
}

.page-financement .section-eyebrow {
    color: var(--orange);
}

.page-financement .section-title {
    color: var(--white);
}

.fin-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* OTHER FORMATIONS */
.other-formations {
    padding: 96px 0;
    background: var(--off);
}

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

.other-card {
    background: var(--white);
    border: 1px solid var(--grey-l);
    border-radius: var(--r-lg);
    overflow: hidden;
    text-decoration: none;
    transition: var(--tr);
    box-shadow: var(--sh-sm);
}

.other-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
    border-color: var(--orange);
}

.other-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.other-card-body {
    padding: 20px;
}

.other-card-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: .97rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.other-card-body p {
    font-size: .82rem;
    color: var(--grey);
    line-height: 1.6;
    margin-bottom: 14px;
}

.other-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .83rem;
    font-weight: 600;
    color: var(--orange);
    font-family: 'Outfit', sans-serif;
}

/* PAGE CTA BAND */
.page-cta-band {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.page-cta-band h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
}

.page-cta-band p {
    color: var(--grey);
    font-size: 1rem;
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

.page-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-navy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: .92rem;
    padding: 13px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--tr);
}

.btn-navy:hover {
    background: var(--navy-d);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 43, 95, .3);
}

/* METHODS & EVALUATION REDESIGN */
.methods-container {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    margin-bottom: 24px;
}

.methods-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.methods-header-icon {
    width: 48px;
    height: 48px;
    background: rgba(232, 115, 74, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
}

.methods-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
}

.methods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.method-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.method-item-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.method-item-icon {
    width: 32px;
    height: 32px;
    background: var(--off);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 14px;
}

.method-item-head h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.method-col p {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .methods-container {
        padding: 32px 24px;
    }
}

@media(max-width:900px) {
    .page-hero-grid {
        grid-template-columns: 1fr;
    }

    .page-hero-img-wrap {
        display: none;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

    .public-grid {
        grid-template-columns: 1fr;
    }

    .fin-cards {
        grid-template-columns: 1fr;
    }

    .other-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:600px) {
    .page-hero {
        padding: 130px 0 72px;
    }

    .other-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:480px) {
    .page-hero-title {
        font-size: 2.1rem;
    }

    .page-hero-desc {
        font-size: .93rem;
        margin-bottom: 28px;
    }

    .module-item {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
    }

    .module-num {
        width: auto;
        font-size: 1.3rem;
    }

    .public-card {
        padding: 24px;
    }

    .page-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-navy,
    .btn-primary {
        justify-content: center;
    }

    .pill {
        font-size: .75rem;
        padding: 6px 12px;
    }
}

/* EXTENSION HERO CTA */
.hero-enroll-cta {
    background: rgba(15, 25, 60, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    margin-top: 24px;
}

@media(min-width: 900px) {
    .hero-enroll-cta {
        margin-top: 0;
    }
}

.hero-enroll-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--orange);
}

.cta-badge {
    display: inline-block;
    background: rgba(232, 115, 74, 0.15);
    color: var(--orange);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
    border: 1px solid rgba(232, 115, 74, 0.25);
    text-transform: uppercase;
}

.hero-enroll-cta h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.hero-enroll-cta p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 28px;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
    text-align: left;
    background: rgba(0, 0, 0, 0.15);
    padding: 20px;
    border-radius: 12px;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 500;
}

.cta-feature-item svg {
    fill: none;
    stroke: var(--orange);
    stroke-width: 2.5;
    flex-shrink: 0;
}

.cta-note {
    font-size: 0.8rem !important;
    margin-bottom: 0 !important;
    margin-top: 16px;
    opacity: 0.6;
}