/* ==========================================================
   PROGRAMME DETAILS PAGE
========================================================== */

:root{

    --primary:#0f172a;
    --secondary:#1e293b;
    --accent:#d4af37;

    --white:#ffffff;
    --light:#f8fafc;

    --text:#1f2937;
    --text-light:#6b7280;

    --border:#e5e7eb;

    --shadow:
        0 15px 40px rgba(15,23,42,.08);

    --shadow-hover:
        0 25px 60px rgba(15,23,42,.15);

    --radius:18px;

}

/* ==========================================================
   GLOBAL
========================================================== */

body{

    font-family:"Inter",sans-serif;

    background:#fff;

    color:var(--text);

}

section{

    padding:90px 7%;

}

h1,h2,h3,h4{

    color:var(--primary);

}

p{

    line-height:1.8;

    color:var(--text-light);

}

/* ==========================================================
   BREADCRUMB
========================================================== */

.breadcrumb{

    display:flex;

    align-items:center;

    gap:12px;

    padding:25px 7%;

    font-size:.9rem;

    background:#f8fafc;

}

.breadcrumb a{

    color:#6b7280;

    text-decoration:none;

}

.breadcrumb a:hover{

    color:var(--accent);

}

.breadcrumb span:last-child{

    color:var(--primary);

    font-weight:600;

}

/* ==========================================================
   HERO
========================================================== */

.programme-hero{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:70px;

    align-items:center;

    background:

        linear-gradient(

            135deg,

            #0f172a,

            #1e293b

        );

    position:relative;

    overflow:hidden;

}

.programme-hero::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    border-radius:50%;

    background:

        radial-gradient(

            rgba(212,175,55,.18),

            transparent 70%

        );

    top:-300px;

    right:-200px;

}

.hero-left{

    position:relative;

    z-index:2;

}

.programme-badge{

    display:inline-block;

    background:rgba(212,175,55,.15);

    color:#f5d66c;

    padding:8px 18px;

    border-radius:40px;

    font-size:.8rem;

    font-weight:700;

    margin-bottom:20px;

}

.programme-type{

    color:#CBD5E1;

    text-transform:uppercase;

    letter-spacing:.08em;

    font-size:.8rem;

    margin-bottom:15px;

}

.programme-hero h1{

    color:#fff;

    font-size:clamp(2.8rem,5vw,4.6rem);

    line-height:1.15;

    margin-bottom:25px;

}

.programme-description{

    color:#d1d5db;

    font-size:1.08rem;

    max-width:720px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    margin-top:40px;

    flex-wrap:wrap;

}

.btn-primary{

    display:inline-block;

    padding:15px 28px;

    border-radius:12px;

    background:var(--accent);

    color:#111827;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.btn-primary:hover{

    transform:translateY(-3px);

}

.btn-secondary{

    display:inline-block;

    padding:15px 28px;

    border-radius:12px;

    border:1px solid rgba(255,255,255,.3);

    color:#fff;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.btn-secondary:hover{

    background:#fff;

    color:#111827;

}

/* ==========================================================
   HERO CARD
========================================================== */

.hero-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    box-shadow:var(--shadow);

    position:relative;

    z-index:3;

}

.hero-card h3{

    margin-bottom:25px;

}

.info-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:14px 0;

    border-bottom:1px solid var(--border);

}

.info-row:last-child{

    border-bottom:none;

}

.info-row span{

    color:#6b7280;

}

.info-row strong{

    color:#0f172a;

    text-align:right;

}

/* ==========================================================
   QUICK INFORMATION
========================================================== */

.quick-info{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:24px;

    background:#ffffff;

    margin-top:-50px;

    position:relative;

    z-index:5;

}

.quick-info div{

    background:#ffffff;

    border:1px solid var(--border);

    border-radius:18px;

    padding:28px 24px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.3s;

}

.quick-info div:hover{

    transform:translateY(-6px);

    border-color:var(--accent);

    box-shadow:var(--shadow-hover);

}

.quick-info h4{

    font-size:1rem;

    margin-bottom:12px;

    color:var(--primary);

}

.quick-info p{

    margin:0;

    font-weight:600;

    color:var(--accent);

}

/* ==========================================================
   CONTENT SECTIONS
========================================================== */

.programme-section{

    max-width:1200px;

    margin:auto;

    padding:90px 7%;

}

.programme-section h2{

    font-size:2rem;

    margin-bottom:25px;

    position:relative;

    display:inline-block;

}

.programme-section h2::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:70px;

    height:4px;

    background:var(--accent);

    border-radius:20px;

}

.programme-section p{

    font-size:1.02rem;

    max-width:900px;

}

/* ==========================================================
   ENTRY REQUIREMENTS
========================================================== */

.programme-section ul{

    margin-top:30px;

    padding-left:0;

    list-style:none;

    max-width:850px;

}

.programme-section li{

    position:relative;

    padding-left:40px;

    margin-bottom:20px;

    line-height:1.8;

    color:var(--text);

}

.programme-section li::before{

    content:"✔";

    position:absolute;

    left:0;

    top:0;

    width:26px;

    height:26px;

    border-radius:50%;

    background:#FFF5D6;

    color:#8B6508;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:.8rem;

    font-weight:bold;

}

/* ==========================================================
   SECTION SPACING
========================================================== */

.programme-section:nth-child(even){

    background:#fafafa;

    border-radius:30px;

}

/* ==========================================================
   NICE READING WIDTH
========================================================== */

.programme-section p,

.programme-section li{

    max-width:900px;

}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:900px){

.quick-info{

    grid-template-columns:repeat(2,1fr);

    margin-top:0;

}

}

@media(max-width:650px){

.quick-info{

    grid-template-columns:1fr;

}

.programme-section{

    padding:70px 24px;

}

.programme-section h2{

    font-size:1.7rem;

}

}


/* ==========================================================
   LEARNING OUTCOMES
========================================================== */

.outcomes-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:20px;

    margin-top:45px;

}

.outcomes-grid div{

    background:#ffffff;

    border:1px solid var(--border);

    border-radius:16px;

    padding:24px;

    transition:.3s ease;

    display:flex;

    align-items:center;

    gap:14px;

    font-weight:600;

    color:var(--primary);

    box-shadow:0 8px 20px rgba(15,23,42,.05);

}

.outcomes-grid div::before{

    content:"✓";

    width:36px;

    height:36px;

    min-width:36px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--accent),
        #f5d66c
    );

    color:#111827;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:bold;

}

.outcomes-grid div:hover{

    transform:translateY(-6px);

    border-color:var(--accent);

    box-shadow:var(--shadow-hover);

}

/* ==========================================================
   CAREER OPPORTUNITIES
========================================================== */

.career-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:24px;

    margin-top:45px;

}

.career-grid div{

    background:#ffffff;

    border:1px solid var(--border);

    border-radius:18px;

    padding:35px 20px;

    text-align:center;

    transition:.3s;

    font-weight:700;

    color:var(--primary);

    box-shadow:0 8px 20px rgba(15,23,42,.05);

}

.career-grid div:hover{

    transform:translateY(-8px);

    border-color:var(--accent);

    box-shadow:var(--shadow-hover);

}

.career-grid div::before{

    content:"💼";

    display:block;

    font-size:2rem;

    margin-bottom:18px;

}

/* ==========================================================
   FAQ
========================================================== */

.faq{

    margin-top:40px;

}

.faq details{

    background:#ffffff;

    border:1px solid var(--border);

    border-radius:14px;

    margin-bottom:16px;

    overflow:hidden;

    transition:.3s;

}

.faq details:hover{

    border-color:var(--accent);

}

.faq summary{

    cursor:pointer;

    list-style:none;

    padding:22px 26px;

    font-weight:700;

    color:var(--primary);

    position:relative;

}

.faq summary::-webkit-details-marker{

    display:none;

}

.faq summary::after{

    content:"+";

    position:absolute;

    right:24px;

    font-size:1.4rem;

    transition:.3s;

}

.faq details[open] summary::after{

    transform:rotate(45deg);

}

.faq details p{

    padding:0 26px 24px;

    margin:0;

}

/* ==========================================================
   CTA
========================================================== */

.programme-cta{

    background:

        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    text-align:center;

    border-radius:30px;

    margin:100px 7%;

    padding:90px 40px;

    position:relative;

    overflow:hidden;

}

.programme-cta::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:

        radial-gradient(

            rgba(212,175,55,.18),

            transparent 70%

        );

    top:-250px;

    right:-150px;

}

.programme-cta h2{

    color:#ffffff;

    margin-bottom:20px;

    position:relative;

    z-index:2;

}

.programme-cta p{

    color:#CBD5E1;

    max-width:700px;

    margin:auto auto 40px;

    position:relative;

    z-index:2;

}

.programme-cta .btn-primary{

    position:relative;

    z-index:2;

}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:900px){

.outcomes-grid{

    grid-template-columns:1fr;

}

.career-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:650px){

.career-grid{

    grid-template-columns:1fr;

}

.programme-cta{

    margin:70px 20px;

    padding:70px 24px;

}

}