/*HERO*/

.programme-hero{
    min-height: 760px;

    padding-top: 100px;
    background:
        
        linear-gradient(
            90deg,
            rgba(11,55,103,1) 0%,
            rgba(11,55,103,1) 30%,
            rgba(11,55,103,.96) 40%,
            rgba(11,55,103,.82) 50%,
            rgba(11,55,103,.45) 60%,
            rgba(11,55,103,0) 72%
        ),


        linear-gradient(
            rgba(0,0,0,.18),
            rgba(0,0,0,.18)
        ),
        
        url("../images/material.jpg");
        background-repeat:no-repeat;
        background-size:cover;
        background-position: right center;
        background-attachment: fixed;

        display:flex;
        align-items:center;
}

.programme-hero .container{
    max-width: 1400px; 
    margin: 0 auto;
    padding: 1rem;

    display: flex;
    align-items: center;

    min-height: 720px;
}

.programme-hero-content {
    max-width: 780px;
}

.programme-hero-content .section-subtitle {
    display: block;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.programme-hero-content h1 {
    max-width: 580px;
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
}

.programme-hero-content .section-divider {
    margin-bottom: 1rem;
}

.programme-hero-content p{

    max-width:600px;

    color:rgba(255,255,255,.85);

    font-size:1.05rem;

    line-height:1.8;

}


/*INTRO*/

.programme-intro{

    padding:var(--section-padding) 0;

    background:var(--white);

}

.programme-intro-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:5rem;

}

.programme-intro-content{

    max-width:620px;

}


.programme-intro-content .section-subtitle{

    display:block;

    margin-bottom:.75rem;

}

.programme-intro-content .section-title{

    margin-bottom:1rem;

}


.programme-intro-content .section-divider{

    margin-bottom:1.75rem;

}

.programme-intro-content p{

    margin-bottom:1.25rem;

    color:var(--gray-dark);

    line-height:1.8;

}


.programme-intro-content p:last-of-type{

    margin-bottom:2rem;

}

/*IMAGE*/

.programme-intro-image{

    position:relative;

}

.programme-intro-image::before{

    content:"";

    position:absolute;

    top:-18px;
    right:-18px;

    width:80px;
    height:80px;

    border-top:3px solid var(--gold);
    border-right:3px solid var(--gold);

    z-index:0;

}

.programme-intro-image img{

    position:relative;

    z-index:1;

    width:100%;

    height:460px;

    object-fit:cover;

    border-radius:var(--radius-lg);

    box-shadow:var(--shadow-md);

}

/*ACE SECTION*/

.programme-features{

    padding:var(--section-padding) 0;

    background:var(--surface);

}

.programme-features .section-header{

    max-width:750px;

    margin:0 auto 3rem;

    text-align:center;

}


.programme-features .section-divider{

    margin-left:auto;
    margin-right:auto;

}

.programme-feature-grid{

    display:grid;

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

    gap:1.5rem;

}

.programme-feature-card{

    padding:2.5rem 2rem;

    background:var(--white);

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

    border-radius:var(--radius-md);

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:
        transform var(--transition),
        box-shadow var(--transition);

}

.programme-feature-card:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow-md);

}

.programme-feature-icon{

    width:64px;
    height:64px;

    margin:0 auto 1.5rem;

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

    border:2px solid var(--gold);

    border-radius:50%;

    color:var(--gold);

    font-size:1.6rem;

}

.programme-feature-card h3{

    margin-bottom:.75rem;

    color:var(--navy);

    font-size:1.45rem;

}

.programme-feature-card p{

    color:var(--gray-dark);

    font-size:.95rem;

    line-height:1.7;

}

/*EXPERIENCE*/

.programme-experience {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.programme-experience-wrapper {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 5rem;
}

.programme-experience-image {
    position: relative;
}

.programme-experience-image::before {
    content: "";

    position: absolute;

    top: -16px;
    left: -16px;

    width: 70px;
    height: 70px;

    border-top: 3px solid var(--gold);
    border-left: 3px solid var(--gold);

    z-index: 0;
}

.programme-experience-image img {
    position: relative;
    z-index: 1;

    width: 100%;
    height: 480px;

    object-fit: cover;

    border-radius: var(--radius-md);

    box-shadow: var(--shadow-md);
}

.programme-experience-content {
    max-width: 620px;
}

.programme-experience-content .section-subtitle {
    display: block;

    margin-bottom: .75rem;

    color: var(--gold);

    font-size: .9rem;
    font-weight: var(--fw-bold);

    letter-spacing: .08em;
    text-transform: uppercase;
}

.programme-experience-content .section-title {
    margin-bottom: 1.25rem;

    color: var(--navy);

    font-size: var(--fs-h2);

    line-height: 1.15;
}

.programme-experience-content .section-divider {
    margin-bottom: 1.75rem;
}

.programme-experience-content p {
    margin-bottom: 1.25rem;

    color: var(--gray-dark);

    font-size: .97rem;

    line-height: 1.8;
}

.programme-check-list {
    display: flex;
    flex-direction: column;

    gap: .9rem;

    margin-top: 1.75rem;
}

.programme-check {
    display: flex;
    align-items: center;

    gap: .85rem;

    color: var(--gray-dark);

    font-size: .95rem;
    line-height: 1.5;
}

.programme-check i {
    flex-shrink: 0;

    color: var(--navy);

    font-size: 1.15rem;
}

.programme-check span {
    color: var(--gray-dark);
}


/*CTA*/

.programme-cta {
    position: relative;

    padding: 5.5rem 0;

    background:var(--burgundy);

}

.programme-cta::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: var(--gold);
}

.programme-cta-content {
    max-width: 780px;

    margin: 0 auto;

    text-align: center;
}

.programme-cta-content .section-subtitle {
    display: block;

    margin-bottom: 1rem;

    color: var(--gold);
    font-weight: var(--fw-bold);

    letter-spacing: .08em;
    text-transform: uppercase;
}

.programme-cta-content h2 {
    margin-bottom: 1.25rem;

    color: var(--white);

    font-size: clamp(2.3rem, 4vw, 3.2rem);

    line-height: 1.15;
}

.programme-cta-content p {
    max-width: 620px;

    margin: 0 auto 2rem;

    color: rgba(255,255,255,.78);

    font-size: 1rem;

    line-height: 1.75;
}

.programme-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 1rem;

    flex-wrap: wrap;
}

.programme-cta-buttons .btn-nav {
    min-width: 150px;
}

.btn-secondary {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: .75rem;

    min-width: 150px;

    padding: .95rem 1.6rem;

    border: 1px solid rgba(255,255,255,.5);

    border-radius: 4px;

    color: var(--white);

    font-size: .85rem;
    font-weight: 700;

    text-transform: uppercase;

    transition:
        background var(--transition-slow),
        color var(--transition),
        border-color var(--transition);
}

.btn-secondary:hover {
    background: var(--white);

    border-color: var(--white);

    color: var(--navy);
}

.btn-secondary i {
    transition: transform var(--transition);
}

.btn-secondary:hover i {
    transform: translateX(4px);
}

.footer {
    background: var(--navy);
    color: rgba(255,255,255,.85);

    padding: 5.5rem 0 2rem;
    margin-top: 0;
}