/* ========================================= */
/* 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;

    /* Single shared "resting" shadow for every content card sitewide
       (grid-of-items panels: sector cards, form cards, info cards,
       pillar/vision cards, download cards, past-event cards, ...).
       Already the de facto standard on ~6 of these before this token
       existed; this makes the rest match instead of each carrying its own
       slightly different recipe. Deliberately NOT applied to buttons,
       pills/chips, modals, image frames, or branded/colored-shadow
       elements (CTA banners, bento image tiles, the map-background
       location card) -- those are a different visual language on
       purpose, not this shared card style. Hover-state "lift" shadows on
       individual cards are untouched -- this only standardizes the base
       resting shadow. */
    --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.05);

    --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: 66px;

    /* Edge gutter — every full-width header/footer/section uses this.
       Narrows to 16px on mobile, see the @media override below. */
    --edge-pad: 36px;

    /* Global heading scale — single source of truth for every section
       eyebrow/title sitewide. Change a value here, every section updates.
       Two tiers: "hero" (page/section-intro display headings, e.g.
       .as-intro-heading/.as-cta-heading) and the smaller "section" tier
       (.section-header h2, .awards-heading, etc.) that sits below it. */
    --hero-eyebrow-size: 0.85rem;
    --hero-eyebrow-weight: 700;
    --hero-eyebrow-tracking: 2px;
    --h1-size: clamp(2.3rem, 4.5vw, 3.6rem);
    --h1-weight: 800;
    --h1-line-height: 1.15;
    --h1-tracking: -0.75px;

    --eyebrow-size: 0.9rem;
    --eyebrow-weight: 700;
    --eyebrow-tracking: 1px;
    --h2-size: clamp(1.9rem, 3.6vw, 3.25rem);
    --h2-weight: 800;
    --h2-line-height: 1.08;
    --h2-tracking: -0.02em;
}

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

/* <picture> has no default sizing of its own — wrapping an existing <img>
   in one (for a WebP <source> + JPG fallback) would otherwise break every
   spot that sizes the img relative to its immediate parent (100% width/
   height, object-fit, grid/flex item fills, etc.). display:contents removes
   <picture> from the box tree entirely so its <img> lays out exactly as if
   there were no wrapper — this doesn't affect the browser's own source
   selection, which happens at the DOM level regardless of CSS display. */
picture { display: contents; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
    /* Belt-and-suspenders with body's overflow-x:hidden below: elements
       using the .reveal fade-left/fade-right entrance animation rest at
       transform: translateX(±50px) before their IntersectionObserver
       fires, which pushes the *document's* real scrollable width past
       the viewport — mobile browsers then let the whole page be dragged
       left/right. Clipping at the html level (the actual viewport
       scroller) closes that gap; relying on body's overflow-x alone is
       inconsistent across mobile browsers. */
    overflow-x: hidden;
}

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

/* Narrower edge gutter on mobile — every section/header/footer using
   var(--edge-pad) picks this up automatically. */
@media (max-width: 600px) {
    :root { --edge-pad: 16px; }}

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-family: "Poppins", sans-serif; font-weight: 600; margin-top: 0; }

/* Visually hidden but still readable by screen readers / search engines —
   use to keep exactly one real <h1> per page (site SEO rule, see brain.md)
   when a page shouldn't visibly display its own H1 text. */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========================================= */
/* HEADER / NAVBAR                           */
/* ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    padding: 0 var(--edge-pad);
    box-sizing: border-box;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
    animation: navbarDropIn 0.6s ease both;
}

.navbar.scrolled {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

@keyframes navbarDropIn {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* 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: 16px;
}

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

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

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

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

.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;
}

/* ========================================= */
/* "EXHIBITOR" NAV DROPDOWN (desktop)        */
/* ========================================= */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.nav-dropdown-trigger:hover,
.nav-dropdown-trigger:focus-visible { color: var(--brand-blue); }

.nav-dropdown-trigger.active { color: var(--brand-blue); font-weight: 600; }

.nav-dropdown-caret {
    width: 11px;
    height: 11px;
    fill: currentColor;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.nav-dropdown.open .nav-dropdown-caret,
.nav-dropdown:focus-within .nav-dropdown-caret { transform: rotate(180deg); }

/* Invisible bridge closing the gap between trigger and panel so the
   pointer can travel down to the menu without it appearing to close. */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 18px;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 0;
    min-width: 240px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
    z-index: 1001;
}

.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0s;
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
    background: rgba(20, 83, 188, 0.08);
    color: var(--brand-blue);
}

.nav-dropdown-menu a.active {
    background: rgba(20, 83, 188, 0.08);
    color: var(--brand-blue);
    font-weight: 700;
}

/* The dropdown's <a> items live inside .nav-center too, so they were
   also picking up .nav-center a.active::after's full-width gradient
   underline — visible as a stray line below the active dropdown item.
   The pill background above already marks the active item; no
   underline needed inside the menu. */
.nav-dropdown-menu a.active::after { content: none; }

.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: 38px;
    min-width: 140px;
    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); }

/* ========================================= */
/* GLOBAL CTA BUTTON                         */
/* Reusable, sitewide primary-action button — */
/* same recipe as the header's .btn-uniform  */
/* .cta-button (blue pill, white arrow badge, */
/* red-gradient hover). Use on any page/form  */
/* that needs a primary CTA (links or         */
/* <button> submits alike).                  */
/* ========================================= */
.site-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    height: 50px;
    min-width: 180px;
    padding-left: 25px;
    padding-right: 8px;
    border-radius: 999px;
    background-color: var(--brand-blue);
    color: var(--primary-light) !important;
    border: 1px solid var(--brand-blue);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    box-sizing: border-box;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.site-cta-btn:hover {
    background: var(--grad-red);
    border-color: transparent;
    transform: scale(1.05);
    color: var(--primary-light) !important;
}

.site-cta-btn .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;
}

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

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

.site-cta-btn--block {
    width: 100%;
    justify-content: space-between;
}

.site-cta-btn:disabled,
.site-cta-btn[disabled] {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}

/* Compact two-button CTA row inside an .ec-card's .ec-content — */
/* pinned to the bottom via margin-top: auto so it lines up across */
/* cards in the same grid row regardless of description length. */
.ec-cta-row {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 18px;
}

.ec-cta-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 20px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    box-sizing: border-box;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.ec-cta-btn--outline {
    background-color: transparent;
    color: var(--brand-blue) !important;
    border: 1px solid var(--brand-blue);
}

.ec-cta-btn--outline:hover {
    background: var(--grad-red);
    border-color: transparent;
    color: var(--primary-light) !important;
    transform: translateY(-2px);
}

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

/* ========================================= */
/* MOBILE MENU TOGGLE                        */
/* ========================================= */
.menu-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

.menu-toggle:hover { background-color: rgba(20, 83, 188, 0.08); }

.menu-toggle:focus-visible {
    outline: 2px solid var(--brand-blue);
    outline-offset: 2px;
}

.menu-toggle .bar {
    height: 3px;
    width: 24px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transform-origin: center;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

/* Animate into an X when the drawer is open */
.menu-toggle.active .bar { background-color: var(--brand-blue); }
.menu-toggle.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.active .bar:nth-child(2) { opacity: 0; }
.menu-toggle.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (prefers-reduced-motion: reduce) {
    .navbar { animation: none !important; }
    .menu-toggle,
    .menu-toggle .bar { transition: none !important; }
    .nav-dropdown-menu,
    .nav-dropdown-caret { transition: none !important; }}

@media (max-width: 991px) and (prefers-reduced-motion: reduce) {
    .nav-links,
    .nav-links.active { transition: none !important; transform: none !important; }
    .nav-dropdown-toggle .nav-dropdown-caret { transition: none !important; }}

/* ========================================= */
/* 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: 48px var(--edge-pad) 32px;
    display: grid;
    grid-template-columns: 1.1fr 0.75fr 0.6fr 0.85fr 0.7fr 0.85fr 0.85fr;
    gap: 26px;
    width: 100%;
}

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

.footer-column h3 {
    position: relative;
    margin-bottom: 16px;
    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: 102px;
    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: 68px;
    width: auto;
    object-fit: contain;
    margin-bottom: 14px;
    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.6;
    color: var(--text-light);
    text-align: left;
    hyphens: none;
    word-break: normal;
}

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

.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: 10px;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-light);
}

.footer-contact p a {
    color: var(--text-light);
    transition: color var(--trans-base);
}

.footer-contact p a:hover {
    color: var(--brand-blue);
}

/* .footer-column is `display:flex; flex-direction:column` with the default
   align-items:stretch, so without this the global .site-cta-btn (which sets
   no width of its own) would stretch to the column's full width instead of
   staying a compact pill — this is what the old .footer-cta's
   `width:fit-content` used to prevent. */
.footer-column .site-cta-btn {
    align-self: flex-start;
    margin-top: 10px;
}

.footer-bottom {
    padding: 16px var(--edge-pad);
    border-top: 1px solid rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    width: 100%;
}

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

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

.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); }

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

@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; }

/* Mobile: shorter transition + roughly halved stagger delays. A 0.58s
   top-of-chain delay reads as "considered" on a wide desktop grid where
   cards enter the viewport spread out over time, but on a narrow phone
   viewport a whole card grid often scrolls into view at once — the long
   chain just reads as sluggish, and keeps decorative content sitting at
   opacity:0 for longer than it needs to. */
@media (max-width: 768px) {
    .reveal { transition-duration: 0.45s; }
    .reveal.d1 { transition-delay: 0.05s; }
    .reveal.d2 { transition-delay: 0.1s; }
    .reveal.d3 { transition-delay: 0.15s; }
    .reveal.d4 { transition-delay: 0.2s; }
    .reveal.d5 { transition-delay: 0.25s; }
    .reveal.d6 { transition-delay: 0.3s; }
}

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

/* ======================================= */
/* GLOBAL SECTION STYLES                   */
/* ======================================= */
.section {
    padding: 40px var(--edge-pad);
    box-sizing: border-box;
}

.section-header {
    text-align: left;
    max-width: 860px;
    margin: 0 0 3rem 0;
    width: 100%;
}

.section-header h2 {
    font-size: var(--h2-size);
    font-weight: var(--h2-weight);
    line-height: var(--h2-line-height);
    letter-spacing: var(--h2-tracking);
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    text-align: left;
}

.section-header p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: left;
    max-width: 700px;
    margin: 0;
}

/* Shared gradient-accent span for section h2 titles (blue -> purple -> red) */
.h2-accent {
    background: linear-gradient(105deg, var(--brand-blue) 0%, var(--brand-purple) 52%, var(--brand-red) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Visitors section keeps its bespoke centered eyebrow/divider layout */
#visitors .section-header {
    text-align: center;
    max-width: none;
    margin-inline: auto;
}

#visitors .section-header h2 {
    text-align: center;
}

#visitors .section-header p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* Exhibitors & Gallery section headers are also centered */
#exhibitors .section-header,
#gallery .section-header {
    text-align: center;
    max-width: none;
    margin-inline: auto;
}

#exhibitors .section-header h2,
#gallery .section-header h2 {
    text-align: center;
}

#exhibitors .section-header p,
#gallery .section-header p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.overview-text-column { flex: 1; min-width: 300px; }

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

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

.stats-strip-container {
    width: 100%;
    background: var(--grad-main);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(20, 83, 188, 0.25);
    padding: 18px 40px;
}

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

.stats-strip-item {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    padding: 0 25px;
}

.stats-strip-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-strip-icon svg { width: 22px; height: 22px; }

.stats-strip-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.stats-strip-number {
    font-size: clamp(1.4rem, 2vw, 1.9rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
}

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

.stats-strip-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 2px;
}

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

/* .awards-eyebrow / .awards-heading: shared by the homepage "Conference"
   and "Education Awards" split sections. Lost during the 2026-08-28
   common.css/css-pages split (markup kept the classes, the rules didn't
   survive the migration) — restored here on the same section-tier tokens
   .section-header h2/.eyebrow-heading already use, per DESIGN.md. */
.awards-eyebrow {
    font-size: var(--eyebrow-size);
    font-weight: var(--eyebrow-weight);
    color: var(--brand-red);
    text-transform: uppercase;
    letter-spacing: var(--eyebrow-tracking);
    margin-bottom: 0.8rem;
    text-align: left;
}

.awards-heading {
    font-size: var(--h2-size);
    font-weight: var(--h2-weight);
    line-height: var(--h2-line-height);
    letter-spacing: var(--h2-tracking);
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-align: left;
}

/* Homepage awards block only: split heading/video/content into named
   grid areas so mobile can reorder to heading -> video -> content */
#awards .awards-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "heading video" "content video";
    align-items: center;
    column-gap: 5%;
    row-gap: 0;
}
#awards .awards-heading-block { grid-area: heading; min-width: 0; }
#awards .awards-content-block { grid-area: content; min-width: 0; }
#awards .awards-video-column { grid-area: video; min-width: 0; }

.hero-icon-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px 10px;
    margin-top: 24px;
}

.hero-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    width: 100%;
    min-width: 0;
}

.hero-icon-badge {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--brand-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-icon-badge svg { width: 19px; height: 19px; fill: var(--brand); }

.hero-icon-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

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

.conference-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 5%;
    flex-wrap: wrap;
}

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

.as-intro-inner--split .conference-image-column {
    flex: 1.15 1 340px;
}

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

.conference-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Homepage conference block only: split heading/image/content into named
   grid areas so mobile can reorder to heading -> image -> content */
#conference .conference-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "image heading" "image content";
    align-items: center;
    column-gap: 5%;
    row-gap: 0;
}
#conference .conference-heading-block { grid-area: heading; min-width: 0; }
#conference .conference-content-block { grid-area: content; min-width: 0; }
#conference .conference-image-column { grid-area: image; min-width: 0; }


.ec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    width: 100%;
}

.ec-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
    transition: transform 0.4s cubic-bezier(.2,.7,.2,1), box-shadow 0.4s cubic-bezier(.2,.7,.2,1);
}

.ec-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1.5px;
    background: linear-gradient(150deg, var(--brand-blue), var(--brand-purple), var(--brand-red));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.ec-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -26px rgba(20,83,188,0.4);
}

.ec-card:hover::before { opacity: 1; }

.ec-photo-wrap {
    position: relative;
    padding: 14px 14px 0;
}

.ec-photo {
    position: relative;
    aspect-ratio: 16 / 11;
    border-radius: 14px;
    overflow: hidden;
}

.ec-photo-scale {
    position: absolute;
    inset: 0;
}

.ec-photo-scale img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ec-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 24px 26px;
}

.ec-tag-row {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 13px;
}

.ec-tag-dash {
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: var(--grad-main);
    flex-shrink: 0;
}

.ec-tag {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: linear-gradient(100deg, var(--brand-blue), var(--brand-purple), var(--brand-red));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.ec-desc {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.62;
    font-weight: 400;
    color: var(--text-gray);
    text-align: left;
}

@media (max-width: 1080px) {
    .ec-grid { grid-template-columns: repeat(2, 1fr); }}

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

.visitors-container {
    width: 100%;
    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: var(--shadow-card);
    border-top: 5px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

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

.visitors-container--square .visitor-card {
    padding: 26px 26px;
}

.visitors-container--square .v-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
}

.visitors-container--square .v-icon svg { width: 26px; height: 26px; }

.visitors-container--square .visitor-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.visitors-container--square .visitor-card p {
    font-size: 0.88rem;
    line-height: 1.45;
}

.v-blue   { border-top-color: var(--brand-blue);   background: linear-gradient(165deg, #fff 55%, rgba(20, 83, 188, 0.07) 100%); }   .v-blue:hover h3   { color: var(--brand-blue); }
.v-purple { border-top-color: var(--brand-purple); background: linear-gradient(165deg, #fff 55%, rgba(130, 41, 102, 0.08) 100%); } .v-purple:hover h3 { color: var(--brand-purple); }
.v-red    { border-top-color: var(--brand-red);    background: linear-gradient(165deg, #fff 55%, rgba(213, 16, 36, 0.07) 100%); }    .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);
}

/* --- Honored-community decor: confetti + watermark star --- */
#visitors { position: relative; }
#visitors .section-header,
#visitors .visitors-container { position: relative; z-index: 1; }

/* --- Star divider between the heading and the intro copy --- */
#visitors .section-header h2::after { display: none; }

.v-blue   .v-wreath ellipse { fill: var(--brand-blue); }
.v-purple .v-wreath ellipse { fill: var(--brand-purple); }
.v-red    .v-wreath ellipse { fill: var(--brand-red); }

#visitors .v-icon {
    position: relative;
    z-index: 1;
    border-radius: 50%;
    margin-bottom: 0;
    box-shadow: 0 8px 18px -8px rgba(0, 0, 0, 0.18);
}
.v-blue   .v-divider { background: var(--brand-blue); }
.v-purple .v-divider { background: var(--brand-purple); }
.v-red    .v-divider { background: var(--brand-red); }

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

/* Desktop/tablet always show every logo -- the mobile-only truncation +
   button live in the max-width:600px block below. */
.exhibitors-load-more { display: none; }

.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 {
    width: 100%;
    padding: calc(var(--nav-height) + 40px) var(--edge-pad) 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 {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(360px, 2fr) minmax(420px, 3fr);
    gap: 40px;
    align-items: start;
    padding: 0 var(--edge-pad) 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: var(--shadow-card);
    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;
}

@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;
}

/* Shared "form CTA footer" -- the submit button + GDPR notice at the
   bottom of every full-page enquiry/registration form (contact-us.php,
   travel-desk-contact.php, Register_EGN.php, visitor-workshop.php,
   EGN_bookstall.php). A divider separates it from the fields above so it
   reads as its own "you're done, here's what happens next" section, and
   the shared .site-cta-btn drops --block (width:100%, which stretched
   edge-to-edge -- the original "too wide" complaint, first fixed once on
   contact-international-agency.php) in favor of its normal content-hugging
   size, centered in its own row instead. Deliberately NOT used by the 3
   standalone partner forms (EGN_Partner.php, EGN_Partner_discount_with_mysql.php,
   Global_Partners.php, each their own .submit-btn) or Education_awards.php's
   nomination modal (.modal-submit-btn) or the 2 popup modals'
   .pf-submit-row/.ftm-* buttons -- those are deliberately separate,
   self-contained design systems, not this shared full-page-form pattern. */
.form-cta-footer {
    margin-top: 6px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.form-submit-row {
    text-align: center;
}

.form-submit-row .site-cta-btn {
    min-width: 240px;
}

/* Consent-checkbox label text (contact-us.php, EGN_bookstall.php,
   Register_EGN.php, travel-desk-contact.php's privacy/T&C checkboxes) —
   NOT the same purpose as the old privacy-policy.php ".privacy-title"
   this rule used to sit beside (that class is genuinely dead and was
   removed; this one shares the name by coincidence but is live sitewide,
   confirmed 2026-09-04 by grepping every page, not just one). */
.privacy-text {
    color: #666;
    line-height: 1.7;
}

.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); }

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

/* ======================================= */
/* CONTACT — IMAGE + INFO ROW              */
/* ======================================= */
.contact-details-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 24px;
    align-items: stretch;
    width: 100%;
    margin-bottom: 24px;
}

/* The left "frame" (SDG image card) now stretches to match the right
   column's full height (info card + form + map), same as align-items:
   stretch already does for every other grid pair on the site — it used to
   opt out via align-self:start so the row's auto height stayed pinned to
   the image's own aspect ratio, but that left the two columns visibly
   mismatched once the right column grew past it. object-fit:contain lets
   the now-taller frame grow around the image without cropping into it
   (unlike object-fit:cover, which crops to fill a taller box) — the image
   just letterboxes instead. */
.contact-details-grid .image-card-wrapper {
    display: flex;
    flex-direction: column;
    /* Grid item wrapping an <img width=100%> — defaults to min-width:auto,
       letting the image's intrinsic size force the grid track wider than
       the container (documented gotcha, brain.md Frontend Standards).
       Flagged during the 2026-09-04 mobile/perf sweep. */
    min-width: 0;
}

.contact-details-grid .image-card-wrapper img {
    width: 100%;
    flex: 1;
    min-height: 0;
    object-fit: contain;
}

.bento-image-caption {
    margin-top: 12px;
    color: var(--brand-blue);
    text-align: center;
    font-size: 0.95rem;
}

/* Right column: info card on top, lead-capture strip pinned to the bottom */
.contact-right-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
}

.contact-right-col .contact-cta-strip {
    margin-top: auto;
}

/* On pages with no .contact-info-card (e.g. the homepage), the CTA strip is
   the column's only child — margin-top:auto would then shove it all the way
   down to match the tall SDG image, leaving a blank gap above it. Pin it to
   the top instead. Pages that keep the info card (conference.php) are
   unaffected since the strip isn't :only-child there. */
.contact-right-col > .contact-cta-strip:only-child {
    margin-top: 0;
}

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

/* Get In Touch: hide the Address/Phone/Email card on mobile — the same
   details already live in the footer, so this trims a long mobile scroll */
@media (max-width: 600px) {
    .contact-info-card { display: none; }}

/* Slim CTA strip — the lead-capture form condensed into one horizontal bar */
.contact-cta-strip {
    width: 100%;
    box-sizing: border-box;
    background: #ffffff;
    border-radius: 24px;
    padding: 20px 28px;
    box-shadow: var(--shadow-card);
    border-left: 5px solid var(--brand-red);
}

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

/* Compound `.contact-form.contact-form--strip` selectors are used throughout
   (instead of bare `.contact-form--strip`) so these overrides beat the base
   `.contact-form input/textarea/button` rules below on specificity alone —
   not on source order, which is what broke this the first time round.

   A 2-column CSS grid (not flex-wrap + flex-basis) so every field is always
   EXACTLY half the row width — deterministic, unlike flex-grow ratios which
   left the phone field squeezed next to a faster-growing message field once
   this strip lives inside the narrower .contact-right-col. */
.contact-form.contact-form--strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 14px;
}

/* Each field is now a label+input pair (.input-group) so the grid item
   itself just needs to fill its column; the label/input inside stack via
   flex, overriding the shared .input-group label rule's bigger spacing
   (designed for full-size forms) down to fit this compact strip. */
.contact-form.contact-form--strip .input-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-form.contact-form--strip .input-group label {
    margin-bottom: 0;
    font-size: 0.82rem;
}

/* :not([type="checkbox"]) -- this used to catch every <input> in the strip,
   consent checkbox included, stretching it to a 50px-tall, full-width box
   (visible as an oversized square sitting next to a label squeezed into a
   vertical stack of one-word lines). The checkbox gets its own sizing in
   .consent-row below instead. */
.contact-form.contact-form--strip input:not([type="checkbox"]),
.contact-form.contact-form--strip textarea,
.contact-form.contact-form--strip .iti {
    width: 100%;
    height: 50px;
    padding: 0 1.1rem;
    box-sizing: border-box;
}

.contact-form.contact-form--strip textarea {
    min-height: 0;
    resize: none;
    padding-top: 0.7rem;
    line-height: 1.3;
}

/* intl-tel-input (js/intlTelInput.min.js) wraps #expophone in a `.iti` div —
   that wrapper, not the <input> itself, is the actual grid item here, so it
   needs its own sizing or it collapses to its unstyled default width. */
.contact-form.contact-form--strip .iti {
    padding: 0;
    display: flex;
}

.contact-form.contact-form--strip .iti input {
    width: 100%;
    height: 100%;
}

/* Consent checkbox row (index.php + conference.php's "Get In Touch" strip) --
   spans both grid columns like the submit button does, so the checkbox sits
   at its native size with the label text running the full row width instead
   of wrapping into a narrow one-word-per-line column next to an oversized
   checkbox (see the input:not([type="checkbox"]) note above). */
.contact-form.contact-form--strip .consent-row {
    grid-column: 1 / -1;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.contact-form.contact-form--strip .consent-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 3px;
    accent-color: var(--brand-blue);
}

.contact-form.contact-form--strip .site-cta-btn {
    grid-column: 1 / -1;
    justify-self: start;
}

@media (max-width: 860px) {
    .contact-form.contact-form--strip { grid-template-columns: 1fr; }
    .contact-form.contact-form--strip .site-cta-btn { justify-self: stretch; }}

.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; }

/* :not(.site-cta-btn) so this legacy reset never fights the global CTA
   button's own styling wherever both apply inside the same .contact-form
   (e.g. index.php's slim strip) — see GLOBAL CTA BUTTON above. */
.contact-form button:not(.site-cta-btn) {
    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:not(.site-cta-btn):hover {
    background-color: var(--brand-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(213, 16, 36, 0.3);
}

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

/* ======================================= */
/* 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: 1fr 0.7fr 0.55fr 0.8fr 0.65fr 0.8fr 0.8fr; gap: 18px; }}

@media (max-width: 1150px) {
    .btn-uniform { height: 36px; 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) {
    .logo img { height: 56px; }

    /* 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: flex;
        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;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0s;
    }

    .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);
    }

    /* Mobile drawer only: the shared left-border accent (.nav-links
       a.active, common.css line ~333) would sit stranded off to one
       edge with the drawer text centered — swapped for the same soft
       blue box the desktop "Exhibitor/Visitor/Conference" dropdown
       panel already uses for its active item (.nav-dropdown-menu
       a.active above), just inset so it reads as a pill within the
       full-width drawer row. Desktop's dropdown menu keeps its own
       left-border version untouched. */
    .nav-links a.active {
        border-left: none;
        background: rgba(20, 83, 188, 0.08);
        border-radius: 10px;
        margin: 0 16px;
    }

    /* "Exhibitor" mobile accordion toggle — a <span>, not an <a>, so it
       doesn't match the ".nav-links a.nav-text" rule above and needs its
       own copy of that same font-size/padding or it renders squashed
       next to the full-size plain links (Home, Workshop, Awards, ...). */
    .nav-dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        cursor: pointer;
        font-size: 1.1rem;
        padding: 10px;
        color: var(--text-dark);
    }

    .nav-dropdown-toggle .nav-dropdown-caret {
        width: 12px;
        height: 12px;
        fill: currentColor;
        transition: transform 0.25s ease;
    }

    .nav-dropdown-item.open .nav-dropdown-toggle .nav-dropdown-caret { transform: rotate(180deg); }

    .nav-dropdown-list { display: none; }

    .nav-dropdown-item.open .nav-dropdown-list { display: block; }

    .nav-dropdown-list .nav-subtext {
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--text-light);
        padding: 8px 10px;
        text-align: center;
    }

    .nav-dropdown-list .nav-subtext.active {
        color: var(--brand-blue);
        font-weight: 600;
        /* Same leak as the desktop menu, mobile flavor: the more
           specific .nav-links a.active rule's left-border + soft blue
           box otherwise bleed in since this rule doesn't touch those
           properties itself. Sub-items keep their plain text+bold
           indicator, unchanged — the soft blue box is scoped to the
           top-level drawer links only. */
        border-left: none;
        background: none;
        border-radius: 0;
        margin: 0;
    }

    .nav-links .btn-stall,
    .nav-links .cta-button {
        width: 90%;
        margin: 10px auto;
        display: flex;
        height: 50px;
        justify-content: center;
    }
    #awards .awards-wrapper {
        grid-template-columns: 1fr;
        grid-template-areas: "video" "heading" "content";
    }

    .conference-wrapper { flex-direction: column; }
    .conference-image-column { order: -1; width: 100%; margin-bottom: 30px; }
    #conference .conference-wrapper {
        grid-template-columns: 1fr;
        grid-template-areas: "image" "heading" "content";
    }

    .stats-strip-items { justify-content: center; }

    .footer-top { grid-template-columns: 1fr 1fr; padding: 40px var(--edge-pad) 24px; gap: 22px; }
    .footer-bottom { padding: 14px var(--edge-pad); flex-wrap: wrap; gap: 10px; }
    .footer-bottom-links { flex-wrap: wrap; gap: 12px; }
    .footer-desc { max-width: 100%; }
    .footer-logo--primary img { height: 88px; }
    .footer-logo--secondary img { height: 58px; }}

@media (max-width: 600px) {

    .exhibitors-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .exhibitor-logo { padding: 8px; height: 65px; }

    /* "Meet Our Past Exhibitors": show only the first 21 logos (7 rows of
       3) on mobile, with a "Load More" button revealing the rest -- the
       full 88-logo grid was too long a scroll on a phone. Desktop/tablet
       are unaffected and keep showing every logo. */
    .exhibitors-grid .exhibitor-logo:nth-child(n+22) { display: none; }
    .exhibitors-grid.exhibitors-grid--expanded .exhibitor-logo:nth-child(n+22) { display: flex; }
    .exhibitors-load-more {
        display: block;
        margin: 22px auto 0;
        padding: 10px 30px;
        border-radius: 999px;
        border: 1.5px solid var(--brand-blue);
        background: #fff;
        color: var(--brand-blue);
        font-family: inherit;
        font-weight: 600;
        font-size: 0.9rem;
        cursor: pointer;
    }
    .exhibitors-load-more:active { background: rgba(20, 83, 188, 0.08); }
    .exhibitors-load-more.is-hidden { display: none; }

    /* "EGN Connect X Conference" block: heading -> image -> content, mobile only */
    #conference .conference-wrapper {
        grid-template-areas: "heading" "image" "content";
    }

    /* Conference eyebrow + heading: centered on mobile only, per request —
       desktop/tablet stay left-aligned. The shared .awards-eyebrow/
       .awards-heading classes also drive the Education Awards section
       further down the page, so this override is scoped to #conference. */
    #conference .awards-eyebrow,
    #conference .awards-heading {
        text-align: center;
    }

    /* "Catalyst 2047 · Architecting Viksit Bharat" badge: was left-aligned
       on mobile even after the eyebrow/heading above it were centered.
       It's inline-flex, so text-align on the parent can't center it and
       margin:auto has no effect while it stays inline-level -- switch it
       to a block flex box sized to its content so margin:auto can center
       the box itself, without touching the paragraphs around it. */
    .conf-catalyst-badge {
        display: flex;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    /* "EGN Education Awards" block: heading -> video -> content, mobile only */
    #awards .awards-wrapper {
        grid-template-areas: "heading" "video" "content";
    }

    /* Awards eyebrow + heading ("Recognizing Excellence in Education" /
       "EGN Education Awards"): centered on mobile only, same treatment as
       #conference above — desktop/tablet stay left-aligned. */
    #awards .awards-eyebrow,
    #awards .awards-heading {
        text-align: center;
    }

    /* Awards icon row (Recognizing Excellence / Celebrating Innovation /
       Inspiring Leadership / Driving Impact in Education): the desktop
       4-across grid squeezes each label into too narrow a column on
       mobile, wrapping onto lines that crowd into the neighboring item —
       2x2 gives each label real width to wrap in. Education_awards.php
       has its own separate flex-based .hero-icon-row and is unaffected. */
    .hero-icon-row {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 24px;
    }

    #visitors .visitors-container {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: 82%;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 16px;
        padding-bottom: 4px;
    }
    #visitors .visitors-container::-webkit-scrollbar { display: none; }
    #visitors .visitor-card { scroll-snap-align: center; }
    .section { padding: 28px var(--edge-pad); }

    /* Sitewide mobile section-heading centering (2026-09-04 mobile/perf pass).
       Desktop stays left-aligned per DESIGN.md's documented heading pattern —
       this only applies ≤600px. Reuses the exact centering recipe already
       proven on #past-events/#vision-purpose/#egn-unique/#in-collaboration
       etc. (text-align:center, max-width:820px, margin-inline:auto), just
       generalized so every .section-header gets it on mobile instead of
       requiring a new ID-scoped override per section. Sections already
       centered at all breakpoints (#visitors, #exhibitors, #gallery, the
       About Summit sections above) are unaffected — this rule agrees with
       their existing centering, it doesn't fight it. */
    .section-header {
        text-align: center;
        max-width: 820px;
        margin-inline: auto;
    }
    .section-header h2 { font-size: 2rem; word-break: break-word; text-align: center; }
    .section-header p { text-align: center; max-width: 700px; margin: 0 auto; }

    .stats-strip { padding: 28px var(--edge-pad); }
    .stats-strip-container { padding: 24px 20px; }
    .stats-strip-items {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 0;
    }
    .stats-strip-items::-webkit-scrollbar { display: none; }
    .stats-strip-item {
        flex: 0 0 100%;
        width: 100%;
        padding: 0;
        justify-content: center;
        scroll-snap-align: center;
    }
    .footer-top { grid-template-columns: 1fr; gap: 22px; padding: 32px var(--edge-pad) 24px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 10px; padding: 14px var(--edge-pad); }
    .footer-bottom-links { justify-content: center; flex-wrap: wrap; gap: 12px; }
    .footer-desc { max-width: 100%; }
    .footer-logo--primary img { height: 78px; }
    .footer-logo--secondary img { height: 52px; }
    .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: var(--shadow-card);
    border-left: 5px solid var(--brand-blue);
}

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

.contact-details .image-card-wrapper img {
    max-height: 320px;
    object-fit: cover;
    object-position: top;
}

/* ======================================= */
/* CONTACT QUICK ROW (phone + email chips) */
/* ======================================= */
.contact-quick-row {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border-radius: 999px;
    padding: 10px 22px 10px 10px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

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

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

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

.contact-chip-value {
    font-size: 0.85rem;
    color: var(--text-dark);
    line-height: 1.45;
    margin: 0;
}

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

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

@media (max-width: 480px) {
    .contact-quick-row { justify-content: flex-start; }
    .contact-chip { width: 100%; }}

/* ======================================= */
/* CONTACT INFO CARD                       */
/* ======================================= */
.contact-info-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-card);
    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 var(--edge-pad);
    background: #f8f9fb;
    box-sizing: border-box;
    text-align: center;
}

.social-media-inner {
    width: 100%;
}

.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 var(--edge-pad);
    background: #ffffff;
    box-sizing: border-box;
}

.map-inner {
    width: 100%;
}

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

.map-section-header h2 {
    font-size: var(--h2-size);
    font-weight: var(--h2-weight);
    line-height: var(--h2-line-height);
    letter-spacing: var(--h2-tracking);
    color: var(--text-dark);
    margin-bottom: 10px;
}

.map-section-header p {
    font-size: 1rem;
    color: var(--text-gray);
    max-width: 560px;
    margin: 0;
    text-align: left;
    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) var(--edge-pad) 10px;
    text-align: center;
    box-sizing: border-box;
}

/* :not() excludes the sector agenda pages' hero h1 (promoted from the
   old subtitle <p> so each page keeps exactly one h1) — it keeps the
   small gradient-subtitle look via .policy-intro-subtitle below instead
   of this big blue caps style. */
.policy-page-intro h1:not(.policy-intro-subtitle) {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    text-align: center;
}

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

/* Larger subtitle variant for the sector conference agenda pages
   (early-learning, K-12, higher-education, study-abroad, beyond-academics) */
.policy-intro-subtitle--lg {
    font-size: 1.25rem;
}

/* Sector agenda pages' hero title now stands in for the removed
   sector-name h1 (e.g. "School Education"), so it's sized back up
   towards that h1's scale instead of the smaller default subtitle
   size. Each page's heading wraps a different amount of text, so a
   single shared font-size can't keep every one of them on one line —
   the cqw-based --modifier below is calibrated per page to its own
   text length, scaling off the text column's own width (see
   container-type on .policy-page-intro-text) so it stays one line
   across laptop widths without depending on a fixed breakpoint.
   Higher Education, Study Abroad and Early Learning now carry the
   same ("Leadership Summit"-length) title, so they share one
   calibration and render at identical sizes on the same device.

   Below its breakpoint, the column has shrunk to where nowrap's
   fixed-cqw floor would force the text wider than the column (it
   overflows into the logo card instead of shrinking further) — so
   wrapping is allowed again there at a small fixed size instead.
   Verified page-by-page with real font metrics (not just eyeballed)
   across 320–1920px, since each page's floor stops binding at a
   different width:
   - Early Learning/Higher Education/Study Abroad/Edu Architects share
     a column-width curve and comparable text length now, so they
     share one calibration; safe above 950px (Edu Architects has no
     partner logo yet, so its column is wider still — safe with room
     to spare).
   - Beyond Academics has the single-logo column curve but a much
     longer title (~50%+ more characters than any other sector page's),
     so it deliberately keeps its own separate, smaller calibration
     (see conference-hero-heading--beyond-academics in
     css/pages/beyond-academics.css) rather than joining this shared
     group — forcing its long title to this group's size would overflow
     the fixed-width column (the class is white-space:nowrap).
   - K12's multi-logo grid gives its column much more room up to
     ~915px (needing no fixed-size fallback there at all, unlike the
     others) and its own title is no longer than this group's, so it
     was unified into this shared group's font-size (2026-08-28
     uniformity pass — previously had its own larger, uncoordinated
     clamp in css/pages/k12-school-education.css for no content-length
     reason). It still needs its OWN extra fallback below, because its
     grid then reflows and the column suddenly narrows from
     ~920–1100px, where its floor overflows the same way the others do
     below 950px — a pre-existing gap unrelated to this unification. */
.conference-hero-heading {
    font-weight: 800;
    white-space: nowrap;
}
.conference-hero-heading--early-learning,
.conference-hero-heading--higher-education,
.conference-hero-heading--study-abroad,
.conference-hero-heading--edu-architects,
.conference-hero-heading--k12              { font-size: clamp(1.35rem, 3.9cqw, 2.25rem); }

@media (max-width: 950px) {
    .conference-hero-heading--early-learning,
    .conference-hero-heading--higher-education,
    .conference-hero-heading--study-abroad,
    .conference-hero-heading--edu-architects {
        white-space: normal;
        font-size: 1.3rem;
    }}

/* K12-only: its 8-logo grid card (.theme-partner-logo-card--grid, see
   css/pages/k12-school-education.css) reflows in this band, narrowing
   the heading's own column right when the shared >950px rule above
   still expects full width — needs its own fallback the other 4
   unified pages don't. */
@media (min-width: 910px) and (max-width: 1110px) {
    .conference-hero-heading--k12 {
        white-space: normal;
        font-size: 1.3rem;
    }}

.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 var(--edge-pad) 80px;
    box-sizing: border-box;
}

.policy-section {
    margin-bottom: 44px;
    padding-bottom: 44px;
}

.policy-section:last-of-type {
    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: var(--shadow-card);
    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 var(--edge-pad) 60px; }}

/* ======================================= */
/* "COMING SOON" PLACEHOLDER PAGES (shared) */
/* Used by 5 of the 6 Exhibitor nav-dropdown */
/* items until their real content ships     */
/* ("Exhibitor Profile" links to           */
/* exhibitor-profile.php, which already has */
/* real content).                           */
/* ======================================= */
.coming-soon-wrapper {
    display: flex;
    justify-content: center;
}

.coming-soon-card {
    width: 100%;
    max-width: 640px;
    text-align: center;
    background: #ffffff;
    border-radius: 24px;
    padding: 56px 40px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
}

.coming-soon-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--grad-main);
}

.coming-soon-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.coming-soon-card .eyebrow-heading { text-align: center; }

.coming-soon-card h2 {
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.25;
}

.coming-soon-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    text-align: center;
    max-width: 480px;
    margin: 0 auto 30px;
}

.coming-soon-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.coming-soon-secondary-link {
    color: var(--brand-blue);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.coming-soon-secondary-link:hover {
    color: var(--brand-red);
    border-color: currentColor;
}

@media (max-width: 600px) {
    .coming-soon-card { padding: 40px 22px; }}

/* ======================================= */
/* EXPLORE-SECTOR CROSS-NAVIGATION (shared) */
/* Used by dedicated sector pages (K-12,    */
/* Study Abroad, …) to jump between the 6   */
/* "What awaits you" summit sectors.        */
/* ======================================= */
.explore-page-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
}

.explore-page-main { min-width: 0; }

/* Mobile/tablet stacking order: real page content first, the
   "jump to another sector" cross-nav last — it's a secondary aid,
   not the reason someone landed on this page. */
.explore-page-main    { order: 1; }
.explore-page-aside    { order: 2; }

@media (min-width: 992px) {
    /* Simple two-column layout: everything that belongs beside the sticky
       sidebar (Suggested Discussion Format + the "Explore the 12 Tables"
       3D teaser) lives inside .explore-page-main as normal stacked
       sections, so the sidebar's sticky range is naturally bounded by
       .explore-page-main's real height — no separate grid row/overlap
       bookkeeping needed. The full 12-card grid is a hidden-until-clicked
       block OUTSIDE this layout entirely (see .ba-tables-reveal) so it's
       never constrained by the 280px sidebar column when revealed. */
    .explore-page-layout { grid-template-columns: 1fr 280px; gap: 8px 44px; }
    /* .explore-page-aside (column 2) comes before .explore-page-main
       (column 1) in the DOM (the sidebar partial is included first).
       Without an explicit grid-row, the auto-placement cursor won't
       step backward for the second item's earlier column, so it gets
       pushed to row 2 — a large blank gap above it. Pin both to row 1
       explicitly so they sit side by side regardless of DOM order. */
    .explore-page-main { grid-column: 1; grid-row: 1; order: initial; }
    .explore-page-aside {
        grid-column: 2;
        grid-row: 1;
        order: initial;
        position: sticky;
        top: calc(var(--nav-height) + 24px);
    }}

.explore-nav {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 28px 22px;
    box-sizing: border-box;
    box-shadow: 0 2px 10px rgba(20, 83, 188, 0.04), 0 20px 44px rgba(20, 83, 188, 0.07);
}

.explore-nav-label {
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--brand-purple);
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin: 0 0 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
}

.explore-nav-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.explore-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 12px;
    border-radius: 12px;
    font-size: 0.89rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.4;
    text-align: left;
    hyphens: none;
    transition: background-color var(--trans-base), color var(--trans-base), transform var(--trans-base), box-shadow var(--trans-base);
}

.explore-nav-link-text { flex: 1; text-align: left; }

.explore-nav-link-bar {
    width: 6px;
    min-width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border-color);
    flex-shrink: 0;
    transition: background var(--trans-base), transform var(--trans-base);
}

.explore-nav-link-arrow {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    fill: currentColor;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity var(--trans-base), transform var(--trans-base);
}

.explore-nav-link:hover,
.explore-nav-link:focus-visible {
    background: rgba(20, 83, 188, 0.08);
    color: var(--brand-blue);
    transform: translateX(4px);
}

.explore-nav-link:hover .explore-nav-link-bar,
.explore-nav-link:focus-visible .explore-nav-link-bar {
    background: var(--brand-blue);
    transform: scale(1.15);
}

.explore-nav-link:hover .explore-nav-link-arrow,
.explore-nav-link:focus-visible .explore-nav-link-arrow {
    opacity: 1;
    transform: translateX(0);
}

.explore-nav-link:focus-visible {
    outline: 2px solid var(--brand-blue);
    outline-offset: 2px;
}

.explore-nav-link.is-current {
    background: var(--brand-blue);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(20, 83, 188, 0.25);
}

.explore-nav-link.is-current .explore-nav-link-bar {
    background: #ffffff;
    transform: scale(1.15);
}

.explore-nav-link.is-current .explore-nav-link-arrow {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 600px) {
    .explore-nav { padding: 22px 18px; }}

/* ======================================= */
/* K12 / SCHOOL EDUCATION AGENDA PAGE      */
/* ======================================= */
/* No max-width cap — matches the homepage's .section/.ec-grid pattern
   (edge-pad only, fluid width) instead of centering in a narrower
   column, so the left/right gutter on these 6 sector pages lines up
   with the rest of the site instead of leaving extra whitespace on
   wide screens. */
.k12-wrapper { max-width: none; }

/* Page-title block (heading + subheading) reuses the same fluid-width
   .k12-wrapper class so it lines up with the .k12-wrapper <main> below
   it instead of sitting centered in the narrower 860px column the
   shared .policy-page-intro uses on legal/exhibitor pages. Left-align
   the text too so it reads from that same left edge instead of
   centering within the now-wider block. */
.policy-page-intro.k12-wrapper,
.policy-page-intro.k12-wrapper h1,
.policy-page-intro.k12-wrapper .policy-intro-subtitle {
    text-align: left;
}

/* Title row: heading/subheading/date-pill stack on the left, an
   optional partner logo (.theme-partner-logo) parallel to it on the
   right. Center-aligned now that the hero heading is large — the text
   block and the logo card are closer in height, so top-aligning left a
   gap under the shorter column; centering balances the two instead.
   Wraps to a stacked layout (logo below the text) on narrow screens. */
.policy-page-intro.k12-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

/* container-type lets .conference-hero-heading size itself off this
   column's own rendered width (cqw) rather than viewport width — the
   column's width varies by page (grid logo card vs single logo card),
   so a vw-based size can't keep the heading on one line consistently. */
.policy-page-intro-text { flex: 1 1 320px; min-width: 0; container-type: inline-size; }

/* Theme statement is now plain text — no gradient/frame/box, just the
   heading on the page background (styled via the inherited
   .policy-section h2 rule, same as the other section headings). The
   old .k12-theme-highlight wrapper div was removed from the markup. */

/* Standalone Theme block, still used on beyond-academics.php (no
   schedule table there to nest it in — the other 4 sector pages moved
   their own Theme heading inside the schedule-table frame instead,
   markup-only, no shared CSS class for that variant anymore). Sits
   outside .explore-page-layout, directly under <main>, so it's the
   only <article class="policy-section"> at that level —
   .policy-section:last-of-type would otherwise strip its bottom
   spacing since nothing after it shares that parent. */
.policy-section.theme-intro-section {
    margin-bottom: 32px;
    padding-bottom: 0;
}

/* Optional partner-logo slot, parallel to the heading/subheading/date
   pill in .policy-page-intro (see the flex rule above). Reusable across
   the 6 sector agenda pages — just add .theme-partner-logo-card (with a
   .theme-partner-logo <img> inside) as a sibling of
   .policy-page-intro-text inside .policy-page-intro.k12-wrapper.
   The card gives the logo's flat background a rounded, bordered frame
   instead of floating as a bare rectangle against the page. */
.theme-partner-logo-card {
    flex-shrink: 0;
    margin-right: 28px;
    padding: 12px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    text-align: center;
}

/* Plain-text caption sitting above the partner logo inside the card
   (e.g. "In Collaboration with"). Muted + small so the logo stays
   the visual focus. */
.theme-partner-logo-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 8px;
}

.theme-partner-logo {
    display: block;
    height: 152px;
    width: auto;
    border-radius: 6px;
}

@media (max-width: 600px) {
    .theme-partner-logo-card { padding: 8px; }
    .theme-partner-logo-label { font-size: 0.6rem; margin-bottom: 6px; }
    .theme-partner-logo { height: 84px; }}

.k12-tabs-frame {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(20, 83, 188, 0.10);
    box-shadow: 0 30px 60px -34px rgba(20, 83, 188, 0.35), 0 2px 10px rgba(26, 26, 26, 0.05);
}

.k12-tabs-nav {
    padding: 22px 22px 0;
    background: #f4f6fb;
}

.k12-tabs-track {
    display: flex;
    gap: 6px;
    padding: 6px;
    background: #e8ecf5;
    border-radius: 999px;
    box-shadow: inset 0 1px 4px rgba(20, 83, 188, 0.10);
}

.k12-tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 20px;
    background: transparent;
    border: none;
    border-radius: 999px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-gray);
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.k12-tab-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(20, 83, 188, 0.12);
    color: var(--brand-blue);
    font-size: 0.78rem;
    font-weight: 800;
    flex-shrink: 0;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.k12-tab-btn:hover:not(.active) {
    color: var(--text-dark);
}

.k12-tab-btn.active {
    background: var(--brand-blue);
    color: #ffffff;
    box-shadow: 0 12px 24px -10px rgba(20, 83, 188, 0.55);
}

.k12-tab-btn.active .k12-tab-num {
    background: #ffffff;
    color: var(--brand-blue);
}

.k12-tab-date {
    font-size: 0.78rem;
    font-weight: 600;
    opacity: 0.65;
}

.k12-tab-btn:focus-visible {
    outline: 2px solid var(--brand-blue);
    outline-offset: 2px;
}

.k12-tab-panel { padding: 32px 32px 36px; }
.k12-tab-panel h2 { margin-bottom: 4px; }

.k12-day-focus {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brand-purple);
    margin: -6px 0 22px;
}

/* Modifier for when a Theme line sits stacked above the Focus line
   (see early-learning-education.php) — both share the same plain,
   non-bold font instead of the semibold default above. */
.k12-day-focus--plain { font-weight: 400; }

/* Rhythm for the stacked Theme/Focus (and K12's extra Objective) lines:
   a touch more air under the h2 (was collapsing to ~-2px, reading as
   glued to the heading), then the lines pulled close so a 2- or 3-line
   stack reads as one block instead of evenly-spaced paragraphs. Every
   current consumer (early-learning-education.php,
   study-abroad-international-schools.php, k12-school-education.php,
   higher-education.php, edu-architects-infrastructure.php) uses the
   --plain stacked pattern, not a bare single-line .k12-day-focus — so
   these two rules are load-bearing everywhere this component is used
   today, not a one-page patch. Confirmed 2026-08-28 heading-uniformity
   pass (a prior comment here claimed a single-line variant still
   existed on higher-education.php/k12-school-education.php — it
   doesn't). If a future sector page ever uses bare .k12-day-focus
   right after an h2 with no --plain modifier, it will NOT get the
   +10px override below and will collapse to a -6px/4px negative
   overlap instead — give it the --plain class too, or add a fallback
   rule, rather than leaving it on the base -6px margin. */
.k12-tab-panel h2 + .k12-day-focus--plain { margin-top: 10px; }
.k12-day-focus--plain + .k12-day-focus--plain { margin-top: -16px; }

.k12-table-scroll {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 16px 34px -26px rgba(26, 26, 26, 0.35);
    -webkit-overflow-scrolling: touch;
}

.k12-schedule-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
}

.k12-schedule-table thead th {
    background: var(--brand-blue);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    text-align: left;
    padding: 16px 18px;
    white-space: nowrap;
}

.k12-schedule-table tbody td {
    padding: 18px 18px;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--text-gray);
    text-align: left;
    vertical-align: top;
    border-top: 1px solid var(--border-color);
    transition: background-color 0.2s ease;
}

.k12-schedule-table tbody tr:nth-child(even) td { background: rgba(20, 83, 188, 0.025); }
.k12-schedule-table tbody tr:hover td { background: rgba(20, 83, 188, 0.06); }

.k12-time-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(20, 83, 188, 0.1);
    color: var(--brand-blue);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.k12-schedule-table td:first-child { white-space: nowrap; }

.k12-schedule-table td:nth-child(2) {
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    padding-left: 26px !important;
}

.k12-schedule-table td:nth-child(2)::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 24px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--grad-main);
}

/* Break / Networking Lunch rows — visually de-emphasized */
.k12-schedule-table tr.k12-row-break td {
    background: #fbfbfc !important;
    font-style: italic;
    color: var(--text-light);
}

.k12-schedule-table tr.k12-row-break .k12-time-badge {
    background: rgba(0, 0, 0, 0.06);
    color: var(--text-light);
    font-style: normal;
}

.k12-schedule-table tr.k12-row-break td:nth-child(2) {
    font-weight: 600;
    color: var(--text-light);
}

/* Desktop-table dot only — mobile stacks cards and doesn't render this dot */
@media (min-width: 721px) {
    .k12-schedule-table tr.k12-row-break td:nth-child(2)::before { background: var(--text-light); opacity: 0.4; }}

.k12-subpoints {
    margin: 10px 0 0;
    padding-left: 20px;
}

.k12-subpoints li {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 4px;
}

.k12-cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* Stacked-card table below tablet width */
@media (max-width: 720px) {
    .k12-table-scroll { border: none; box-shadow: none; overflow: visible; }
    .k12-schedule-table,
    .k12-schedule-table thead,
    .k12-schedule-table tbody,
    .k12-schedule-table th,
    .k12-schedule-table td,
    .k12-schedule-table tr {
        display: block;
        width: 100%;
    }
    .k12-schedule-table { min-width: 0; }
    .k12-schedule-table thead { position: absolute; top: -9999px; left: -9999px; }
    .k12-schedule-table tr {
        margin-bottom: 16px;
        border: 1px solid var(--border-color);
        border-radius: 16px;
        overflow: hidden;
        background: #ffffff;
        box-shadow: 0 14px 28px -24px rgba(26, 26, 26, 0.4);
    }
    .k12-schedule-table tbody tr:nth-child(even) td { background: #ffffff; }
    .k12-schedule-table tr.k12-row-break td { background: #fbfbfc !important; }
    .k12-schedule-table td {
        border-top: 1px solid var(--border-color);
        padding: 12px 16px;
    }
    .k12-schedule-table td:nth-child(2) { padding-left: 16px !important; }
    .k12-schedule-table td:first-child { border-top: none; }
    .k12-schedule-table td::before,
    .k12-schedule-table td:nth-child(2)::before {
        content: attr(data-label);
        position: static;
        width: auto;
        height: auto;
        border-radius: 0;
        display: block;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.6px;
        text-transform: uppercase;
        color: var(--brand-purple);
        background: none;
        margin-bottom: 6px;
    }}

@media (max-width: 600px) {
    /* Scoped to <main> only (not `.k12-wrapper` alone) — the hero title
       block also carries `.k12-wrapper` (`.policy-page-intro.k12-wrapper`)
       and must keep its own nav-height-aware top padding from the base
       `.policy-page-intro` rule; a bare `.k12-wrapper` selector here would
       win the cascade (equal specificity, later in source) and clip the H1
       under the fixed navbar. */
    main.k12-wrapper { padding: 30px var(--edge-pad) 60px; }
    .k12-tabs-nav { padding: 16px 16px 0; }
    .k12-tab-btn  { padding: 12px 10px; font-size: 0.85rem; gap: 6px; }
    .k12-tab-panel { padding: 22px 18px 26px; }}

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

/* --- Shared section utilities --- */
/* padding-bottom deliberately smaller than padding-top: adjacent
   .as-section-spaced siblings were each contributing a full 96px, stacking
   to a 192px gap between sections (e.g. In Collaboration With -> Partners ->
   What Makes EGN Unique on exhibitor-profile.php, and the equivalent stacks on
   conference.php / exhibitor-market-insights.php / exhibitor-marketing-plan.php).
   The next section's own padding-top now does
   the job of separating sections; padding-bottom just keeps a section's own
   content from sitting flush against the next section's edge (matters most
   for .as-section-tinted, whose background would otherwise end right at the
   last line of content). */
.as-section-spaced  { padding-top: 96px; padding-bottom: 40px; }
.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 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: calc(var(--nav-height) + 40px) var(--edge-pad) 60px;
    background: linear-gradient(180deg, #f6f8ff 0%, #ffffff 100%);
    box-sizing: border-box;
    border-top: 4px solid transparent;
    border-image: var(--grad-main) 1;
    text-align: left;
}

.as-intro-section--no-divider {
    border-image-width: 4px 0 0 0;
}

.as-intro-inner {
    max-width: 900px;
    width: 100%;
    margin: 0;
}

.as-intro-heading {
    font-size: var(--h1-size);
    font-weight: var(--h1-weight);
    color: var(--text-dark);
    line-height: var(--h1-line-height);
    margin-bottom: 16px;
    letter-spacing: var(--h1-tracking);
}

/* Conference hero heading: size scales off the text column's own width
   (not viewport width) so "Architecting Viksit Bharat" always stays on
   one line and the heading renders as exactly 2 lines at any breakpoint. */
.as-intro-inner--split .as-intro-heading {
    font-size: clamp(1.9rem, 8.5cqw, 3.6rem);
}

.as-intro-inner--split .as-intro-heading .as-heading-accent {
    display: block;
    margin-top: 4px;
    font-size: clamp(1.3rem, 4.8cqw, 2.2rem);
}

/* Animated brand-gradient heading text (GradientText-style, ConnectX gradient) */
.as-heading-accent {
    background-image: linear-gradient(90deg, var(--brand-blue), var(--brand-purple), var(--brand-red), var(--brand-blue));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: as-gradient-flow 5s ease-in-out infinite alternate;
}

@keyframes as-gradient-flow {
    from { background-position: 0% 50%; }
    to   { background-position: 100% 50%; }
}

@media (prefers-reduced-motion: reduce) {
    .as-heading-accent { animation: none; }}

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

.as-intro-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    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;
}

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

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

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

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

.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;
    width: 100%;
}

.as-vision-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 48px 36px;
    box-shadow: var(--shadow-card);
    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;
}

.as-vision-grid--slim .as-vision-card {
    padding: 28px 30px;
}

.as-vision-grid--slim .as-vision-card .as-card-num { margin-bottom: 10px; }

.as-vision-grid--slim .as-vision-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
}

.as-vision-grid--slim .as-vision-icon svg { width: 24px; height: 24px; }

#product-categories .section-header {
    text-align: center;
    max-width: 820px;
    margin-inline: auto;
}

#product-categories .section-header h2 { text-align: center; }

#product-categories .section-header p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.as-vision-grid--slim .as-vision-card h3 { margin-bottom: 10px; }

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

/* 4-up variant (e.g. Market Insights segment breakdown) — degrades to the
   standard .as-pillar-grid 2-col / 1-col responsive rules below. */
.as-pillar-grid--4up { grid-template-columns: repeat(4, 1fr); }

.as-pillar-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 36px 30px 38px;
    box-shadow: var(--shadow-card);
    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;
}

.as-pillar-card p + p { margin-top: 14px; }

/* Closing pull-quote line some cards carry after the body paragraph —
   left-aligned and accented, unlike the justified gray body text. */
.as-pillar-card p.as-pillar-punchline {
    font-style: italic;
    font-weight: 600;
    color: var(--brand-blue);
    text-align: left;
}

/* --- Product Areas grid (12-up) --- */
/* Icon + label card, no description — denser than .as-pillar-card, for
   listing a large flat set of named categories (exhibitor-profile.php's
   "Product Areas" section, visitor-product-category.php's "Product
   Categories" section). Same left accent-bar-on-hover treatment as
   .as-pillar-card so it reads as the same "card" component family. */
.pa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    width: 100%;
}

.pa-card {
    background: #ffffff;
    border: 1.5px solid #edf0f6;
    border-radius: var(--radius-md);
    padding: 30px 26px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pa-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;
}

.pa-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);
}

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

.pa-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

.pa-card-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Cycle the three brand colours across the grid, same convention as
   .as-pi--blue/purple/red used for the pillar cards above. */
.pa-card-icon--blue   { background: rgba(20, 83, 188, 0.09); }
.pa-card-icon--purple { background: rgba(130, 41, 102, 0.09); }
.pa-card-icon--red    { background: rgba(213, 16, 36, 0.09); }

.pa-card-icon--blue   svg { stroke: var(--brand-blue); }
.pa-card-icon--purple svg { stroke: var(--brand-purple); }
.pa-card-icon--red    svg { stroke: var(--brand-red); }

.pa-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.35;
    margin: 0;
    /* Override the sitewide `p, li { text-align: justify }` reset — on a
       short wrapped label it stretches word-spacing on every line but the
       last, which reads as a bug. */
    text-align: left;
    transition: color 0.25s ease;
}

.pa-card:hover .pa-card-title { color: var(--brand-blue); }

@media (max-width: 1100px) {
    .pa-grid { grid-template-columns: repeat(2, 1fr); }}

@media (max-width: 600px) {
    .pa-grid      { grid-template-columns: 1fr; gap: 14px; }
    .pa-card      { padding: 24px 22px; gap: 14px; }
    .pa-card-icon { width: 44px; height: 44px; }
    .pa-card-icon svg { width: 20px; height: 20px; }
    .pa-card-title     { font-size: 0.95rem; }}

/* --- 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 var(--edge-pad);
    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 {
    width: 100%;
    position: relative;
    z-index: 1;
}

.as-cta-eyebrow {
    display: inline-block;
    font-size: var(--hero-eyebrow-size);
    font-weight: var(--hero-eyebrow-weight);
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: var(--hero-eyebrow-tracking);
    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: var(--h1-size);
    font-weight: var(--h1-weight);
    color: #ffffff;
    line-height: var(--h1-line-height);
    margin-bottom: 22px;
    letter-spacing: var(--h1-tracking);
}

.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;
}

/* Compact CTA bar — icon + short heading on the left, both CTA buttons
   on the right, inset in a slim rounded card instead of the full-bleed
   hero-style .as-cta-section above. Shared across pages (About Summit,
   Exhibitor Market Insights). */
.as-cta-bar {
    padding: 40px var(--edge-pad);
    box-sizing: border-box;
    width: 100%;
}

.as-cta-bar-card {
    width: 100%;
    /* Was unbounded, so on wide desktop viewports it stretched edge-to-edge
       like the full-bleed .as-cta-section hero above it -- defeating the
       "slim inset card" this comment block already claimed. Capping the
       width and centering it makes it read as a compact bar again. */
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #0a1836 0%, #1453BC 35%, #591b45 70%, #0a1836 100%);
    background-size: 300% 300%;
    animation: as-grad-shift 12s ease infinite;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(20, 83, 188, 0.25);
    padding: 22px 40px;
    position: relative;
    overflow: hidden;
}

.as-cta-bar-left {
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    z-index: 1;
}

.as-cta-bar-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.as-cta-bar-icon svg { width: 24px; height: 24px; }

.as-cta-bar-heading {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.01em;
}

.as-cta-bar-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.as-cta-bar-buttons .as-cta-btn {
    height: 46px;
    padding: 0 26px;
    font-size: 0.9rem;
}

.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); }}

@media (max-width: 991px) {
    .as-section-spaced { padding-top: 76px; padding-bottom: 32px; }
    .as-overview-section { padding-top: 76px; padding-bottom: 32px; }}

@media (max-width: 768px) {
    .as-intro-section  { padding: calc(var(--nav-height) + 32px) var(--edge-pad) 40px; }
    .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: 28px; }}

@media (max-width: 600px) {
    .as-intro-section  { padding: calc(var(--nav-height) + 24px) var(--edge-pad) 32px; }
    .as-intro-desc     { font-size: 1rem; margin-bottom: 32px; }
    .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-cta-section    { padding: 80px var(--edge-pad); }
    .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-cta-bar-card    { flex-direction: column; align-items: stretch; text-align: center; padding: 28px 24px; }
    .as-cta-bar-left    { flex-direction: column; text-align: center; }
    .as-cta-bar-heading { font-size: 1.3rem; }
    .as-cta-bar-buttons { flex-direction: column; align-items: stretch; }
    .as-cta-bar-buttons .as-cta-btn { justify-content: center; height: 50px; }
    .as-section-spaced { padding-top: 56px; padding-bottom: 24px; }

    /* Conference hero heading ("Catalyst 2047 / Architecting Viksit
       Bharat"): centered on mobile only, per request — the paragraph,
       "Four Core Pillars" eyebrow, and meta chips below it stay
       left-aligned since only the heading itself was asked for. */
    .as-intro-inner--split .as-intro-heading { text-align: center; }}

/* --- Market Insights page (exhibitor-market-insights.php) --- */
/* "India's Education Market at a Glance" intro — center-aligned, unlike the
   default left-aligned .section-header used elsewhere on this page/site.
   No max-width on the container itself (unlike #visitors' equivalent
   override) so the long heading has room to sit on one line on desktop;
   the paragraph gets its own narrower max-width below for readability. */
#mi-glance .section-header {
    text-align: center;
    max-width: none;
    margin-inline: auto;
}

#mi-glance .section-header h2 {
    text-align: center;
    white-space: nowrap;
}

#mi-glance .section-header p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 600px) {
    /* Let the heading wrap again on phones — nowrap would otherwise force
       tiny type or horizontal overflow at narrow widths. */
    #mi-glance .section-header h2 { white-space: normal; }}

/* --- Product Areas cards (exhibitor-profile.php, ported from the
   retired exhibitor-visitor-profile.php) --- */
/* Break row — de-emphasize the hook/title/format columns to match the
   base table's existing nth-child(2) treatment. */
.efs-schedule-table tr.k12-row-break td:nth-child(2),
.efs-schedule-table tr.k12-row-break td:nth-child(3) {
    font-weight: 600;
    font-style: italic;
    color: var(--text-light);
}

.efs-schedule-table tr.k12-row-break .efs-format-badge {
    background: rgba(0, 0, 0, 0.06);
    color: var(--text-light);
}

@media (min-width: 721px) {
    .efs-schedule-table tr.k12-row-break td:nth-child(3)::before { background: var(--text-light); opacity: 0.4; }}

/* ======================================= */
/* LOCATION / VISIT US SECTION             */
/* Two-column: rotating photo carousel (left) + map with a floating       */
/* venue-details card (right) — mirrors a photo-left/map-right reference  */
/* layout with a floating location card over the map corner.             */
/* ======================================= */
.as-location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.as-location-carousel {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    aspect-ratio: 4 / 3.1;
}

.as-location-carousel-track { width: 100%; height: 100%; position: relative; }

.as-location-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.as-location-slide.active { opacity: 1; pointer-events: auto; }

.as-location-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.as-location-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(10, 24, 54, 0.55);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
    z-index: 2;
}

.as-location-carousel-nav:hover { background: rgba(10, 24, 54, 0.8); }
.as-location-carousel-nav svg { width: 16px; height: 16px; fill: #ffffff; }
.as-location-carousel-nav--prev { left: 14px; }
.as-location-carousel-nav--next { right: 14px; }

.as-location-carousel-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 2;
}

.as-location-carousel-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.as-location-carousel-dots button.active {
    background: #ffffff;
    transform: scale(1.25);
}

.as-location-map-wrap {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.as-location-map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
    display: block;
}

.as-location-card {
    position: absolute;
    left: 20px;
    top: 20px;
    max-width: 300px;
    z-index: 2;
    background: #ffffff;
    border-radius: var(--radius-sm);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

/* Small floating "locality" pill in the map's top-right corner, paired
   with .as-location-card (top-left) — mirrors a reference map layout
   with a venue-details card and a locality pill sharing the top edge. */
.as-location-pin-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    max-width: calc(100% - 40px);
    background: #ffffff;
    border-radius: 999px;
    padding: 9px 16px 9px 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.as-location-pin-badge svg { width: 16px; height: 16px; fill: var(--brand-red); flex-shrink: 0; }

.as-location-card-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(213, 16, 36, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.as-location-card-icon svg { width: 17px; height: 17px; fill: var(--brand-red); }

.as-location-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 3px;
}

.as-location-card-addr {
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--text-gray);
    margin: 0 0 8px;
}

.as-location-card a.as-location-directions {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--brand-blue);
    text-decoration: none;
}

.as-location-card a.as-location-directions:hover { text-decoration: underline; }

@media (max-width: 900px) {
    .as-location-grid { grid-template-columns: 1fr; }
    .as-location-map-wrap iframe { min-height: 280px; }
}

@media (max-width: 640px) {
    .as-location-card { position: static; max-width: none; margin-top: 14px; box-shadow: none; border: 1.5px solid var(--border); }
    .as-location-pin-badge { top: 12px; right: 12px; padding: 7px 12px 7px 10px; font-size: 0.76rem; }
    .as-location-map-wrap { display: flex; flex-direction: column; }
}

/* =========================================================================
   PARTNER REGISTRATION MODAL ("Express Your Interest") — universal component
   ---------------------------------------------------------------------
   Shared by every page via inc/partner-registration-modal.php, included
   once from EGN_ConnectX_footer.php so it renders sitewide without
   touching each page individually. Opens from whatever ".js-pf-open"
   trigger exists on a page (e.g. the sector pages' "Express Your
   Interest" buttons) — this component carries no trigger UI of its own.
   Frontend-only, no submission endpoint (see the partial's own script
   comment) — deliberately reuses the existing
   .form-row/.input-group/.form-control/.input-group.full-width/
   .site-cta-btn skin already defined above; the overlay/dialog shell and
   the "track" pill radio group below are the only new selectors this
   component introduces. Namespace: .pf-*.
   ========================================================================= */

.pf-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(15, 15, 20, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--trans-base), visibility var(--trans-base);
}
.pf-modal-overlay.is-open { opacity: 1; visibility: visible; pointer-events: auto; }

.pf-modal {
    width: 100%;
    max-width: 620px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 40px 40px 32px;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
    transform: translateY(24px) scale(0.98);
    transition: transform var(--trans-base);
}
.pf-modal-overlay.is-open .pf-modal { transform: translateY(0) scale(1); }
.pf-modal::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: var(--grad-main);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.pf-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #f2f2f4;
    color: var(--text-dark);
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--trans-base), color var(--trans-base);
}
.pf-modal-close:hover { background: var(--brand-light); color: var(--brand-red); }

.pf-modal-heading {
    font-family: inherit;
    font-size: clamp(1.3rem, 2.4vw, 1.7rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin: 0 0 10px;
}
.pf-modal-sub {
    font-size: 0.92rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0 0 24px;
}

/* Track "radial button" group — reuses .input-group.full-width around it;
   only the pill/dot skin below is new. Hidden native radio sits on top of
   the pill via absolute positioning so it stays keyboard/screen-reader
   accessible while the pill supplies the checked-state visuals. */
.pf-track-legend {
    display: block;
    margin-bottom: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}
.pf-track-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 4px;
}
.pf-track-option { position: relative; }
.pf-track-option input[type="radio"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
}
.pf-track-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border-color);
    background: #fafafa;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
    transition: background-color var(--trans-base), border-color var(--trans-base), color var(--trans-base), box-shadow var(--trans-base);
}
.pf-track-dot {
    width: 16px;
    height: 16px;
    min-width: 16px;
    border-radius: 50%;
    border: 2px solid #c9c9cf;
    background: #ffffff;
    flex-shrink: 0;
    position: relative;
    transition: border-color var(--trans-base), background-color var(--trans-base);
}
.pf-track-dot::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: #ffffff;
    transform: scale(0);
    transition: transform var(--trans-base);
}
.pf-track-option input[type="radio"]:checked ~ .pf-track-pill {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(20, 83, 188, 0.22);
}
.pf-track-option input[type="radio"]:checked ~ .pf-track-pill .pf-track-dot {
    border-color: #ffffff;
    background: var(--brand-blue);
}
.pf-track-option input[type="radio"]:checked ~ .pf-track-pill .pf-track-dot::after { transform: scale(1); }
.pf-track-option input[type="radio"]:focus-visible ~ .pf-track-pill {
    outline: 2px solid var(--brand-blue);
    outline-offset: 2px;
}

.pf-privacy-note {
    font-size: 0.78rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 16px 0 20px;
}

/* Submit button hugs its own content instead of stretching full-width —
   .site-cta-btn sets no width of its own (display: inline-flex), so this
   wrapper just centers it the way .pf-success (text-align: center) already
   centers its own Close button. */
.pf-submit-row { text-align: center; }

.pf-success { display: none; text-align: center; padding: 18px 4px 4px; }
.pf-success.is-visible { display: block; }
.pf-success-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--brand-light);
    display: flex;
    align-items: center;
    justify-content: center;
}
.pf-success-icon svg { width: 30px; height: 30px; fill: none; stroke: var(--brand-blue); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.pf-success h3 { font-size: 1.2rem; font-weight: 800; color: var(--text-dark); margin: 0 0 8px; }
.pf-success p { font-size: 0.92rem; color: var(--text-gray); line-height: 1.6; margin: 0 0 4px; }

@media (max-width: 600px) {
    .pf-modal { padding: 34px 22px 26px; }
    .pf-track-grid { grid-template-columns: 1fr; }

    /* "Express Your Interest" modal heading — .pf-modal-close is absolutely
       positioned (top-right), so centering the heading block below it is
       layout-safe. Same mobile-centering recipe as Task 1 elsewhere. */
    .pf-modal-heading,
    .pf-modal-sub { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
    .pf-modal-overlay,
    .pf-modal,
    .pf-track-pill,
    .pf-track-dot,
    .pf-track-dot::after { transition: none; }
}