/* ========================================= */
/* ROOT VARIABLES                            */
/* ========================================= */
:root {
    /* --- PALETTE --- */
    --brand-blue:   #1453BC;
    --brand-purple: #822966;
    --brand-red:    #D51024;
    --brand:        #D51024;
    --brand-light:  rgba(213, 16, 36, 0.08);
    --brand-mid:    rgba(213, 16, 36, 0.20);
    --brand-dark:   #A10F1B;
    --bg:           #ffffff;
    --radius-sm:    12px;
    --radius-md:    18px;
    --radius-pill:  999px;
    --trans-slow:   0.4s ease;
    --trans-base:   0.25s ease;
    --trans-fast:   0.15s ease;

    /* Gradients */
    --grad-main:   linear-gradient(90deg, var(--brand-blue) 0%, var(--brand-purple) 50%, var(--brand-red) 100%);
    --grad-purple: linear-gradient(135deg, #591b45 0%, #822966 100%);
    --grad-red:    linear-gradient(135deg, #940a18 0%, #D51024 100%);

    --primary-light: #ffffff;
    --text-dark: #1a1a1a;
    --text-gray: #555555;
    --text-light: #666666;
    --border-color: #e5e5e5;

    --nav-height: 110px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}

body {
    font-family: "Poppins", sans-serif;
    background-color: var(--primary-light);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

a { text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4, h5, h6 { font-weight: 600; margin-top: 0; }

p, li, .dc-desc, .overview-text-p, .hero-desc {
    margin-top: 0;
    color: var(--text-gray);
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

/* ========================================= */
/* HEADER / NAVBAR                           */
/* ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    padding: 0 4%;
    box-sizing: border-box;
    background: #ffffff;
    border-bottom: 4px solid transparent;
    border-image: var(--grad-main) 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    border-bottom-color: rgba(213, 16, 36, 0.35);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

/* NAV WRAPPER — 3-column grid: logo | center menu | right buttons */
.nav-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
}

/* ========================================= */
/* LOGO                                      */
/* ========================================= */
.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo a {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
}

.logo img {
    height: 95px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* ========================================= */
/* CENTER NAVIGATION                         */
/* ========================================= */
.nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.nav-center a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-center a:hover { color: var(--brand-blue); }

.nav-center a.active {
    color: var(--brand-blue);
    font-weight: 600;
    position: relative;
}

.nav-center a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--grad-main);
    border-radius: 2px;
}

.nav-links a.active {
    color: var(--brand-blue);
    font-weight: 600;
    border-left: 3px solid var(--brand-red);
    padding-left: 12px;
}

/* ========================================= */
/* RIGHT BUTTONS                             */
/* ========================================= */
.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.btn-uniform {
    height: 44px;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    white-space: nowrap;
    cursor: pointer;
}

.btn-stall {
    border: 2px solid var(--brand-purple);
    color: var(--brand-purple) !important;
    background-color: transparent;
}

.btn-stall:hover {
    background: var(--grad-purple);
    color: white !important;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(130, 41, 102, 0.25);
}

.cta-button {
    background-color: var(--brand-blue);
    color: var(--primary-light) !important;
    border: 1px solid var(--brand-blue);
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 8px;
}

.cta-button:hover {
    background: var(--grad-red);
    border-color: transparent;
    transform: scale(1.05);
}

.cta-icon-wrapper {
    background-color: var(--primary-light);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 10px;
}

.cta-button svg {
    height: 12px;
    width: 12px;
    fill: #000000;
    display: block;
    transition: fill 0.3s;
}

.cta-button:hover svg { fill: var(--brand-red); }

/* ========================================= */
/* MOBILE MENU TOGGLE                        */
/* ========================================= */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    height: 3px;
    width: 25px;
    background-color: var(--text-dark);
    margin: 4px 0;
    border-radius: 2px;
}

/* ========================================= */
/* FOOTER                                    */
/* ========================================= */
.egn-footer {
    background: #ffffff;
    border-top: 4px solid transparent;
    border-image: var(--grad-main) 1;
}

.egn-footer p,
.egn-footer li,
.egn-footer a {
    hyphens: none;
    text-align: left;
    word-break: normal;
}

.footer-top {
    padding: 60px 5% 40px;
    display: grid;
    grid-template-columns: 1.6fr 0.9fr 0.9fr 1.3fr;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    position: relative;
    margin-bottom: 22px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
}

.footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 42px;
    height: 3px;
    border-radius: 10px;
    background: var(--grad-main);
}

.footer-logo {
    display: block;
}

.footer-logo--primary img {
    height: 90px;
    width: auto;
    object-fit: contain;
    margin-bottom: 14px;
    transition: opacity 0.3s ease;
}

.footer-logo--primary:hover img { opacity: 0.85; }

.footer-logo--secondary {
    margin-top: 2px;
}

.footer-logo--secondary img {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
    opacity: 0.88;
    transition: opacity 0.3s ease;
}

.footer-logo--secondary:hover img { opacity: 1; }

.footer-desc {
    max-width: 320px;
    font-size: 0.92rem;
    line-height: 1.9;
    color: var(--text-light);
    text-align: left;
    hyphens: none;
    word-break: normal;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
    color: var(--text-light);
    font-size: 0.92rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--brand-blue);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 14px;
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--text-light);
}

.footer-cta {
    margin-top: 10px;
    width: fit-content;
    min-width: 170px;
    height: 46px;
    padding: 0 26px;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-main);
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(20,83,188,0.15);
}

.footer-bottom {
    padding: 18px 4%;
    border-top: 1px solid rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 0.88rem;
    color: var(--text-light);
}

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

.footer-bottom-links a {
    color: var(--text-light);
    font-size: 0.88rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover { color: var(--brand-blue); }

/* ======================================= */
/* HERO VIDEO SECTION                      */
/* ======================================= */
.hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 5%;
    padding-right: 5%;
    box-sizing: border-box;
    background-color: #000000;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.92) 0%, rgba(20, 83, 188, 0.25) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
}

.hero-title-static {
    font-size: clamp(2rem, 5vw, 4.2rem);
    line-height: 1.1;
    font-weight: 700;
    color: white;
    display: block;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-title-rotating {
    font-size: clamp(2rem, 5vw, 4.2rem);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
    display: block;
    white-space: normal;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.txt-rotate { color: var(--brand-red); position: relative; }
.txt-rotate::after { content:'|'; animation: blink 1s infinite; color: white; margin-left: 2px; }

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero-desc {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    line-height: 1.7;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
    text-align: justify;
}

/* ======================================= */
/* MUTE BUTTON                             */
/* ======================================= */
.audio-toggle-btn {
    position: absolute;
    bottom: 40px;
    left: 5%;
    z-index: 20;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    outline: none;
    transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.audio-toggle-btn svg {
    width: 24px;
    height: 24px;
    fill: white;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.5));
}

.audio-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
    border-color: white;
}

/* ======================================= */
/* HERO BADGE                              */
/* ======================================= */
.hero-date-badge {
    position: absolute;
    right: 5%;
    bottom: 40px;
    z-index: 10;
    background: #ffffff;
    box-shadow: 0 20px 45px rgba(0,0,0,0.4);
    padding: 15px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: fit-content;
    max-width: 320px;
    border-radius: 12px;
    animation: slideUp 1s ease-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-date-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--grad-main);
    border-radius: 12px 12px 0 0;
}

.hdb-top-row {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 8px;
    flex-wrap: nowrap;
}

.hdb-square {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
    margin-right: 8px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

.sq-purple { background: var(--grad-purple); }
.sq-red    { background: var(--grad-red); margin-right: 15px; }

.hdb-main-text {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    line-height: 1.2;
    white-space: normal;
}

.hdb-address {
    margin-top: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    line-height: 1.4;
    text-align: left;
}

@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ======================================= */
/* SCROLL REVEAL ANIMATIONS                */
/* ======================================= */
.reveal {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.fade-up    { transform: translateY(38px); }
.reveal.fade-left  { transform: translateX(-50px); }
.reveal.fade-right { transform: translateX(50px); }
.reveal.scale-in   { transform: scale(0.88); }
.reveal.visible    { opacity: 1; transform: none; }

.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.18s; }
.reveal.d3 { transition-delay: 0.28s; }
.reveal.d4 { transition-delay: 0.38s; }
.reveal.d5 { transition-delay: 0.48s; }
.reveal.d6 { transition-delay: 0.58s; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ======================================= */
/* GLOBAL SECTION STYLES                   */
/* ======================================= */
.section {
    padding: 80px 5%;
    box-sizing: border-box;
    border-top: 1px solid var(--border-color);
}

.section-header {
    text-align: center;
    max-width: 1300px;
    margin: 0 auto 3rem auto;
    width: 100%;
}

.section-header h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    color: var(--text-dark);
}

.section-header h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    margin: 15px auto 0;
    background: var(--grad-main);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: justify;
    text-align-last: center;
}

/* ======================================= */
/* OVERVIEW SECTION                        */
/* ======================================= */
.overview-main-wrapper { max-width: 1280px; margin: 0 auto; }

.overview-top-split {
    display: flex;
    align-items: center;
    gap: 5%;
    flex-wrap: wrap;
}

.overview-text-column { flex: 1; min-width: 300px; }
.overview-image-column { flex: 1; min-width: 300px; }

.overview-image-column img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    display: block;
    box-shadow: 0 20px 40px rgba(20, 83, 188, 0.15);
    margin-top: 20px;
}

.eyebrow-heading {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--brand-purple);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
    text-align: left;
}

.overview-text-column h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    text-align: left;
}

.overview-text-p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: justify;
}

/* ======================================= */
/* BY THE NUMBERS STRIP                    */
/* ======================================= */
.stats-strip {
    background: var(--grad-main);
    padding: 40px 5%;
    box-sizing: border-box;
    width: 100%;
}

.stats-strip-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.stats-strip-title {
    color: #ffffff;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 1px;
    flex: 1;
    min-width: 200px;
}

.stats-strip-items {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.stats-strip-item {
    text-align: center;
    color: #ffffff;
    position: relative;
    padding: 0 25px;
}

.stats-strip-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.3);
}

.stats-strip-number {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 5px;
}

.stats-strip-number .plus { color: #FFD700; }

.stats-strip-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}

/* ======================================= */
/* AWARDS SECTION                          */
/* ======================================= */
.awards-section {
    background: #ffffff;
    padding: 80px 5%;
    box-sizing: border-box;
}

.awards-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5%;
    flex-wrap: wrap;
}

.awards-text-column { flex: 1; min-width: 300px; }

.awards-video-column {
    flex: 1;
    min-width: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.awards-eyebrow {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--brand-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-align: left;
}

.awards-heading {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--brand-purple);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: left;
}

.awards-divider {
    width: 80px;
    height: 4px;
    background: var(--grad-main);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.awards-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 1rem;
    text-align: justify;
}

.awards-video-wrapper {
    aspect-ratio: 9 / 16;
    max-width: 340px;
    width: 100%;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: none;
    background: transparent;
}

.awards-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.awards-cta-wrapper { margin-top: 2rem; }

.awards-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    min-width: 180px;
    padding-left: 25px;
    padding-right: 8px;
    border-radius: 30px;
    background-color: var(--brand-blue);
    color: var(--primary-light) !important;
    border: 1px solid var(--brand-blue);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    box-sizing: border-box;
    white-space: nowrap;
    cursor: pointer;
}

.awards-cta-button:hover {
    background: var(--grad-red);
    border-color: transparent;
    transform: scale(1.05);
}

.awards-cta-button .cta-icon-wrapper {
    background-color: var(--primary-light);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 12px;
}

.awards-cta-button svg {
    height: 12px;
    width: 12px;
    fill: #000000;
    display: block;
    transition: fill 0.3s;
}

.awards-cta-button:hover svg { fill: var(--brand-red); }

/* ======================================= */
/* EVENTS CARDS                            */
/* ======================================= */
.awaits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    max-width: 1280px;
    margin: 0 auto;
}

.design-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    height: 100%;
}

.design-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.dc-image-container {
    width: 100%;
    padding-bottom: 60%;
    position: relative;
    overflow: hidden;
}

.dc-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.design-card:hover .dc-image-container img { transform: scale(1.1); }

.dc-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #ffffff;
    color: #333;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 5;
    text-transform: uppercase;
}

.dc-content {
    flex: 1;
    padding: 20px 25px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: background-color 0.3s ease;
}

.design-card:nth-child(1) .dc-content { background-color: #1452BB; }
.design-card:nth-child(2) .dc-content { background-color: #B11B40; }
.design-card:nth-child(3) .dc-content { background-color: #693279; }
.design-card:nth-child(4) .dc-content { background-color: #90245A; }
.design-card:nth-child(5) .dc-content { background-color: #3F429A; }
.design-card:nth-child(6) .dc-content { background-color: #D31126; }

.dc-catchy {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    color: #ffffff;
    text-align: left;
}

.dc-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-weight: 400;
    text-align: justify;
}

/* ======================================= */
/* PARALLEL EVENTS (FRINGE) SECTION        */
/* ======================================= */
.pe-grid-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    justify-items: center;
}

.pe-item {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.pe-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(20, 83, 188, 0.2);
}

.pe-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    min-height: 180px;
}

/* ======================================= */
/* VISITORS SECTION                        */
/* ======================================= */
.visitors-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.visitor-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-top: 5px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.visitor-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.visitor-card p { text-align: justify; }

.v-blue   { border-top-color: var(--brand-blue); }   .v-blue:hover h3   { color: var(--brand-blue); }
.v-purple { border-top-color: var(--brand-purple); } .v-purple:hover h3 { color: var(--brand-purple); }
.v-red    { border-top-color: var(--brand-red); }    .v-red:hover h3    { color: var(--brand-red); }

.v-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: background 0.3s ease;
}

.v-blue   .v-icon { background-color: rgba(20, 83, 188, 0.1); }  .v-blue   svg { fill: var(--brand-blue);   width: 32px; height: 32px; }
.v-purple .v-icon { background-color: rgba(130, 41, 102, 0.1); } .v-purple svg { fill: var(--brand-purple); width: 32px; height: 32px; }
.v-red    .v-icon { background-color: rgba(213, 16, 36, 0.1); }  .v-red    svg { fill: var(--brand-red);    width: 32px; height: 32px; }

.visitor-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    transition: color 0.3s;
    color: var(--text-dark);
}

/* ======================================= */
/* EXHIBITORS GRID                         */
/* ======================================= */
.exhibitors-container { max-width: 1200px; margin: 0 auto; padding-bottom: 20px; }

.exhibitors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.exhibitor-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    background: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    overflow: hidden;
    height: 80px;
    position: relative;
}

.exhibitor-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Bookstall page layout */
.section-heading {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.page-header-intro {
    max-width: 1100px;
    margin: 0 auto;
    padding: calc(var(--nav-height) + 40px) 1% 30px;
    text-align: center;
}

.page-header-intro h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.page-header-intro p {
    font-size: 1rem;
    color: #555;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.75;
    text-align: center;
    hyphens: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(360px, 2fr) minmax(420px, 3fr);
    gap: 40px;
    align-items: start;
    padding: 0 1% 60px;
    box-sizing: border-box;
}

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

.left-column,
.right-column {
    width: 100%;
    min-width: 0;
}

.right-column {
    min-width: 380px;
}

.form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--brand-red);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 18px;
}

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

.input-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d8d8d8;
    border-radius: 12px;
    background: #fafafa;
    color: var(--text-dark);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 4px rgba(32, 83, 214, 0.12);
}

.right-column {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.exhibitors-container {
    width: 100%;
    background: #ffffff;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.05);
}

.bookstall-exhibitors-container {
    width: 100%;
    background: #ffffff;
    padding: 24px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0,0,0,0.04);
}

.exhibitors-panel {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bookstall-exhibitors-container .exhibitors-grid {
    grid-template-columns: repeat(auto-fill, minmax(85px, 1fr));
    gap: 10px;
}

.bookstall-exhibitors-container .exhibitor-logo {
    height: 65px;
    padding: 10px;
}

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

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.input-group.full-width {
    grid-column: 1 / -1;
}

.submit-btn {
    width: 100%;
    padding: 16px 22px;
    border: none;
    border-radius: 999px;
    background: var(--brand-red);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(213, 16, 36, 0.28);
    background: var(--brand-dark);
}

.gdpr-text {
    margin-top: 24px;
    color: #555;
    line-height: 1.75;
    font-size: 0.95rem;
}

.privacy-title {
    margin-bottom: 12px;
    display: block;
    font-weight: 700;
    color: var(--text-dark);
}

.privacy-text {
    color: #666;
    line-height: 1.7;
}

.exhibitors-panel {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.exhibitors-header {
    text-align: left;
    padding: 0;
    margin: 0;
}

.exhibitors-header h2 {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    font-weight: 700;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.exhibitors-header p {
    max-width: 620px;
    font-size: 1rem;
    line-height: 1.75;
    color: #555;
}

.exhibitor-logo:hover {
    border-color: var(--brand-blue);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
    z-index: 2;
}

.exhibitor-logo:hover img { transform: scale(1.1); }

.exhibitors-more-wrapper {
    text-align: center;
    margin-top: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-gray);
}

.more-dots {
    font-size: 2rem;
    color: var(--brand-blue);
    display: inline-block;
    vertical-align: middle;
}

/* ======================================= */
/* GALLERY SECTION                         */
/* ======================================= */
.gallery-grid {
    display: grid;
    gap: 12px;
    max-width: 1280px;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    grid-auto-rows: 240px;
    grid-auto-flow: dense;
}

.gallery-item { overflow: hidden; border-radius: 12px; height: 100%; }

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.4s ease;
    object-fit: cover;
}

.gallery-item:hover img { transform: scale(1.08); }

@media (min-width: 601px) {
    .gallery-item--horizontal { grid-column: span 2; }
    .gallery-item--vertical   { grid-row: span 2; }
}

/* ======================================= */
/* CONTACT FORM                            */
/* ======================================= */
.contact-container {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-form,
.contact-details { flex: 1; min-width: 300px; }

.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: #f9f9f9;
    transition: border 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(20, 83, 188, 0.1);
    background: #fff;
}

.contact-form textarea { resize: vertical; min-height: 150px; }

.contact-form button {
    padding: 1.2rem 2rem;
    background-color: var(--brand-blue);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    align-self: flex-start;
}

.contact-form button:hover {
    background-color: var(--brand-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(213, 16, 36, 0.3);
}

.contact-details h3 { font-size: 1.8rem; margin-bottom: 1.5rem; color: var(--text-dark); }
.contact-details p { text-align: justify; }

/* ======================================= */
/* STICKY BOTTOM LEFT VIDEO POPUP          */
/* ======================================= */
.sticky-video-wrapper {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 996;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sticky-video-wrapper.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.sticky-video-close {
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 997;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--brand-red);
    color: #fff;
    border: 2px solid #fff;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: background 0.2s ease, transform 0.2s ease;
    padding: 0;
}

.sticky-video-close:hover {
    background: var(--brand-dark);
    transform: scale(1.15);
}

.sticky-video-popup {
    position: relative;
    width: 280px;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 3px solid #ffffff;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    background: #000;
}

.sticky-video-popup video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.sticky-video-popup:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: var(--brand-blue);
}

/* ======================================= */
/* CONTACT FORM — INLINE FEEDBACK MESSAGES */
/* ======================================= */
div#pop_enq_success {
    border: 1px solid #8bf6bf;
    background: #d5ffea;
    padding: 20px;
}

div#pop_enq_fail {
    border: 1px solid #f68bf4;
    background: #ffd5ed;
    padding: 20px;
}

/* ========================================= */
/* RESPONSIVE                                */
/* ========================================= */

/* MOBILE NAV LIST — hidden on desktop, shows as drawer on mobile */
.nav-links {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (max-width: 1200px) {
    .nav-center { gap: 18px; }
    .nav-center a { font-size: 0.88rem; }
    .btn-uniform { min-width: 130px; font-size: 0.82rem; }
    .footer-top { grid-template-columns: 1.4fr 0.9fr 0.9fr 1.2fr; gap: 30px; }
}

@media (max-width: 1150px) {
    .btn-uniform { height: 40px; min-width: 120px; font-size: 0.8rem; padding: 0 14px; }
    .nav-center { gap: 12px; }
    .nav-center a { font-size: 0.82rem; }
}

@media (max-width: 991px) {
    .navbar { padding: 0 20px; }
    .logo img { height: 75px; }

    /* Hide desktop center + right groups */
    .nav-center,
    .nav-right { display: none; }

    /* Show hamburger toggle */
    .menu-toggle { display: flex; }

    /* Nav wrapper collapses to 2 cols: logo | hamburger */
    .nav-wrapper { grid-template-columns: 1fr auto; }

    /* Mobile drawer (shown when JS toggles .active) */
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        background-color: #ffffff;
        width: 100%;
        height: auto;
        max-height: 80vh;
        overflow-y: auto;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        padding: 1.5rem 0;
        border-top: 1px solid rgba(0,0,0,0.05);
        z-index: 999;
    }

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

    .nav-links li { width: 100%; margin: 0; padding: 0; }

    .nav-links a.nav-text {
        font-size: 1.1rem;
        display: block;
        padding: 10px;
        text-align: center;
        color: var(--text-dark);
    }

    .nav-links .btn-stall,
    .nav-links .cta-button {
        width: 90%;
        margin: 10px auto;
        display: flex;
        height: 50px;
        justify-content: center;
    }

    .overview-top-split { flex-direction: column; text-align: left; }
    .overview-image-column { order: -1; width: 100%; margin-bottom: 30px; }

    .awards-wrapper { flex-direction: column; }
    .awards-video-column { order: -1; width: 100%; margin-bottom: 30px; }

    .stats-strip-container { flex-direction: column; text-align: center; }
    .stats-strip-title { text-align: center; }

    .pe-grid-container { grid-template-columns: repeat(3, 1fr); }

    .footer-top { grid-template-columns: 1fr 1fr; padding: 50px 24px 30px; gap: 28px; }
    .footer-bottom { padding: 16px 24px; flex-wrap: wrap; gap: 10px; }
    .footer-bottom-links { flex-wrap: wrap; gap: 14px; }
    .footer-desc { max-width: 100%; }
    .footer-logo--primary img { height: 78px; }
    .footer-logo--secondary img { height: 52px; }
}

@media (max-width: 600px) {
    .hero-section {
        align-items: flex-start;
        padding-top: 150px;
        height: 75vh;
        min-height: 600px;
    }

    .hero-content-wrapper { text-align: left; padding-bottom: 100px; }

    .hero-title-static,
    .hero-title-rotating { font-size: 2.2rem; }

    .hero-desc { font-size: 0.95rem; line-height: 1.5; }

    .hero-video {
        object-fit: contain;
        object-position: center;
        background-color: #000;
    }

    .hero-date-badge {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 10px;
        right: auto;
        width: 90%;
        margin: 0;
        padding: 12px 15px;
        flex-direction: column;
        align-items: flex-start;
        z-index: 50;
    }

    .hdb-square    { width: 35px; height: 35px; font-size: 1.2rem; }
    .hdb-main-text { font-size: 0.9rem; }

    .audio-toggle-btn {
        bottom: auto;
        top: 130px;
        right: 20px;
        left: auto;
        width: 42px;
        height: 42px;
    }

    .sticky-video-wrapper { bottom: 15px; left: 15px; }
    .sticky-video-popup { width: 140px; }

    .pe-grid-container { grid-template-columns: repeat(2, 1fr); }
    .pe-item img { min-height: 140px; }

    .awaits-grid { grid-template-columns: 1fr; }
    .exhibitors-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .exhibitor-logo { padding: 10px; height: 70px; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .gallery-item img { width: 100%; }
    p, .dc-desc, .overview-text-p { font-size: 0.95rem; }
    .section { padding: 60px 5%; }
    .section-header h2 { font-size: 2rem; word-break: break-word; }

    .stats-strip { padding: 30px 5%; }
    .stats-strip-items { gap: 15px; flex-direction: column; }
    .stats-strip-item { padding: 10px 0; }
    .stats-strip-item:not(:last-child)::after { display: none; }
    .stats-strip-item:not(:last-child) {
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding-bottom: 15px;
        width: 100%;
    }

    .awards-section { padding: 60px 5%; }

    .footer-top { grid-template-columns: 1fr; gap: 28px; padding: 40px 20px 28px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 12px; padding: 16px 20px; }
    .footer-bottom-links { justify-content: center; flex-wrap: wrap; gap: 12px; }
    .footer-desc { max-width: 100%; }
    .footer-logo--primary img { height: 70px; }
    .footer-logo--secondary img { height: 46px; }
    .footer-social-row { justify-content: flex-start; }

    .social-links-row { flex-direction: column; align-items: stretch; }
    .social-link-pill  { justify-content: center; }
    .map-embed-wrapper { height: 300px; }
}

/* 55/45 split: wider form left, tighter info/image right */
.container.contact-layout,
.container.register-layout {
    grid-template-columns: 55fr 45fr;
}

@media (max-width: 1180px) {
    .container.contact-layout,
    .container.register-layout {
        grid-template-columns: 1fr;
    }
}

/* ======================================= */
/* IMAGE CARD (contact + register pages)   */
/* ======================================= */
.image-card-wrapper {
    background: #ffffff;
    padding: 28px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--brand-blue);
}

.image-card-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* ======================================= */
/* CONTACT INFO CARD                       */
/* ======================================= */
.contact-info-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--brand-blue);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-info-item:first-child { padding-top: 0; }
.contact-info-item:last-child  { border-bottom: none; padding-bottom: 0; }

.contact-info-icon {
    width: 44px;
    min-width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(20, 83, 188, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--brand-blue);
}

.contact-info-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-blue);
    margin-bottom: 4px;
    display: block;
}

.contact-info-value {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.65;
    text-align: left;
    hyphens: none;
}

.contact-info-value a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-value a:hover { color: var(--brand-blue); }

/* ======================================= */
/* SOCIAL MEDIA SECTION                    */
/* ======================================= */
.social-media-section {
    padding: 70px 5%;
    background: #f8f9fb;
    box-sizing: border-box;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.social-media-inner {
    max-width: 860px;
    margin: 0 auto;
}

.social-eyebrow {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--brand-purple);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.social-media-section h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.social-media-sub {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.75;
    max-width: 520px;
    margin: 0 auto 44px;
    text-align: center;
    hyphens: none;
}

.social-links-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.social-link-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

.social-link-pill svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    fill: #ffffff;
}

.social-link-pill.fb { background: #1877f2; color: #ffffff; }
.social-link-pill.fb:hover {
    background: #0d65d9;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(24, 119, 242, 0.35);
}

.social-link-pill.ig {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
}
.social-link-pill.ig:hover {
    filter: brightness(1.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(220, 39, 67, 0.35);
}

.social-link-pill.li { background: #0a66c2; color: #ffffff; }
.social-link-pill.li:hover {
    background: #084f97;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(10, 102, 194, 0.35);
}

/* ======================================= */
/* MAP SECTION                             */
/* ======================================= */
.map-section {
    padding: 70px 5%;
    background: #ffffff;
    box-sizing: border-box;
    border-top: 1px solid var(--border-color);
}

.map-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.map-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.map-section-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.map-section-header p {
    font-size: 1rem;
    color: var(--text-gray);
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    hyphens: none;
}

.map-embed-wrapper {
    width: 100%;
    height: 440px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.map-embed-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ======================================= */
/* FOOTER SOCIAL ICONS                     */
/* ======================================= */
.footer-social-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
}

.footer-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(20, 83, 188, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.footer-social-icon svg {
    width: 17px;
    height: 17px;
    fill: var(--text-dark);
    transition: fill 0.3s ease;
}

.footer-social-icon:hover { transform: translateY(-2px); }
.footer-social-icon.fb:hover { background: #1877f2; }
.footer-social-icon.ig:hover { background: linear-gradient(135deg, #f09433, #bc1888); }
.footer-social-icon.li:hover { background: #0a66c2; }
.footer-social-icon:hover svg { fill: #ffffff; }

/* ======================================= */
/* PRIVACY POLICY PAGE                     */
/* ======================================= */
.policy-page-intro {
    max-width: 860px;
    margin: 0 auto;
    padding: calc(var(--nav-height) + 40px) 1% 10px;
    text-align: center;
    box-sizing: border-box;
}

.policy-page-intro h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.policy-intro-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--brand-purple);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    hyphens: none;
}

.policy-intro-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.88rem;
    color: var(--text-light);
    font-weight: 500;
    margin: 0 auto;
    padding: 10px 22px;
    background: rgba(20, 83, 188, 0.06);
    border-radius: 50px;
    border: 1px solid rgba(20, 83, 188, 0.15);
}

.policy-intro-meta .meta-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--brand-blue);
    opacity: 0.4;
    display: inline-block;
}

.policy-wrapper {
    max-width: 860px;
    margin: 0 auto;
    padding: 40px 1% 80px;
    box-sizing: border-box;
}

.policy-section {
    margin-bottom: 44px;
    padding-bottom: 44px;
    border-bottom: 1px solid var(--border-color);
}

.policy-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-section h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.3;
}

.policy-section h2::before {
    content: '';
    display: inline-block;
    width: 4px;
    min-width: 4px;
    height: 1.15rem;
    background: var(--grad-main);
    border-radius: 2px;
}

.policy-section p {
    font-size: 0.97rem;
    line-height: 1.85;
    color: var(--text-gray);
    margin-bottom: 14px;
    text-align: left;
    hyphens: none;
}

.policy-section p:last-child { margin-bottom: 0; }

.policy-section ul,
.policy-section ol {
    padding-left: 22px;
    margin-bottom: 14px;
}

.policy-section li {
    font-size: 0.97rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 8px;
    text-align: left;
    hyphens: none;
}

.policy-section li strong {
    color: var(--text-dark);
    font-weight: 600;
}

.policy-section a {
    color: var(--brand-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

.policy-section a:hover { color: var(--brand-red); }

.policy-note {
    background: rgba(20, 83, 188, 0.05);
    border-left: 4px solid var(--brand-blue);
    border-radius: 0 10px 10px 0;
    padding: 16px 20px;
    margin-top: 16px;
    font-size: 0.92rem;
    color: var(--text-gray);
    line-height: 1.75;
    hyphens: none;
}

/* Privacy Policy — Contact Card */
.policy-contact-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--brand-blue);
    margin-top: 50px;
}

.policy-contact-card-header {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.policy-contact-card-header p {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--brand-blue);
    margin-bottom: 6px;
}

.policy-contact-card-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.policy-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 40px;
}

.policy-contact-item {}

.policy-contact-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-blue);
    margin-bottom: 5px;
    display: block;
}

.policy-contact-value {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.7;
    hyphens: none;
}

.policy-contact-value a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.policy-contact-value a:hover { color: var(--brand-blue); }

.policy-contact-address {
    grid-column: 1 / -1;
}

@media (max-width: 600px) {
    .policy-contact-grid    { grid-template-columns: 1fr; }
    .policy-contact-address { grid-column: 1; }
    .policy-contact-card    { padding: 28px 22px; }
    .policy-wrapper         { padding: 30px 1% 60px; }
}

/* ======================================= */
/* ABOUT SUMMIT PAGE                       */
/* ======================================= */

/* --- Shared section utilities --- */
.as-section-spaced  { padding-top: 96px; padding-bottom: 96px; }
.as-section-tinted  { background: #f8f9fb; }

/* shared card number indicator */
.as-card-num {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: rgba(0, 0, 0, 0.13);
    text-transform: uppercase;
    margin-bottom: 4px;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

/* --- Intro Section --- */
.as-intro-section {
    padding: calc(var(--nav-height) + 90px) 5% 100px;
    background: linear-gradient(180deg, #f6f8ff 0%, #ffffff 100%);
    box-sizing: border-box;
    border-top: 4px solid transparent;
    border-image: var(--grad-main) 1;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.as-intro-inner {
    max-width: 760px;
    margin: 0 auto;
}

.as-intro-eyebrow {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--brand-purple);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.as-intro-heading {
    font-size: clamp(2.8rem, 5.5vw, 4.4rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.05;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.as-heading-accent {
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.as-intro-subtitle {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    opacity: 0.75;
}

.as-intro-desc {
    font-size: 1.12rem;
    color: var(--text-gray);
    line-height: 1.82;
    max-width: 600px;
    margin: 0 auto 48px;
    text-align: center;
    hyphens: none;
}

.as-intro-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.as-meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: #ffffff;
    border: 1.5px solid #dde2ef;
    border-radius: 50px;
    font-size: 0.87rem;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    cursor: default;
}

.as-meta-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.09);
    border-color: rgba(20, 83, 188, 0.3);
}

.as-meta-chip svg {
    width: 15px;
    height: 15px;
    fill: var(--brand-blue);
    flex-shrink: 0;
}

.as-meta-chip--highlight {
    background: rgba(20, 83, 188, 0.06);
    border-color: rgba(20, 83, 188, 0.25);
    color: var(--brand-blue);
}

.as-meta-chip--highlight:hover { border-color: var(--brand-blue); }

/* --- Overview Section (55/45 split) --- */
.as-overview-section { padding-top: 96px; padding-bottom: 96px; }

.as-overview-split {
    align-items: center;
}

.as-overview-split .overview-text-column {
    flex: 55;
    min-width: 300px;
}

.as-overview-split .overview-image-column {
    flex: 45;
    min-width: 280px;
}

.as-overview-split h2 {
    font-size: clamp(1.9rem, 3.2vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: 1.4rem;
}

.as-overview-split .overview-text-p {
    line-height: 1.82;
    margin-bottom: 1.2rem;
}

.as-overview-quote {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--brand-blue);
    border-left: 3px solid var(--brand-red);
    padding-left: 16px;
    margin-top: 8px;
    line-height: 1.6;
    text-align: left;
    hyphens: none;
}

.as-img-frame {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), 0 24px 56px rgba(20, 83, 188, 0.1);
    border: 1px solid rgba(20, 83, 188, 0.08);
    margin-top: 0;
}

.as-img-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    box-shadow: none;
    margin-top: 0;
}

/* --- Vision Grid --- */
.as-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1280px;
    margin: 0 auto;
}

.as-vision-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 48px 36px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 12px 36px rgba(0, 0, 0, 0.06);
    border-top: 5px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.as-vision-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05), 0 24px 56px rgba(0, 0, 0, 0.1);
}

.as-vision-card .as-card-num { margin-bottom: 20px; }

.as-vision-card--blue   { border-top-color: var(--brand-blue); }
.as-vision-card--purple { border-top-color: var(--brand-purple); }
.as-vision-card--red    { border-top-color: var(--brand-red); }

.as-vision-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 22px;
}

.as-vision-card--blue   .as-vision-icon { background: rgba(20, 83, 188, 0.08); }
.as-vision-card--purple .as-vision-icon { background: rgba(130, 41, 102, 0.08); }
.as-vision-card--red    .as-vision-icon { background: rgba(213, 16, 36, 0.08); }

.as-vision-card--blue   .as-vision-icon svg { fill: var(--brand-blue);   width: 30px; height: 30px; }
.as-vision-card--purple .as-vision-icon svg { fill: var(--brand-purple); width: 30px; height: 30px; }
.as-vision-card--red    .as-vision-icon svg { fill: var(--brand-red);    width: 30px; height: 30px; }

.as-vision-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 14px;
    transition: color 0.3s ease;
    line-height: 1.25;
}

.as-vision-card--blue:hover   h3 { color: var(--brand-blue); }
.as-vision-card--purple:hover h3 { color: var(--brand-purple); }
.as-vision-card--red:hover    h3 { color: var(--brand-red); }

.as-vision-card p {
    font-size: 0.96rem;
    line-height: 1.78;
    color: var(--text-gray);
    margin: 0;
    text-align: justify;
}

/* --- Pillar Grid (9-up) --- */
.as-pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1280px;
    margin: 0 auto;
}

.as-pillar-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 36px 30px 38px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.05);
    border: 1.5px solid #edf0f6;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    overflow: hidden;
}

.as-pillar-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--grad-main);
    border-radius: 3px 0 0 3px;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.as-pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05), 0 20px 44px rgba(0, 0, 0, 0.09);
    border-color: rgba(20, 83, 188, 0.18);
}

.as-pillar-card:hover::before { transform: scaleY(1); }

.as-pillar-card .as-card-num { margin-bottom: 14px; }

.as-pillar-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 18px;
    transition: transform 0.3s ease;
}

.as-pillar-card:hover .as-pillar-icon { transform: scale(1.08); }

.as-pillar-icon svg { width: 26px; height: 26px; }

.as-pi--blue   { background: rgba(20, 83, 188, 0.09); }
.as-pi--purple { background: rgba(130, 41, 102, 0.09); }
.as-pi--red    { background: rgba(213, 16, 36, 0.09); }

.as-pi--blue   svg { fill: var(--brand-blue); }
.as-pi--purple svg { fill: var(--brand-purple); }
.as-pi--red    svg { fill: var(--brand-red); }

.as-pillar-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 10px;
    line-height: 1.3;
    transition: color 0.25s ease;
}

.as-pillar-card:hover h3 { color: var(--brand-blue); }

.as-pillar-card p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--text-gray);
    margin: 0;
    text-align: justify;
}

/* --- Programme Grid (6-up) --- */
.as-programme-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    max-width: 1280px;
    margin: 0 auto;
}

.as-programme-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1.5px solid #edf0f6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.as-programme-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05), 0 24px 50px rgba(0, 0, 0, 0.1);
}

.as-prog-accent {
    height: 6px;
    width: 100%;
    flex-shrink: 0;
    transform-origin: left;
    transform: scaleX(0.88);
    transition: transform 0.25s ease;
}

.as-programme-card:hover .as-prog-accent { transform: scaleX(1); }

/* programme colour variants */
.as-prog--blue   .as-prog-accent { background: var(--brand-blue); }
.as-prog--purple .as-prog-accent { background: var(--brand-purple); }
.as-prog--red    .as-prog-accent { background: var(--brand-red); }

.as-prog--blue   .as-prog-icon { background: rgba(20, 83, 188, 0.09); }
.as-prog--purple .as-prog-icon { background: rgba(130, 41, 102, 0.09); }
.as-prog--red    .as-prog-icon { background: rgba(213, 16, 36, 0.09); }

.as-prog--blue   .as-prog-icon svg { fill: var(--brand-blue); }
.as-prog--purple .as-prog-icon svg { fill: var(--brand-purple); }
.as-prog--red    .as-prog-icon svg { fill: var(--brand-red); }

.as-prog-body {
    padding: 32px 28px 36px;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

.as-prog-icon {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.as-programme-card:hover .as-prog-icon { transform: scale(1.1); }
.as-prog-icon svg { width: 24px; height: 24px; }

.as-programme-card h3 {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 12px;
    line-height: 1.3;
}

.as-programme-card p {
    font-size: 0.92rem;
    line-height: 1.78;
    color: var(--text-gray);
    margin: 0;
    text-align: justify;
}

/* --- CTA Section --- */
@keyframes as-grad-shift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.as-cta-section {
    background: linear-gradient(135deg, #0a1836 0%, #1453BC 35%, #591b45 70%, #0a1836 100%);
    background-size: 300% 300%;
    animation: as-grad-shift 12s ease infinite;
    padding: 110px 5%;
    box-sizing: border-box;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Dot grid overlay */
.as-cta-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

/* Decorative orbs */
.as-cta-section::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 380px; height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.as-cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.as-cta-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.as-cta-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 22px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 7px 20px;
}

.as-cta-heading {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
}

.as-cta-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
    max-width: 580px;
    margin: 0 auto 52px;
    text-align: center;
    hyphens: none;
}

.as-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.as-cta-btn {
    height: 54px;
    padding: 0 34px;
    border-radius: 40px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease;
    white-space: nowrap;
    cursor: pointer;
    letter-spacing: 0.2px;
}

.as-cta-btn--primary {
    background: #ffffff;
    color: var(--brand-blue);
    border: 2px solid #ffffff;
}

.as-cta-btn--primary .cta-icon-wrapper {
    background: var(--brand-blue);
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.28s ease;
}

.as-cta-btn--primary svg { width: 12px; height: 12px; fill: #ffffff; }

.as-cta-btn--primary:hover {
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.as-cta-btn--primary:hover .cta-icon-wrapper { background: rgba(255,255,255,0.25); }

.as-cta-btn--outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.45);
    letter-spacing: 0.2px;
}

.as-cta-btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.85);
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
}

/* --- Responsive: About Summit --- */
@media (max-width: 1100px) {
    .as-vision-grid    { grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .as-pillar-grid    { grid-template-columns: repeat(2, 1fr); }
    .as-programme-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
    .as-overview-split .overview-text-column,
    .as-overview-split .overview-image-column { flex: 1; }
    .as-section-spaced { padding-top: 76px; padding-bottom: 76px; }
    .as-overview-section { padding-top: 76px; padding-bottom: 76px; }
}

@media (max-width: 768px) {
    .as-intro-section  { padding: calc(var(--nav-height) + 55px) 5% 70px; }
    .as-intro-heading  { font-size: clamp(2.2rem, 7vw, 3rem); letter-spacing: -0.5px; }
    .as-vision-grid    { grid-template-columns: 1fr; gap: 18px; }
    .as-vision-card    { padding: 36px 28px; }
    .as-section-spaced { padding-top: 64px; padding-bottom: 64px; }
}

@media (max-width: 600px) {
    .as-intro-section  { padding: calc(var(--nav-height) + 44px) 5% 60px; }
    .as-intro-desc     { font-size: 1rem; margin-bottom: 36px; }
    .as-intro-meta     { gap: 8px; }
    .as-meta-chip      { font-size: 0.82rem; padding: 9px 16px; }
    .as-pillar-grid    { grid-template-columns: 1fr; gap: 14px; }
    .as-pillar-card    { padding: 28px 24px 30px; }
    .as-programme-grid { grid-template-columns: 1fr; gap: 16px; }
    .as-prog-body      { padding: 26px 22px 28px; }
    .as-cta-section    { padding: 80px 5%; }
    .as-cta-heading    { font-size: clamp(1.9rem, 7vw, 2.6rem); }
    .as-cta-desc       { font-size: 0.97rem; margin-bottom: 38px; }
    .as-cta-buttons    { flex-direction: column; align-items: stretch; }
    .as-cta-btn        { justify-content: center; height: 50px; }
    .as-section-spaced { padding-top: 56px; padding-bottom: 56px; }
}