@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --bg-dark: #020a17;
    --bg-dark-header: #010611;
    --bg-card: #081226;
    --bg-card-hover: #0e1e3b;
    --bg-input: #101c36;
    --gold-primary: #e8a838;
    --gold-hover: #f5b94d;
    --gold-dark: #b87b1c;
    --gold-light: #fbe6c2;
    --text-white: #ffffff;
    --text-muted: #8b9eb7;
    --text-light: #cbd5e1;
    --green-primary: #123524;
    --green-light: #2e6f40;
    --red-live: #ff3b30;
    --font-headers: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-light: #e2e8f0;
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.5);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headers);
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #112240;
    border-radius: 5px;
    border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* Header & Navigation */
header {
    width: 100%;
    position: relative;
    z-index: 1000;
}

.top-bar {
    background-color: var(--bg-dark-header);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-light);
}

.top-contacts {
    display: flex;
    gap: 20px;
}

.top-contacts a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-contacts a i {
    color: var(--gold-primary);
}

.top-socials {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-socials .follow-us {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.top-socials-links {
    display: flex;
    gap: 12px;
}

.top-socials-links a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.top-socials-links a:hover {
    background-color: var(--gold-primary);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

/* Main Navbar */
.navbar {
    background-color: var(--bg-dark);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.4rem;
    font-weight: 800;
}

.logo-text {
    font-family: var(--font-headers);
    line-height: 1.1;
}

.logo-title {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--text-white);
}

.logo-subtitle {
    font-size: 0.6rem;
    letter-spacing: 1.5px;
    color: var(--gold-primary);
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-item a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    position: relative;
    padding: 5px 0;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold-primary);
    transition: var(--transition-smooth);
}

.nav-item a:hover,
.nav-item.active a {
    color: var(--gold-primary);
}

.nav-item a:hover::after,
.nav-item.active a::after {
    width: 100%;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-btn {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.search-btn:hover {
    color: var(--gold-primary);
    transform: scale(1.1);
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--bg-dark);
    font-family: var(--font-headers);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 20px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(232, 168, 56, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--gold-hover), var(--gold-primary));
    box-shadow: 0 6px 20px rgba(232, 168, 56, 0.4);
    transform: translateY(-1px);
    color: var(--bg-dark);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Global Content Sections */
.section-padding {
    padding: 80px 5%;
}

.text-gold {
    color: var(--gold-primary);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--bg-dark);
    font-family: var(--font-headers);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 6px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(232, 168, 56, 0.25);
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-hover), var(--gold-primary));
    box-shadow: 0 6px 22px rgba(232, 168, 56, 0.4);
    transform: translateY(-2px);
    color: var(--bg-dark);
}

.btn-primary i {
    transition: var(--transition-smooth);
}

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

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-family: var(--font-headers);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 26px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--text-white);
    transform: translateY(-2px);
}

/* Footer Section */
footer {
    background-color: var(--bg-dark-header);
    border-top: 1px solid var(--border-color);
    padding: 80px 5% 20px 5%;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo-container {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 20px;
    max-width: 280px;
}

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

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-socials a:hover {
    background-color: var(--gold-primary);
    color: var(--bg-dark);
    transform: translateY(-3px);
    border-color: var(--gold-primary);
}

.footer-links-col h4 {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--gold-primary);
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col ul a {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.footer-links-col ul a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.footer-contact-list li i {
    color: var(--gold-primary);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-cta {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.footer-cta h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-white);
}

.footer-cta p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.footer-cta .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.85rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

.footer-legal-links a:hover {
    color: var(--gold-primary);
}

/* Partners Bar */
.partners-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color-light);
    margin-top: 40px;
}

.partner-logo-svg {
    max-width: 145px;
    height: 40px;
    transition: var(--transition-smooth);
}

.partner-logo-svg:hover {
    transform: scale(1.05);
}

.ecosystem-partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 22px;
    max-width: 1120px;
    margin: 40px auto 0;
    padding: 28px;
}

.partner-logo-card {
    flex: 0 1 152px;
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 14px;
    border-radius: 8px;
    background-color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partner-logo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.partner-logo-img {
    display: block;
    width: 100%;
    max-width: 132px;
    max-height: 60px;
    object-fit: contain;
}

.partner-logo-img--wide {
    max-width: 148px;
    max-height: 54px;
}

.partner-logo-img--tall {
    max-width: 118px;
    max-height: 68px;
}

.partner-logo-img--square {
    max-width: 62px;
    max-height: 62px;
}

/* Reference-aligned homepage */
.mre-home {
    background: #020916;
    color: #fff;
}

.mre-home header {
    background: #020916;
    border-bottom: 2px solid rgba(232, 168, 56, 0.55);
}

.mre-home .top-bar {
    display: flex;
    padding: 7px 16px;
    background: #020916;
}

.mre-home .navbar {
    min-height: 74px;
    padding: 7px 16px;
    background: #020916;
    border-bottom: 0;
    gap: 13px;
}

.mre-home .logo-container {
    width: 118px;
    min-width: 118px;
    height: 62px;
    background: url('../assets/reference/brand-logo.png') left center / contain no-repeat;
}

.mre-home .logo-container > * {
    display: none;
}

.mre-home .nav-menu {
    flex: 1;
    justify-content: center;
    gap: 24px;
}

.mre-home .nav-item a {
    color: #fff;
    font-family: var(--font-headers);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.mre-home .nav-item.active a {
    color: #fff;
}

.mre-home .nav-item.active a::after {
    width: 100%;
}

.mre-home .nav-live {
    display: inline-flex;
    align-items: center;
    margin-left: 3px;
    padding: 1px 3px;
    border-radius: 2px;
    background: var(--red-live);
    color: #fff;
    font-size: 0.42rem;
    letter-spacing: 0.4px;
}

.mre-home .navbar-actions {
    gap: 7px;
}

.mre-home .nav-socials {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.mre-home .nav-socials span,
.mre-home .nav-contact {
    font-size: 0.56rem;
    font-weight: 700;
    line-height: 1.1;
}

.mre-home .nav-socials a {
    width: 17px;
    height: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: #020916;
    font-size: 0.58rem;
}

.mre-home .nav-cta {
    min-height: 40px;
    border-radius: 4px;
    padding: 0 8px;
    font-size: 0.5rem;
    box-shadow: none;
}

.mre-home .search-btn {
    border: 1px solid rgba(232, 168, 56, 0.85);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 0.82rem;
}

.mre-home .hero {
    min-height: 322px;
    padding: 20px 32px 12px;
    background:
        linear-gradient(90deg, rgba(2, 9, 22, 0.99) 0%, rgba(2, 9, 22, 0.98) 48%, rgba(2, 9, 22, 0.72) 65%, rgba(2, 9, 22, 0.08) 100%),
        url('../assets/reference/hero-broadcast-studio.png') right top / auto 100% no-repeat;
}

.mre-home .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.62fr);
    align-items: center;
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.mre-home .hero-left {
    max-width: 650px;
}

.mre-home .hero-left h1 {
    max-width: 580px;
    font-size: clamp(2rem, 4.1vw, 3.25rem);
    line-height: 1.02;
    margin-bottom: 10px;
}

.mre-home .hero-left p {
    max-width: 455px;
    color: #fff;
    font-size: 0.76rem;
    line-height: 1.45;
    margin-bottom: 12px;
}

.mre-home .hero-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.mre-home .hero-live-panel {
    max-width: 278px;
    padding: 18px;
    gap: 9px;
    border: 1px solid rgba(232, 168, 56, 0.24);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(2, 10, 23, 0.66), rgba(2, 10, 23, 0.28));
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(2px);
}

.mre-home .hero-live-panel h2 {
    max-width: 100%;
    margin: 2px 0 0;
    font-size: clamp(1.15rem, 2vw, 1.6rem);
    line-height: 1.06;
    color: #fff;
}

.mre-home .hero-live-panel p {
    max-width: 100%;
    color: #fff;
    font-size: clamp(0.92rem, 1.3vw, 1.08rem);
    line-height: 1.35;
    margin: 0 0 8px;
}

.mre-home .hero-live-kicker {
    font-size: clamp(0.66rem, 1vw, 0.78rem);
}

.mre-home .hero-watch-live {
    padding: 10px 16px;
    font-size: clamp(0.74rem, 1vw, 0.86rem);
}

.mre-home .hero-btns {
    gap: 12px;
    margin-bottom: 18px;
}

.mre-home .btn-primary,
.mre-home .btn-outline,
.mre-home .subscribe-btn {
    border-radius: 4px;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.mre-home .hero-btns .btn-primary,
.mre-home .hero-btns .btn-outline {
    gap: 8px;
    padding: 9px 13px;
    font-size: 0.66rem;
}

.mre-home .btn-outline {
    border-width: 1px;
}

.mre-home .feature-item {
    border-right: 1px solid rgba(255,255,255,0.12);
    padding-right: 12px;
}

.mre-home .feature-item:last-child {
    border-right: 0;
}

.mre-home .feature-icon {
    width: 28px;
    height: 28px;
    background: transparent;
    border: 0;
    font-size: 1.35rem;
}

.mre-home .feature-text h4 {
    font-size: 0.54rem;
}

.mre-home .feature-text p {
    font-size: 0.5rem;
    color: #fff;
}

.mre-home .section-padding {
    padding: 16px 24px;
}

.mre-home .split-grid {
    max-width: 1280px;
    margin: 0 auto;
    grid-template-columns: 1.07fr 0.93fr;
    gap: 10px;
}

.mre-home .pillars-section,
.mre-home .events-container,
.mre-home .news-grid > div,
.mre-home .about-card {
    background: linear-gradient(135deg, rgba(6, 20, 43, 0.98), rgba(3, 15, 35, 0.98));
    border: 1px solid rgba(232, 168, 56, 0.42);
    border-radius: 8px;
}

.mre-home .pillars-section {
    padding: 12px 12px 0;
}

.mre-home .pillars-section h3,
.mre-home .events-header h3,
.mre-home .news-col-title h4,
.mre-home .about-card h3 {
    text-transform: uppercase;
}

.mre-home .pillars-list {
    grid-template-columns: repeat(5, 1fr);
    gap: 7px;
    margin: 10px 0 8px;
}

.mre-home .pillar-icon {
    font-size: 1.92rem;
    margin-bottom: 6px;
}

.mre-home .pillar-card h4 {
    font-size: 0.68rem;
    line-height: 1.15;
}

.mre-home .pillar-card p {
    color: #fff;
    font-size: 0.51rem;
}

.mre-home .pillars-banner {
    height: 58px;
    margin: 0 -12px;
    border: 0;
    border-radius: 0 0 8px 8px;
    background: linear-gradient(to top, rgba(2, 10, 23, 0.8), rgba(2, 10, 23, 0.05)), url('../assets/reference/pillars-banner.png') center / cover no-repeat;
}

.mre-home .pillars-banner p {
    display: none;
}

.mre-home .events-container {
    padding: 10px;
}

.mre-home .events-header {
    margin-bottom: 6px;
}

.mre-home .events-header h3 {
    font-size: 1rem;
}

.mre-home .event-rows {
    gap: 3px;
}

.mre-home .event-row {
    padding: 0 0 3px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.13);
    border-radius: 0;
    gap: 8px;
}

.mre-home .event-date-badge {
    width: 36px;
    height: 38px;
    border: 0;
    background: transparent;
}

.mre-home .event-date-badge span.day {
    font-size: 1.22rem;
}

.mre-home .event-date-badge span.month {
    font-size: 0.52rem;
}

.mre-home .event-thumb {
    width: 44px;
    height: 31px;
    flex: 0 0 44px;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
}

.mre-home .event-row-info h4 {
    font-size: 0.56rem;
    line-height: 1.25;
}

.mre-home .event-row .btn-primary {
    padding: 6px 8px;
    font-size: 0.48rem;
}

.mre-home #programmes {
    max-width: 1280px;
    margin: 10px auto;
    background: #fff;
    color: #081226;
    border: 0 !important;
    border-radius: 8px;
    padding: 16px 16px 14px;
}

.mre-home #programmes .section-heading-kicker {
    display: none;
}

.mre-home #programmes h2 {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin: 0;
    color: #081226;
    font-size: 1.05rem !important;
    text-transform: uppercase;
}

.mre-home #programmes h2::before,
.mre-home #programmes h2::after {
    content: '';
    width: 42px;
    height: 1px;
    background: var(--gold-primary);
}

.mre-home #programmes > div:first-child {
    margin-bottom: 12px !important;
}

.mre-home .program-cards-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 14px;
}

.mre-home .program-card {
    background: #fff;
    color: #081226;
    border-color: #dce4ef;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.mre-home .program-card-img {
    aspect-ratio: 1.92 / 1;
    background-size: cover;
    background-position: center;
}

.mre-home .program-card-body {
    padding: 12px;
}

.mre-home .program-card-body h4 {
    height: 44px;
    color: #061124;
    font-size: 0.75rem;
}

.mre-home .program-card-body p {
    height: 78px;
    color: #061124;
    font-size: 0.62rem;
}

.mre-home .program-card-body .btn-outline {
    width: auto;
    align-self: flex-start;
    color: #061124;
    border-color: var(--gold-primary);
    padding: 7px 12px;
}

.mre-home .insights-section,
.mre-home .about-section,
.mre-home #partners,
.mre-home #contact {
    max-width: 1280px;
    margin: 0 auto;
}

.mre-home .news-grid {
    grid-template-columns: 1fr 1.05fr 0.95fr;
    gap: 10px;
}

.mre-home .news-grid > div {
    padding: 14px;
}

.mre-home .news-col-title {
    margin-bottom: 12px;
}

.mre-home .news-list {
    gap: 12px;
}

.mre-home .news-item {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.mre-home .news-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.mre-home .news-thumb {
    width: 62px;
    height: 54px;
    flex: 0 0 62px;
}

.mre-home .news-info h5 {
    font-size: 0.72rem;
}

.mre-home .quick-access-item a {
    padding: 6px 0;
    background: transparent;
    border: 0;
}

.mre-home .about-cards-grid {
    grid-template-columns: minmax(0, 1.03fr) minmax(0, 1.1fr) minmax(0, 0.83fr);
    gap: 12px;
}

.mre-home .about-card {
    min-height: 296px;
    padding: 26px 24px;
    background: linear-gradient(135deg, rgba(6, 20, 43, 0.98), rgba(3, 15, 35, 0.98));
    border-color: rgba(232, 168, 56, 0.58);
    border-radius: 8px;
    box-shadow: inset 0 0 36px rgba(2, 10, 23, 0.52);
}

.mre-home .about-card p {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.88);
}

.mre-home .about-card h3 {
    font-size: 1.04rem;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: 0.15px;
}

.mre-home .about-card .btn-primary {
    align-self: flex-start;
    padding: 11px 15px;
    border-radius: 4px;
    font-size: 0.68rem;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 6px 16px rgba(232, 168, 56, 0.2);
}

.mre-home .about-card--movement {
    background:
        url('../assets/reference/movement-sky-card.png') center / cover no-repeat,
        linear-gradient(135deg, #06142b, #031025);
}

.mre-home .about-card--movement::before {
    background: linear-gradient(90deg, rgba(2, 10, 23, 0.94) 0%, rgba(2, 10, 23, 0.84) 58%, rgba(2, 10, 23, 0.22) 100%);
}

.mre-home .about-card--movement .about-card-copy {
    max-width: 92%;
}

.mre-home .about-card--pbtc,
.mre-home .about-card--impact {
    padding-right: 118px;
}

.mre-home .about-card--pbtc {
    background:
        url('../assets/reference/pbtc-training-card.png') center / cover no-repeat,
        linear-gradient(135deg, #06142b, #031025);
}

.mre-home .about-card--pbtc::before {
    background:
        linear-gradient(90deg, rgba(2, 10, 23, 0.95) 0%, rgba(2, 10, 23, 0.86) 56%, rgba(2, 10, 23, 0.18) 100%),
        linear-gradient(0deg, rgba(2, 10, 23, 0.3), rgba(2, 10, 23, 0.05));
}

.mre-home .about-card--pbtc .about-card-copy {
    max-width: 318px;
}

.mre-home .about-card-intro {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    max-width: 318px;
    margin-bottom: 18px;
}

.mre-home .about-card-logo {
    width: 78px;
    height: 78px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(232, 168, 56, 0.4));
}

.mre-home .about-card-badge {
    margin: 0;
    max-width: none;
}

.mre-home .about-card-accreditation {
    margin-top: 2px;
}

.mre-home .about-card--impact {
    background:
        url('../assets/reference/impact-story-card.png') center / cover no-repeat,
        linear-gradient(135deg, #06142b, #031025);
}

.mre-home .about-card--impact::before {
    background:
        linear-gradient(90deg, rgba(2, 10, 23, 0.96) 0%, rgba(2, 10, 23, 0.88) 56%, rgba(2, 10, 23, 0.08) 100%),
        linear-gradient(0deg, rgba(2, 10, 23, 0.2), rgba(2, 10, 23, 0.02));
}

.mre-home .about-card--impact .quote-block {
    max-width: 214px;
    color: #fff;
    font-style: normal;
    font-size: 0.86rem;
}

.mre-home .quote-author h5 {
    color: var(--gold-primary);
}

.mre-home .quote-author p {
    color: #fff;
}

.mre-home .courses-section {
    display: none;
}

.mre-home #partners {
    padding-top: 14px;
    padding-bottom: 14px;
    background: #fff !important;
    border-top: 0 !important;
    border-radius: 8px;
    margin-top: 10px;
    margin-bottom: 14px;
}

.mre-home #partners > div:first-child {
    margin-bottom: 10px !important;
}

.mre-home #partners h2 {
    color: #081226;
    font-size: 1rem !important;
    text-transform: uppercase;
}

.mre-home #partners p {
    display: none;
}

.mre-home .ecosystem-partners {
    max-width: 1240px;
    margin-top: 0;
    padding: 14px 0;
    gap: 0;
    justify-content: flex-start;
    border-color: #dce4ef;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    flex-wrap: nowrap;
    position: relative;
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.mre-home .partners-slider-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: ecosystem-partners-slide 34s linear infinite;
}

.mre-home .partners-slider:hover .partners-slider-track {
    animation-play-state: paused;
}

.mre-home .partners-slider .partner-logo-card.reveal {
    opacity: 1;
    transform: none;
    transition: none;
}

.mre-home .partner-logo-card {
    flex: 0 0 176px;
    min-height: 42px;
    padding: 0 26px;
    background: transparent;
    border-radius: 0;
    border-right: 1px solid #e6ebf2;
}

.mre-home .partner-logo-card:nth-child(10n) {
    border-right: 0;
}

.mre-home .partner-logo-card:hover {
    transform: none;
    box-shadow: none;
}

.mre-home .partner-logo-img {
    max-height: 42px;
    max-width: 130px;
}

@keyframes ecosystem-partners-slide {
    from {
        transform: translateX(0);
    }

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

@media (prefers-reduced-motion: reduce) {
    .mre-home .partners-slider-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .mre-home .partners-slider {
        mask-image: none;
        -webkit-mask-image: none;
    }

    .mre-home .partners-slider .partner-logo-card[aria-hidden="true"] {
        display: none;
    }
}

.mre-home .subscribe-bar {
    max-width: 1280px;
    margin: 0 auto 18px;
    grid-template-columns: 1fr 1.45fr auto;
    padding: 18px;
    border-radius: 6px;
}

.mre-home .subscribe-text h3 {
    font-size: 1rem;
}

.mre-home .subscribe-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-headers);
    font-weight: 800;
    font-size: 0.78rem;
    text-transform: uppercase;
}

.mre-home .subscribe-socials a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #020916;
    border-radius: 50%;
}

.mre-home footer {
    padding: 18px 32px 10px;
}

.mre-home .footer-brand {
    grid-column: auto;
}

.mre-home .footer-top {
    max-width: 1280px;
    margin: 0 auto 18px;
    grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.82fr) minmax(0, 0.95fr) minmax(0, 0.82fr) minmax(0, 1.05fr) minmax(0, 1.28fr);
    gap: 14px;
}

.mre-home .footer-top > * {
    min-width: 0;
}

.mre-home .footer-contact-list li {
    overflow-wrap: anywhere;
}

.mre-home .footer-cta {
    display: block;
}

.mre-home .footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
}

/* Homepage final polish */
.mre-home header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.mre-home .top-bar {
    min-height: 34px;
    padding: 6px clamp(18px, 3vw, 40px);
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.78rem;
}

.mre-home .top-contacts,
.mre-home .top-socials {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 22px);
    flex-wrap: wrap;
}

.mre-home .top-contacts span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    line-height: 1.25;
}

.mre-home .top-socials-links {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.mre-home .top-socials-links a {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(232, 168, 56, 0.36);
    border-radius: 50%;
    color: #fff;
    font-size: 0.72rem;
    transition: var(--transition-smooth);
}

.mre-home .top-socials-links a:hover {
    background: var(--gold-primary);
    color: #020916;
}

.mre-home .navbar {
    min-height: 78px;
    padding: 9px clamp(18px, 3vw, 40px);
    gap: clamp(14px, 2.5vw, 34px);
}

.mre-home .logo-container {
    width: 150px;
    min-width: 150px;
    height: 58px;
}

.mre-home .nav-menu {
    justify-content: flex-end;
    gap: clamp(16px, 2.4vw, 34px);
}

.mre-home .nav-item a {
    position: relative;
    padding: 13px 0;
    font-size: 0.8rem;
    letter-spacing: 0.065em;
}

.mre-home .navbar-actions {
    gap: 10px;
}

.mre-home .nav-cta {
    min-height: 42px;
    padding: 0 13px;
    font-size: 0.58rem;
}

.mre-home .search-btn {
    width: 36px;
    height: 36px;
}

.mre-home .hero {
    min-height: clamp(430px, 48vw, 560px);
    padding: clamp(34px, 5vw, 64px) clamp(20px, 4vw, 50px) 24px;
    background:
        linear-gradient(90deg, rgba(2, 9, 22, 0.99) 0%, rgba(2, 9, 22, 0.95) 44%, rgba(2, 9, 22, 0.66) 68%, rgba(2, 9, 22, 0.16) 100%),
        url('../assets/reference/hero-broadcast-studio.png') right center / auto 100% no-repeat;
}

.mre-home .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: clamp(24px, 4vw, 56px);
}

.mre-home .hero-left {
    max-width: 720px;
}

.mre-home .hero-left h1 {
    max-width: 700px;
    margin-bottom: 16px;
    font-size: clamp(2.35rem, 5vw, 4.45rem);
    line-height: 1.01;
    letter-spacing: -0.018em;
}

.mre-home .hero-left p {
    max-width: 600px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.94rem, 1.2vw, 1.1rem);
    line-height: 1.62;
}

.mre-home .hero-btns {
    gap: 14px;
    margin-bottom: 28px;
}

.mre-home .hero-btns .btn-primary,
.mre-home .hero-btns .btn-outline {
    min-height: 42px;
    padding: 11px 17px;
    font-size: 0.72rem;
}

.mre-home .hero-live-panel {
    width: min(100%, 330px);
    max-width: 330px;
    padding: 22px;
    border-color: rgba(232, 168, 56, 0.42);
    background: linear-gradient(145deg, rgba(2, 10, 23, 0.78), rgba(2, 10, 23, 0.42));
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.32);
}

.mre-home .hero-live-panel h2 {
    font-size: clamp(1.3rem, 2vw, 1.85rem);
}

.mre-home .hero-live-panel p {
    font-size: clamp(0.9rem, 1vw, 1rem);
}

.mre-home .features-bar {
    max-width: 840px;
    margin-top: 28px;
    padding-top: 18px;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.mre-home .feature-item {
    align-items: center;
    gap: 10px;
}

.mre-home .feature-icon {
    width: 34px;
    height: 34px;
    font-size: 1.45rem;
}

.mre-home .feature-text h4 {
    margin-bottom: 3px;
    font-size: 0.66rem;
    letter-spacing: 0.04em;
}

.mre-home .feature-text p {
    font-size: 0.58rem;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.78);
}

.mre-home .section-padding {
    padding: 26px clamp(18px, 3vw, 40px);
}

.mre-home .split-grid {
    gap: 16px;
}

.mre-home .pillars-section,
.mre-home .events-container,
.mre-home .news-grid > div,
.mre-home .about-card,
.mre-home #programmes,
.mre-home #partners,
.mre-home .subscribe-bar {
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.mre-home .pillars-section {
    padding: 16px 16px 0;
}

.mre-home .pillars-section h3,
.mre-home .events-header h3,
.mre-home .news-col-title h4,
.mre-home .about-card h3,
.mre-home #programmes h2,
.mre-home #partners h2 {
    letter-spacing: 0.035em;
}

.mre-home .pillars-list {
    gap: 11px;
    margin: 14px 0 12px;
}

.mre-home .pillar-card h4 {
    font-size: 0.74rem;
}

.mre-home .pillar-card p {
    font-size: 0.58rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.8);
}

.mre-home .pillars-banner {
    height: 76px;
    margin: 2px -16px 0;
}

.mre-home .events-container {
    padding: 16px;
}

.mre-home .events-header {
    margin-bottom: 10px;
}

.mre-home .event-rows {
    gap: 7px;
}

.mre-home .event-row {
    padding-bottom: 7px;
    gap: 10px;
}

.mre-home .event-date-badge {
    width: 42px;
    height: 42px;
}

.mre-home .event-thumb {
    width: 58px;
    height: 42px;
    flex-basis: 58px;
}

.mre-home .event-row-info h4 {
    font-size: 0.66rem;
    line-height: 1.3;
}

.mre-home .event-row .btn-primary {
    padding: 7px 10px;
    font-size: 0.55rem;
}

.mre-home #programmes {
    margin-top: 14px;
    margin-bottom: 14px;
    padding: 22px;
}

.mre-home .program-cards-grid {
    gap: 16px;
}

.mre-home .program-card {
    border-radius: 8px;
    overflow: hidden;
}

.mre-home .program-card-body {
    padding: 14px;
}

.mre-home .program-card-body h4 {
    height: auto;
    min-height: 44px;
    font-size: 0.82rem;
    line-height: 1.22;
}

.mre-home .program-card-body p {
    height: auto;
    min-height: 78px;
    font-size: 0.66rem;
    line-height: 1.45;
}

.mre-home .news-grid {
    gap: 16px;
}

.mre-home .news-grid > div {
    padding: 18px;
}

.mre-home .news-info h5 {
    font-size: 0.78rem;
    line-height: 1.32;
}

.mre-home .news-info p,
.mre-home .quick-access-item a {
    font-size: 0.68rem;
    line-height: 1.45;
}

.mre-home .about-cards-grid {
    gap: 16px;
}

.mre-home .about-card {
    min-height: 320px;
    padding: 28px 26px;
}

.mre-home .about-card p {
    font-size: 0.78rem;
    line-height: 1.55;
}

.mre-home .about-card .btn-primary {
    margin-top: 6px;
}

.mre-home .about-card--pbtc,
.mre-home .about-card--impact {
    padding-right: 128px;
}

.mre-home .ecosystem-partners {
    border-radius: 8px;
}

.mre-home .subscribe-bar {
    margin-bottom: 22px;
}

@media (max-width: 760px) {
    .mre-home .nav-socials,
    .mre-home .nav-contact {
        display: none;
    }

    .mre-home .nav-menu {
        gap: 12px;
    }

    .mre-home .split-grid,
    .mre-home .news-grid,
    .mre-home .about-cards-grid {
        grid-template-columns: 1fr;
    }

    .mre-home .program-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mre-home .about-card {
        min-height: 320px;
    }

    .mre-home .about-card--movement .about-card-copy,
    .mre-home .about-card--pbtc .about-card-copy {
        max-width: 440px;
    }

    .mre-home .about-card--impact .about-card-copy {
        max-width: 310px;
    }

    .mre-home .hero-grid {
        grid-template-columns: 1fr;
    }

    .mre-home .hero-right {
        justify-content: flex-start;
    }

    .mre-home .hero-live-panel {
        max-width: 300px;
        padding: 14px;
    }
}

@media (max-width: 1040px) {
    .mre-home .top-bar {
        justify-content: center;
    }

    .mre-home .top-socials {
        display: none;
    }

    .mre-home .nav-menu {
        gap: 18px;
    }

    .mre-home .nav-item a {
        font-size: 0.74rem;
    }

    .mre-home .hero {
        min-height: auto;
        background:
            linear-gradient(90deg, rgba(2, 9, 22, 0.99) 0%, rgba(2, 9, 22, 0.9) 58%, rgba(2, 9, 22, 0.36) 100%),
            url('../assets/reference/hero-broadcast-studio.png') center / cover no-repeat;
    }

    .mre-home .program-cards-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .mre-home .about-cards-grid,
    .mre-home .news-grid {
        grid-template-columns: 1fr;
    }

    .mre-home .about-card {
        min-height: 300px;
    }
}

@media (max-width: 640px) {
    .mre-home .top-bar {
        display: none;
    }

    .mre-home .navbar {
        min-height: 70px;
        padding: 9px 16px;
    }

    .mre-home .logo-container {
        width: 132px;
        min-width: 132px;
        height: 52px;
    }

    .mre-home .hero {
        min-height: auto;
        padding: 34px 20px 22px;
        background:
            linear-gradient(180deg, rgba(2, 9, 22, 0.98), rgba(2, 9, 22, 0.93)),
            url('../assets/reference/hero-broadcast-studio.png') center / cover no-repeat;
    }

    .mre-home .hero-grid {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 16px;
    }

    .mre-home .hero-left {
        max-width: 100%;
        margin-left: 0;
    }

    .mre-home .hero-left h1 {
        max-width: 100%;
        font-size: clamp(2rem, 12vw, 2.8rem);
        line-height: 1.08;
        overflow-wrap: break-word;
    }

    .mre-home .hero-left p {
        max-width: 100%;
        font-size: 0.94rem;
    }

    .mre-home .hero-right {
        justify-content: flex-start;
    }

    .mre-home .hero-live-panel {
        max-width: 100%;
        width: 100%;
        padding: 18px;
    }

    .mre-home .hero-live-panel h2 {
        font-size: 1.3rem;
    }

    .mre-home .hero-btns .btn-primary,
    .mre-home .hero-btns .btn-outline {
        flex: 1 1 100%;
        justify-content: center;
    }

    .mre-home .features-bar,
    .mre-home .pillars-list,
    .mre-home .program-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mre-home .subscribe-bar,
    .mre-home .footer-top {
        grid-template-columns: 1fr;
    }

    .mre-home .about-card {
        min-height: 340px;
        padding: 24px 22px;
    }

    .mre-home .about-card h3 {
        font-size: 0.98rem;
    }

    .mre-home .about-card--pbtc,
    .mre-home .about-card--impact {
        padding-right: 22px;
    }

    .mre-home .about-card-badge {
        max-width: none;
    }

    .mre-home .about-card-intro {
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 12px;
    }

    .mre-home .about-card-logo {
        width: 64px;
        height: 64px;
    }

    .mre-home .about-card .btn-primary {
        white-space: normal;
    }

    .mre-home .ecosystem-partners {
        display: flex;
        gap: 0;
        padding: 14px 0;
    }

    .mre-home .partner-logo-card {
        flex-basis: 150px;
        min-height: 58px;
        padding: 0 18px;
    }

    .mre-home .partner-logo-card:nth-child(2n) {
        border-right: 1px solid #e6ebf2;
    }

    .mre-home .partner-logo-card:nth-child(10n) {
        border-right: 0;
    }

    .mre-home .partner-logo-img {
        max-height: 48px;
        max-width: 118px;
    }
}

/* Event Pages Layout structure */
.event-hero {
    position: relative;
    padding: 100px 5% 60px 5%;
    overflow: hidden;
}

.event-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

/* Dynamic filter to make text readable */
.event-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(2, 10, 23, 0.95) 40%, rgba(2, 10, 23, 0.6) 100%);
    z-index: -1;
}

.back-to-events {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.back-to-events:hover {
    color: var(--text-white);
}

.back-to-events i {
    font-size: 0.75rem;
}

.event-hero-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: flex-start;
}

.event-hero-info {
    flex: 1.2;
}

.event-tag {
    background-color: rgba(232, 168, 56, 0.15);
    color: var(--gold-primary);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border: 1px solid rgba(232, 168, 56, 0.3);
}

.event-hero-info h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.event-hero-info p.lead {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 600px;
}

.event-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
}

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

.meta-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.2rem;
}

.meta-content h5 {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-content p {
    font-size: 0.88rem;
    font-weight: 600;
}

/* Event Pages Grid */
.event-layout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    padding: 60px 5%;
}

.event-main-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.event-section {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 35px;
    border-radius: 12px;
}

.event-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-section h3 span.num {
    background-color: var(--gold-primary);
    color: var(--bg-dark);
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
}

/* Register Widget */
.register-sidebar {
    position: sticky;
    top: 30px;
}

.register-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.register-card-header {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--bg-dark);
    padding: 25px;
    text-align: center;
}

.register-card-header h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.register-card-header p {
    font-size: 0.85rem;
    opacity: 0.9;
}

.register-card-tabs {
    display: flex;
    background-color: var(--bg-dark-header);
    border-bottom: 1px solid var(--border-color);
}

.tab-btn {
    flex: 1;
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 14px 10px;
    font-size: 0.8rem;
    font-family: var(--font-headers);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-bottom: 2px solid transparent;
}

.tab-btn:hover {
    color: var(--text-white);
}

.tab-btn.active {
    color: var(--gold-primary);
    border-bottom-color: var(--gold-primary);
    background-color: rgba(255, 255, 255, 0.01);
}

.register-card-body {
    padding: 25px;
    background-color: var(--bg-card);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 6px;
    font-weight: 500;
}

.form-group label span.required {
    color: var(--red-live);
    margin-left: 2px;
}

.form-control {
    width: 100%;
    background-color: var(--bg-input);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    padding: 11px 15px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(232, 168, 56, 0.15);
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.4;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}

.form-checkbox a {
    color: var(--gold-primary);
    text-decoration: underline;
}

.register-card-body .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.9rem;
}

.register-secure-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 15px;
    text-align: center;
}

/* Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 10, 23, 0.85);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.success-modal-content {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-premium);
    position: relative;
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.success-modal.show {
    display: flex;
}

.success-modal.show .success-modal-content {
    transform: scale(1);
}

.success-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(46, 111, 64, 0.15);
    color: #2e7d32;
    border: 1px solid rgba(46, 111, 64, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 20px auto;
}

.success-modal-content h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--text-white);
}

.success-modal-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.ticket-box {
    background-color: var(--bg-dark-header);
    border: 1px dashed rgba(232, 168, 56, 0.3);
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    margin-bottom: 30px;
}

.ticket-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.ticket-row:last-child {
    margin-bottom: 0;
}

.ticket-row span.val {
    color: var(--text-white);
    font-weight: 600;
}

.ticket-row span.ticket-id {
    color: var(--gold-primary);
    font-weight: 700;
    font-family: monospace;
    font-size: 0.95rem;
}

/* ================================================================
   RESPONSIVE BREAKPOINTS — COMPREHENSIVE MULTI-DEVICE SYSTEM
   ================================================================ */

/* ---- Large Desktop Adjustments (≤1280px) ---- */
@media (max-width: 1280px) {
    .section-padding { padding: 60px 4%; }
    .hero { padding: 80px 4% 50px; }
    .courses-section { padding: 60px 4%; }
}

/* ---- Tablets Landscape / Small Desktops (≤1100px) ---- */
@media (max-width: 1100px) {
    .section-padding { padding: 50px 4%; }
    .hero { padding: 70px 4% 45px; }
    .hero-left h1 { font-size: 2.8rem; }
    .footer-top { grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 30px; }
    .program-cards-grid { grid-template-columns: repeat(3, 1fr); }
    .courses-grid { grid-template-columns: repeat(2, 1fr); }
    .about-cards-grid { grid-template-columns: 1fr 1fr; }
    .event-hero-container { gap: 30px; }
    .event-layout-grid { grid-template-columns: 1fr 280px; gap: 24px; }
}

/* ---- iPad / Tablets (≤900px) ---- */
@media (max-width: 900px) {
    .section-padding { padding: 40px 4%; }
    .hero { padding: 60px 4% 40px; }
    .hero-grid { grid-template-columns: 1fr; gap: 30px; }
    .hero-left h1 { font-size: 2.4rem; }
    .hero-left p { font-size: 0.95rem; }
    .hero-right { max-width: 480px; margin: 0 auto; }

    /* Features bar */
    .features-bar { grid-template-columns: repeat(2, 1fr); gap: 12px; }

    /* Split grid */
    .split-grid { grid-template-columns: 1fr; gap: 30px; }

    /* Program cards */
    .program-cards-grid { grid-template-columns: repeat(2, 1fr); }

    /* About cards */
    .about-cards-grid { grid-template-columns: 1fr; }
    .about-card { padding: 30px; min-height: auto; }

    /* PBTC courses */
    .courses-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .courses-section { padding: 40px 4%; }

    /* News grid */
    .news-grid { grid-template-columns: 1fr 1fr; gap: 22px; }

    /* Footer */
    .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
    .footer-brand { grid-column: span 2; }

    /* Event pages */
    .event-hero-container { flex-direction: column; gap: 25px; }
    .event-layout-grid { grid-template-columns: 1fr; }
    .register-sidebar { position: static; margin-top: 25px; }
    .event-hero-info h1 { font-size: 2rem; }

    /* Partners */
    .partners-bar { gap: 20px 30px; }
}

/* ---- Tablets Portrait / Large Phones (≤768px) ---- */
@media (max-width: 768px) {
    /* Top bar */
    .top-bar { flex-direction: column; gap: 6px; text-align: center; padding: 8px 4%; }
    .top-contacts { flex-direction: column; gap: 4px; align-items: center; }

    /* Navbar — show hamburger */
    .navbar { padding: 12px 4%; position: relative; }
    .nav-cta { display: none; }
    .search-btn { display: none; }
    .menu-toggle { display: flex; }

    /* Slide-in nav panel */
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 75%; max-width: 280px;
        height: 100vh;
        background-color: var(--bg-dark-header);
        flex-direction: column;
        padding: 80px 30px 40px;
        gap: 8px;
        box-shadow: -10px 0 40px rgba(0,0,0,0.6);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    .nav-menu.active { right: 0; }
    .nav-menu.active + .nav-overlay { display: block; }
    .nav-item a { font-size: 1rem; padding: 10px 0; display: block; border-bottom: 1px solid var(--border-color); }

    /* Overlay behind nav */
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.55);
        z-index: 999;
    }

    .menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* Hero */
    .hero { padding: 50px 4% 35px; }
    .hero-left h1 { font-size: 2rem; }
    .hero-left p { font-size: 0.9rem; }
    .hero-btns { flex-direction: column; gap: 10px; }
    .hero-btns a { text-align: center; justify-content: center; }

    /* Features bar */
    .features-bar { grid-template-columns: 1fr 1fr; padding: 18px 4%; }

    /* Pillars */
    .pillars-list { grid-template-columns: 1fr 1fr; gap: 14px; }
    .pillar-card { padding: 18px; }

    /* Events */
    .event-row { flex-direction: column; align-items: flex-start; gap: 10px; }
    .event-row a { align-self: flex-end; }

    /* Programmes */
    .program-cards-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

    /* News */
    .news-grid { grid-template-columns: 1fr; gap: 20px; }

    /* About cards */
    .about-card { padding: 25px; }

    /* Subscribe bar */
    .subscribe-bar { flex-direction: column; text-align: center; gap: 18px; padding: 30px 4%; }
    .subscribe-form-container { flex-direction: column; gap: 10px; }
    .subscribe-input { width: 100%; }
    .subscribe-btn { width: 100%; justify-content: center; }

    /* PBTC courses */
    .courses-grid { grid-template-columns: 1fr; }

    /* Footer */
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: span 2; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

    /* Event pages hero */
    .event-hero-info h1 { font-size: 1.8rem; }
    .event-hero-meta { flex-wrap: wrap; gap: 12px; }
    .event-hero-meta-item { min-width: 140px; }

    /* Speaker/exhibitor grids */
    .speakers-grid { grid-template-columns: repeat(2, 1fr); }
    .exhibit-grid { grid-template-columns: 1fr; }

    /* Partners */
    .partners-bar { gap: 16px 22px; justify-content: center; }
    .ecosystem-partners { padding: 22px; }
}

/* ---- Large Smartphones (≤600px) ---- */
@media (max-width: 600px) {
    /* Top bar */
    .top-bar { font-size: 0.75rem; padding: 6px 4%; }
    .top-socials .follow-us { display: none; }

    /* Navbar */
    .logo-title { font-size: 0.85rem; }
    .logo-mark { width: 34px; height: 34px; font-size: 1.1rem; }

    /* Hero */
    .hero { padding: 40px 4% 30px; }
    .hero-left h1 { font-size: 1.7rem; line-height: 1.2; }
    .hero-left p { font-size: 0.85rem; }

    /* Features */
    .features-bar { grid-template-columns: 1fr; gap: 8px; padding: 14px 4%; }
    .feature-item { justify-content: flex-start; gap: 12px; }

    /* Pillars */
    .pillars-list { grid-template-columns: 1fr; }

    /* Programme cards */
    .program-cards-grid { grid-template-columns: 1fr; }

    /* Events */
    .event-date-badge { min-width: 48px; }
    .event-row-info h4 { font-size: 0.85rem; }

    /* Quick access */
    .quick-access-list { gap: 8px; }
    .quick-access-item a { gap: 10px; }

    /* About cards */
    .about-card { padding: 20px; }
    .about-card h3 { font-size: 1.3rem; }

    /* Footer */
    .footer-top { grid-template-columns: 1fr; gap: 22px; }
    .footer-brand { grid-column: span 1; }
    .footer-links-col h4 { font-size: 0.9rem; }

    /* Typography */
    h2 { font-size: 1.6rem !important; }

    /* Event pages */
    .event-hero-info h1 { font-size: 1.5rem; }
    .event-hero-tag { font-size: 0.65rem; }
    .event-hero-meta { gap: 10px; }
    .tabs-nav { gap: 5px; }
    .tab-btn { font-size: 0.72rem; padding: 8px 10px; }

    /* Speakers */
    .speakers-grid { grid-template-columns: 1fr 1fr; }

    /* Partners */
    .partners-bar { gap: 14px 16px; }
    .ecosystem-partners { padding: 18px; }
    .partner-logo-card { flex-basis: calc(50% - 8px); min-height: 74px; padding: 10px; }
    .partner-logo-img { max-height: 48px; }
    .partner-logo-img--tall,
    .partner-logo-img--square { max-height: 56px; }

    /* Section padding */
    .section-padding { padding: 30px 4%; }
}

/* ---- Standard Smartphones (≤480px) ---- */
@media (max-width: 480px) {
    .navbar { padding: 10px 4%; }
    .logo-title { font-size: 0.75rem; }

    .hero-left h1 { font-size: 1.5rem; }

    /* 2-col back to 1 where needed */
    .speakers-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }

    /* Form elements */
    .form-control { font-size: 0.85rem; }
    .btn-primary, .btn-outline { font-size: 0.82rem; padding: 10px 18px; }

    /* News items */
    .news-item { flex-direction: column; }
    .news-thumb { width: 100%; height: 120px; border-radius: 6px 6px 0 0; }

    /* Quick access */
    .quick-access-icon { width: 32px; height: 32px; font-size: 0.85rem; }

    /* Subscribe */
    .subscribe-text { flex-direction: column; text-align: center; gap: 8px; }
    .subscribe-text h3 { font-size: 1rem; }
}

/* ---- Small Phones (≤400px) ---- */
@media (max-width: 400px) {
    .top-bar { display: none; }
    .hero-left h1 { font-size: 1.35rem; }
    .hero-left p { font-size: 0.8rem; }
    .section-padding { padding: 24px 3%; }
    .navbar { padding: 10px 3%; }
    .courses-section { padding: 24px 3%; }
    .logo-title { font-size: 0.68rem; }
    h2 { font-size: 1.35rem !important; }
    .footer-top { padding: 30px 3%; }
    .pillar-card h4 { font-size: 0.82rem; }
    .program-card-body h4 { font-size: 0.88rem; }
    .event-hero-info h1 { font-size: 1.3rem; }
}

/* ---- Print & Accessibility ---- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
