:root {
    --navy: #1968b1;
    --navy-deep: #14205e;
    --accent: #4e2a84;
    --accent-dark: #c93a28;
    --bg-soft: #f4f6fb;
    --ink: #1e293b;
    --ink-soft: #51597a;
    --line: #e6e8f2;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-pill: 999px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--ink);
    background: var(--bg-soft);
    margin: 0;
}

h1,
h2,
h3,
h4,
.header-font {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: var(--navy);
}

a {
    text-decoration: none;
}

/* ── Top bar ─────────────────────────────────────────────── */
.topbar {
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 50;
}

.topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-brand {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--navy);
}

.topbar-brand span {
    color: var(--accent);
}

.btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff !important;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 26px;
    border-radius: var(--radius-pill);
    border: none;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    box-shadow: 0 8px 18px rgba(232, 75, 55, .25);
}

.btn-pill:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    color: #fff;
}

/* ── Section background wrappers ─────────────────────────── */
/* Each "wrap" spans full width and holds one background treatment;
           the .block inside keeps the same 1200px max-width layout. */
.sec-wrap {
    position: relative;
    overflow: hidden;
}

.sec-wrap.wrap-soft {
    background: var(--bg-soft);
}

.sec-wrap.wrap-white {
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.sec-wrap.wrap-tint {
    background: white;
}

.sec-wrap.wrap-dots {
    background-color: #fbfbfe;
    background-image: radial-gradient(rgba(29, 41, 124, .09) 1.4px, transparent 1.4px);
    background-size: 22px 22px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.sec-wrap.wrap-navy {
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, .08), transparent 45%),
        linear-gradient(120deg, var(--navy), var(--navy-deep));
}

.sec-wrap.wrap-navy .section-label {
    color: #ffd9cf;
}

.sec-wrap.wrap-navy h2.section-title {
    color: #fff;
}

.sec-wrap.wrap-navy .section-sub {
    color: rgba(255, 255, 255, .8);
}

.sec-wrap.wrap-diagonal {
    background: linear-gradient(180deg, #fff 0%, #fff 55%, var(--bg-soft) 55%, var(--bg-soft) 100%);
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 40px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--accent);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 18px;
}

.hero h1 {
    font-size: 40px;
    line-height: 1.2;
    margin: 0 0 14px;
}

.hero h1 em {
    font-style: normal;
    color: var(--accent);
}

.hero p.lede {
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 24px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 26px;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(29, 41, 124, .05);
}

.hero-badge i {
    color: var(--accent);
    font-size: 16px;
}

.hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    display: block;
    height: 420px;
}

.hero-image-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: rgba(255, 255, 255, .95);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}

/* ── Section shell ───────────────────────────────────────── */
section.block {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 24px;
    position: relative;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: 28px;
    margin: 0 0 8px;
}

.section-sub {
    color: var(--ink-soft);
    font-size: 15px;
    max-width: 640px;
    margin-bottom: 32px;
}

/* ── Destination tags ────────────────────────────────────── */
.dest-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.dest-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    padding: 10px 20px 10px 12px;
    font-weight: 700;
    font-size: 14px;
    color: var(--navy);
    box-shadow: 0 6px 16px rgba(29, 41, 124, .06);
}

.dest-chip .flag {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: var(--bg-soft);
}

/* ── Why attend cards ────────────────────────────────────── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.why-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 22px;
    border: 1px solid var(--line);
    box-shadow: 0 6px 16px rgba(29, 41, 124, .05);
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: transform .15s ease, box-shadow .15s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 26px rgba(29, 41, 124, .1);
}

.why-icon {
    flex: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(232, 75, 55, .1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.why-card span {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.5;
}

/* ── Stats ───────────────────────────────────────────────── */
.stats-band {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    color: #fff;
}

.stats-band .stat-num {
    font-size: 28px;
    font-weight: 800;
    font-family: "Montserrat", sans-serif;
    color: #ffb199;
}

.stats-band .stat-label {
    font-size: 13px;
    opacity: .85;
    margin-top: 4px;
}

/* ── Register form card ──────────────────────────────────── */
.register-shell {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(29, 41, 124, .12);
    padding: 8px;
}

.register-inner {
    border: 2px dashed rgba(232, 75, 55, .25);
    border-radius: 18px;
    padding: 28px;
}

.register-inner h4 {
    text-align: center;
    font-size: 18px;
    margin-bottom: 4px;
}

.register-inner .sub {
    text-align: center;
    color: var(--ink-soft);
    font-size: 13px;
    margin-bottom: 22px;
}

#event-form .form-control,
#event-form .form-select,
#event-form select {
    border-radius: 12px !important;
    border: 1px solid #dfe2ee !important;
    background: #fbfbfe;
    font-size: 14px;
    padding: 11px 14px;
    margin-bottom: 12px;
}

#event-form .form-control:focus,
#event-form .form-select:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 3px rgba(232, 75, 55, .12) !important;
}

#event-form ::placeholder {
    color: #94a0c2;
}

.checkbox-label {
    font-size: 13px;
    color: var(--ink-soft);
}

.btn-register {
    width: 100%;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-pill);
    padding: 13px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 10px 22px rgba(232, 75, 55, .28);
    transition: background .15s ease, transform .15s ease;
}

.btn-register:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.btn-register:disabled {
    background: #cbd2e6;
    box-shadow: none;
    cursor: not-allowed;
}

/* ── Reserve / contact strip ─────────────────────────────── */
.reserve-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 6px 16px rgba(29, 41, 124, .05);
}

.reserve-card i {
    color: var(--accent);
    font-size: 20px;
}

.reserve-card strong {
    display: block;
    font-size: 13px;
    color: var(--ink-soft);
    font-weight: 600;
}

.reserve-card span {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
}

/* ── Map card ────────────────────────────────────────────── */
.map-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(29, 41, 124, .1);
    border: 1px solid var(--line);
}

.map-card iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}

/* ── Logo marquee ────────────────────────────────────────── */
.logo-scroll {
    overflow: hidden;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    padding: 22px 0;
    box-shadow: 0 6px 16px rgba(29, 41, 124, .05);
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scrollLogos 26s linear infinite;
}

@keyframes scrollLogos {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.partner-logo {
    padding: 0 26px;
    display: flex;
    align-items: center;
}

/* ── Previous expo / highlights ──────────────────────────── */
.expo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.expo-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 6px 16px rgba(29, 41, 124, .05);
    transition: transform .15s ease, box-shadow .15s ease;
}

.expo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 26px rgba(29, 41, 124, .1);
}

.expo-card .expo-thumb {
    position: relative;
    height: 150px;
    background: linear-gradient(135deg, var(--navy), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
}

.expo-card .expo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.expo-card .expo-thumb i {
    font-size: 30px;
    color: rgba(255, 255, 255, .85);
}

.expo-card .expo-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, .92);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}

.expo-card .expo-body {
    padding: 16px 18px 20px;
}

.expo-card .expo-date {
    font-size: 12px;
    font-weight: 700;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.expo-card .expo-date i {
    color: var(--accent);
}

.expo-card h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 6px;
    line-height: 1.4;
}

.expo-card p {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.6;
    margin: 0;
}

/* ── CTA banner ──────────────────────────────────────────── */
.cta-banner {
    background: linear-gradient(120deg, var(--navy), var(--navy-deep));
    border-radius: var(--radius-lg);
    padding: 40px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-banner h3 {
    color: #fff;
    margin: 0 0 6px;
    font-size: 22px;
}

.cta-banner p {
    margin: 0;
    color: rgba(255, 255, 255, .75);
    font-size: 14px;
}

footer.site-footer {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, .8);
    padding: 26px 0;
    font-size: 13px;
}

footer.site-footer a {
    color: rgba(255, 255, 255, .8);
    margin-left: 16px;
}

footer.site-footer a:hover {
    color: #fff;
}

.select2-container--bootstrap-5 {
    width: 100% !important;
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-image img {
        height: 300px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-band {
        grid-template-columns: repeat(2, 1fr);
    }

    .expo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .stats-band {
        grid-template-columns: 1fr 1fr;
        padding: 28px 20px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
    }

    .expo-grid {
        grid-template-columns: 1fr;
    }
}