:root {
    --navy: #1B3B6F;
    --navy-deep: #102A52;
    --navy-darker: #0B1F3D;
    --teal: #2AACB3;
    --teal-dark: #1E8891;
    --teal-light: #5FC9CE;
    --white: #FFFFFF;
    --bg-soft: #F2F7F9;
    --text-body: #5E6C7C;
    --text-dark: #122744;
    --rule: #E2E9EF;
    --shadow: 0 16px 34px -18px rgba(16, 42, 82, 0.30);
    --shadow-hover: 0 20px 40px -16px rgba(16, 42, 82, 0.40);
    --radius: 8px;
}

#sp-top-bar {
    background: var(--navy-darker);
    color: #B9C7DA;
}

#sp-top-bar a {
    color: #B9C7DA;
}

#sp-top-bar a:hover {
    color: var(--teal-light);
}

#sp-top2 #mod-custom257 {
    display: flex;
    gap: 22px;
}

#sp-header > .container {
    max-width: 1320px;
}

header#sp-header {
    background-color: var(--navy) !important;
}

#sp-header #sp-menu .sp-megamenu-wrapper .sp-megamenu-parent .sp-menu-item > a,
#sp-header #sp-menu .sp-megamenu-wrapper .sp-megamenu-parent .sp-menu-item > span {
    color: #DCE6F2;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s;
}

#sp-header #sp-menu .sp-megamenu-wrapper .sp-megamenu-parent .sp-menu-item > a:hover,
#sp-header #sp-menu .sp-megamenu-wrapper .sp-megamenu-parent .sp-menu-item > span:hover {
    color: var(--white);
    border-color: var(--teal);
}

.hero-meta {
    margin-top: 28px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-meta div {
    font-family: 'Inter';
    font-weight: 600;
    font-size: 11px;
    color: #9FB4CE;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-meta div span {
    display: block;
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0;
    color: #fff;
    text-transform: none;
    margin-top: 4px;
}

.section-head {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 38px;
    flex-wrap: wrap;
}

.section-head .num {
    font-family: 'Inter';
    font-weight: 700;
    font-size: 13px;
    color: var(--teal-dark);
}

.section-head h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
}

.section-head h2 .accent {
    color: var(--teal-dark);
}

.section-head .rule {
    flex: 1;
    height: 1px;
    background: var(--rule);
    min-width: 40px;
}

/* ---------- pricing cards ---------- */
.tickets {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 26px;
}

.ticket {
    position: relative;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--rule);
    padding: 30px 28px;
    overflow: hidden;
}

.ticket::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--teal);
}

.ticket:nth-child(2)::before {
    background: var(--navy);
}

.badge-update {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--bg-soft);
    color: var(--teal-dark);
    font-family: 'Inter';
    font-weight: 700;
    font-size: 10.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 20px;
    border: 1px solid var(--rule);
}

.ticket-tag {
    font-family: 'Inter';
    font-weight: 700;
    font-size: 11.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal-dark);
}

.ticket:nth-child(2) .ticket-tag {
    color: var(--navy);
}

.ticket h3 {
    font-size: 24px;
    margin-top: 8px;
}

.ticket p {
    margin: 14px 0 0;
    font-size: 14.5px;
    color: var(--text-body);
}

.ticket .price-line {
    margin-top: 22px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding-top: 18px;
    border-top: 1px solid var(--rule);
}

.ticket .price-line .amt {
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 28px;
    color: var(--text-dark);
}

.ticket .price-line .unit {
    font-size: 12.5px;
    color: var(--text-body);
}

/* ---------- includes ---------- */
.includes {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 24px;
}

.include-card {
    background: var(--white);
    border: 1px solid var(--rule);
    padding: 26px 22px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.include-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.include-card .icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--teal), var(--navy));
    display: flex;
    align-items: center;
    justify-content: center;
}

.include-card .icon svg {
    width: 22px;
    height: 22px;
}

.include-card h3 {
    font-size: 17px;
    margin-top: 16px;
}

.include-card p {
    font-size: 14px;
    color: var(--text-body);
    margin-top: 8px;
    margin-bottom: 0;
}

.include-note {
    margin-top: 30px;
    padding: 18px 20px;
    border-left: 4px solid var(--teal);
    background: #EAF6F7;
    font-size: 14px;
    color: var(--text-dark);
    border-radius: 0 6px 6px 0;
}

/* ---------- hotel ---------- */
.hotel-card {
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
}

.hotel-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hotel-body {
    display: grid;
    grid-template-columns:1fr 1fr;
}

.hotel-info {
    padding: 36px clamp(20px, 4vw, 40px);
}

.hotel-rate {
    background: linear-gradient(135deg, var(--navy), var(--teal-dark));
    color: #fff;
    padding: 36px clamp(20px, 4vw, 40px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

.hotel-info .event-name {
    font-family: 'Inter';
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal-dark);
}

.hotel-info h3 {
    font-size: 22px;
    margin-top: 10px;
}

.hotel-dates {
    margin-top: 18px;
    display: flex;
    gap: 24px;
}

.hotel-dates div {
    font-family: 'Inter';
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-body);
}

.hotel-dates div span {
    display: block;
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
    text-transform: none;
    margin-top: 3px;
}

.hotel-rate .rate-amt {
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 36px;
}

.hotel-rate .rate-unit {
    font-size: 13px;
    opacity: .85;
}

.hotel-rate p {
    font-size: 13.5px;
    opacity: .9;
    margin: 0;
}

#sp-bottom > .container, #sp-footer > .container {
    max-width: 1320px;
}

#sp-footer,
#sp-bottom {
    background: var(--navy-darker);
    color: #7C93B0;
}

#sp-footer .container-inner {
    padding: 30px 0 30px;
    border-top: 1px solid #24406B;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-brand {
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 18px;
    color: #fff;
}

.footer-addr {
    margin-top: 12px;
    font-size: 13.5px;
    color: #9FB4CE;
    line-height: 1.8;
}

.footer-addr a {
    color: var(--teal-light);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--teal) !important;
    border-color: var(--teal) !important;
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--teal-dark) !important;
    border-color: var(--teal-dark) !important;
}

@media (max-width: 860px) {
    .tickets {
        grid-template-columns:1fr;
    }

    .includes {
        grid-template-columns:1fr;
    }

    .attend-choice {
        grid-template-columns:1fr;
    }

    .hotel-body {
        grid-template-columns:1fr;
    }

    .hotel-image {
        height: 220px;
    }

    #sp-top2 {
        display: none;
    }
}

@media (max-width: 1200px) {
    #sp-header .logo-image {
        height: 36px !important;
    }
}