@charset "UTF-8";
/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Rubik", sans-serif;
  --nav-font: "Kanit", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #fbfdff; /* Background color for the entire website, including individual sections */
  --default-color: #344863; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0a1b34; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0e74d6; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --accent-secondary-color: #35b9ff;
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --surface-muted-color: #edf4fc;
  --surface-soft-color: #ffffff;
  --surface-elevated-color: linear-gradient(180deg, #ffffff 0%, #f2f7fd 100%);
  --header-surface-color: rgba(241, 247, 253, 0.94);
  --panel-shadow-color: rgba(16, 38, 66, 0.08);
  --panel-shadow-strong-color: rgba(11, 99, 206, 0.14);
  --secondary-badge-background: rgba(183, 87, 22, 0.12);
  --secondary-badge-color: #b75716;
  --theme-toggle-background: rgba(255, 255, 255, 0.94);
  --theme-toggle-color: #0d1d38;
  --theme-toggle-border: rgba(11, 99, 206, 0.16);
  --theme-toggle-shadow: 0 18px 35px rgba(16, 38, 66, 0.18);
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #102845; /* The default color of the main navmenu links */
  --nav-hover-color: #0e74d6; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #173053; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0e74d6; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
.light-background {
  --background-color: var(--surface-muted-color);
  --surface-color: var(--surface-soft-color);
}

.dark-background {
  --background-color: #071528;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #10233f;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

@media (max-width: 576px) {
  :root {
    scroll-behavior: auto;
  }
}

html {
  color-scheme: light;
}

html[data-theme=dark] {
  color-scheme: dark;
  --background-color: #07111d;
  --default-color: #c3d5ec;
  --heading-color: #f3f8ff;
  --accent-color: #5caeff;
  --accent-secondary-color: #1fd0ff;
  --surface-color: #0d1a2c;
  --contrast-color: #ffffff;
  --surface-muted-color: #091524;
  --surface-soft-color: #102136;
  --surface-elevated-color: linear-gradient(180deg, #12253d 0%, #0a1627 100%);
  --header-surface-color: rgba(9, 21, 36, 0.92);
  --panel-shadow-color: rgba(0, 0, 0, 0.28);
  --panel-shadow-strong-color: rgba(0, 0, 0, 0.38);
  --secondary-badge-background: rgba(255, 177, 97, 0.14);
  --secondary-badge-color: #ffc587;
  --theme-toggle-background: rgba(10, 22, 39, 0.92);
  --theme-toggle-color: #f5f8ff;
  --theme-toggle-border: rgba(92, 174, 255, 0.24);
  --theme-toggle-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
  --nav-color: #dde8fb;
  --nav-hover-color: #8fd5ff;
  --nav-mobile-background-color: #10233a;
  --nav-dropdown-background-color: #10233a;
  --nav-dropdown-color: #dde8fb;
  --nav-dropdown-hover-color: #8fd5ff;
}

/*--------------------------------------------------------------
# Theme Toggle & Dark Mode
--------------------------------------------------------------*/
.theme-toggle {
  position: relative;
  z-index: 1;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  margin-left: 10px;
  border: 1px solid var(--theme-toggle-border);
  border-radius: 14px;
  background: var(--theme-toggle-background);
  color: var(--theme-toggle-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--theme-toggle-shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.theme-toggle i {
  font-size: 1.1rem;
  line-height: 1;
}
.theme-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px var(--panel-shadow-color);
}
.theme-toggle:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent-color), transparent 72%);
  outline-offset: 2px;
}

html[data-theme=dark] body {
  background-image: radial-gradient(circle at top center, color-mix(in srgb, var(--accent-color), transparent 88%), transparent 38%);
  background-attachment: fixed;
}
html[data-theme=dark] .light-background {
  --background-color: var(--surface-muted-color);
  --surface-color: var(--surface-soft-color);
}
html[data-theme=dark] .hero {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 88%), color-mix(in srgb, var(--accent-secondary-color), transparent 92%) 45%, color-mix(in srgb, var(--background-color), transparent 8%));
}
html[data-theme=dark] .about .stat-item,
html[data-theme=dark] .about .feature-card,
html[data-theme=dark] .about .image-wrapper .floating-card {
  box-shadow: 0 20px 50px var(--panel-shadow-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 84%);
}
html[data-theme=dark] .schedule {
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
}
html[data-theme=dark] .schedule .schedule-header .nav-tabs .nav-item .nav-link,
html[data-theme=dark] .schedule .schedule-content .session-timeline .session-block .session-card {
  box-shadow: 0 20px 50px var(--panel-shadow-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 84%);
}
html[data-theme=dark] .schedule .schedule-content .session-timeline .session-block .session-card.break-card {
  border-color: color-mix(in srgb, var(--accent-color), transparent 72%);
}
html[data-theme=dark] .speakers .speaker-card,
html[data-theme=dark] .partners .partner-card,
html[data-theme=dark] .partners .sponsor-block,
html[data-theme=dark] .partners .sponsor-card,
html[data-theme=dark] .congress-cta .cta-section,
html[data-theme=dark] .call-to-action .cta-card,
html[data-theme=dark] .call-to-action .floating-card,
html[data-theme=dark] .testimonials .testimonial-item,
html[data-theme=dark] .testimonials .swiper-button-prev,
html[data-theme=dark] .testimonials .swiper-button-next,
html[data-theme=dark] .hero .countdown > div,
html[data-theme=dark] .hero .floating-badges .badge-item {
  box-shadow: 0 20px 50px var(--panel-shadow-color);
}
html[data-theme=dark] .partners .partner-logo-wrap {
  background: color-mix(in srgb, var(--surface-color), #ffffff 6%);
}
html[data-theme=dark] .navmenu > ul,
html[data-theme=dark] .navmenu .dropdown ul {
  box-shadow: 0 16px 35px var(--panel-shadow-color);
}
html[data-theme=dark] .call-to-action .urgency-bar {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), #041120 20%), color-mix(in srgb, var(--accent-secondary-color), #06203b 20%));
  box-shadow: 0 16px 32px rgba(3, 15, 28, 0.45);
}
html[data-theme=dark] .call-to-action .countdown > div {
  background: rgba(8, 20, 34, 0.55);
  border: 1px solid color-mix(in srgb, var(--accent-secondary-color), transparent 82%);
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
html {
  background:
    radial-gradient(circle at 12% 10%, rgba(172, 25, 75, 0.08), transparent 26%),
    radial-gradient(circle at 88% 20%, rgba(39, 170, 225, 0.12), transparent 30%),
    radial-gradient(circle at 50% 95%, rgba(137, 196, 0, 0.1), transparent 30%),
    linear-gradient(180deg, #f5fbfb 0%, #eef7fb 48%, #fff7f0 100%),
    var(--background-color);
}

html[data-theme=dark] {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 143, 200, 0.18), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(105, 220, 255, 0.17), transparent 32%),
    radial-gradient(circle at 50% 95%, rgba(255, 192, 110, 0.14), transparent 34%),
    var(--background-color);
}

body {
  color: var(--default-color);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(238, 247, 251, 0.22) 42%, transparent 70%),
    var(--background-color);
  font-family: var(--default-font);
  overflow-x: hidden;
}

html[data-theme=dark] body {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 143, 200, 0.08), transparent 28%),
    radial-gradient(circle at 85% 44%, rgba(105, 220, 255, 0.08), transparent 30%),
    var(--background-color);
}

main {
  overflow-x: clip;
}

section,
[id] {
  scroll-margin-top: 108px;
}

@media (max-width: 1199px) {
  section,
  [id] {
    scroll-margin-top: 92px;
  }
}

@media (max-width: 576px) {
  .container,
  .container-fluid,
  .container-xl {
    width: 100%;
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
  .main .row {
    margin-left: 0;
    margin-right: 0;
  }
  .main .row > * {
    padding-left: 0;
    padding-right: 0;
  }
}
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}
.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}
.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}
.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0 0 0;
  transition: all 0.5s;
  z-index: 997;
}
.header .header-container {
  background: var(--header-surface-color);
  transition: all 0.5s;
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  box-shadow: 0 20px 45px var(--panel-shadow-color);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.header .logo {
  padding: 8px 14px;
  background-color: color-mix(in srgb, var(--accent-color) 90%, black 15%);
  border-radius: 8px;
}
.header .logo img {
  display: block;
  width: 142px;
  height: auto;
  max-height: 48px;
  object-fit: contain;
}
.header .logo h1 {
  font-size: 26px;
  margin: 0;
  font-weight: 400;
  color: var(--contrast-color);
}
.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 5px 0 30px;
  border-radius: 5px;
  transition: 0.3s;
}
.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}
@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }
  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }
  .header .navmenu {
    order: 3;
  }
}
@media (max-width: 576px) {
  .header {
    padding-top: 10px;
  }
  .header .header-container {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .header .logo {
    padding: 7px 9px;
  }
  .header .logo img {
    width: 104px;
    max-height: 40px;
  }
  .header .logo h1 {
    font-size: 18px;
    line-height: 1.1;
  }
  .header .btn-getstarted {
    font-size: 13px;
    padding: 6px 12px;
    margin: 0 10px 0 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu li {
    position: relative;
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  .navmenu li:last-child a {
    padding-right: 0;
  }
  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu .dropdown ul li {
    min-width: 200px;
  }
  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }
  .navmenu .dropdown ul a i {
    font-size: 12px;
  }
  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }
  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}
/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }
  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }
  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }
  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }
  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
  .mobile-nav-active {
    overflow: hidden;
    touch-action: none;
  }
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: fixed;
    font-size: 32px;
    top: 27px;
    right: 26px;
    margin-right: 0;
    z-index: 100003;
  }
  .mobile-nav-active #header {
    z-index: 100000;
  }
  .mobile-nav-active #header .header-container {
    position: fixed !important;
    inset: 0;
    width: auto;
    max-width: none;
    margin: 0;
    padding: 22px 16px;
    align-items: flex-start !important;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    filter: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: none;
  }
  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    z-index: 100001;
    isolation: isolate;
    background: rgba(5, 18, 34, 0.76);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: 0.3s;
  }
  .mobile-nav-active .navmenu > ul {
    display: block;
  }
  .mobile-nav-active #navmenu > ul {
    display: block;
    position: fixed;
    inset: 96px 16px auto 16px;
    max-height: calc(100dvh - 118px);
    height: auto;
    min-height: 0;
    border-radius: 18px;
    padding: 18px 0 20px;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
    box-shadow: 0 26px 80px rgba(5, 18, 34, 0.28);
    z-index: 100002;
  }
  .mobile-nav-active #navmenu > ul a {
    min-height: 48px;
    padding: 12px 20px;
  }
  html[data-theme=dark] .mobile-nav-active #navmenu > ul {
    background: rgba(14, 32, 53, 0.98);
    border-color: rgba(93, 178, 255, 0.26);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.46);
  }
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}
.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}
.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}
.footer .footer-about .logo .footer-brand-logo {
  width: min(100%, 230px);
  max-height: 100px;
  object-fit: contain;
  object-position: left center;
}
.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}
.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}
.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}
.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}
.footer .footer-links {
  margin-bottom: 30px;
}
.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}
.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
.footer .footer-links ul li:first-child {
  padding-top: 0;
}
.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}
.footer .footer-links ul a:hover {
  color: var(--accent-color);
}
.footer .footer-contact p {
  margin-bottom: 5px;
}
.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.footer .copyright p {
  margin-bottom: 0;
}
.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}
.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# AOS Reliability Guardrails
--------------------------------------------------------------*/
html.no-js [data-aos],
html.aos-disabled [data-aos] {
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
  visibility: visible !important;
  transition: none !important;
  transition-delay: 0s !important;
}

@media screen and (max-width: 991px), (prefers-reduced-motion: reduce) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    visibility: visible !important;
  }
  [data-aos-delay] {
    transition-delay: 0s !important;
  }
}
/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}
.page-title .heading {
  padding: 80px 0;
}
.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}
.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}
.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}
.page-title nav ol li + li {
  padding-left: 10px;
}
.page-title nav ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}
/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}
.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}
.section-title h2:before, .section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}
.section-title h2:before {
  margin: 0 15px 10px 0;
}
.section-title h2:after {
  margin: 0 0 10px 15px;
}
.section-title p {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 20px;
  }
  .section-title h2:before, .section-title h2:after {
    content: "";
    width: 20px;
    height: 2px;
    background: var(--accent-color);
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding-top: 150px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%), color-mix(in srgb, var(--heading-color), transparent 97%));
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding-bottom: 60px;
}
.hero > .container {
  position: relative;
  z-index: 1;
}
.hero .space-ornaments {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  translate: var(--field-x, 0) var(--field-y, 0);
  transition: translate 180ms ease-out;
}
.hero .ornament {
  position: absolute;
  opacity: 0.17;
  line-height: 1;
  filter: saturate(0.9);
  will-change: transform;
  animation: space-drift 12s ease-in-out infinite alternate;
}
.hero .ornament-rocket {
  top: 18%;
  left: 2.5%;
  color: #ff72ad;
  font-size: clamp(2.5rem, 5vw, 5rem);
  transform: rotate(38deg);
  animation-delay: -3s;
}
.hero .ornament-rocket-two {
  right: 32%;
  top: 7%;
  color: #8b7cff;
  font-size: clamp(1.7rem, 3vw, 3rem);
  transform: rotate(-28deg);
  animation-delay: -11s;
}
.hero .ornament-rocket-three {
  left: 42%;
  bottom: 17%;
  color: #ffae57;
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
  transform: rotate(48deg);
  animation-delay: -6s;
}
.hero .ornament-satellite {
  top: 13%;
  right: 3%;
  color: #45bde9;
  font-size: clamp(2.2rem, 4vw, 4rem);
  animation-delay: -8s;
}
.hero .ornament-satellite-two {
  left: 28%;
  top: 10%;
  color: #61d6aa;
  font-size: clamp(1.6rem, 2.7vw, 2.7rem);
  animation-delay: -2s;
}
.hero .ornament-satellite-three {
  right: 1.5%;
  top: 48%;
  color: #ff86c1;
  font-size: clamp(1.7rem, 3vw, 3rem);
  animation-delay: -9s;
}
.hero .ornament-moon {
  right: 43%;
  bottom: 7%;
  color: #9b83ff;
  font-size: clamp(2.4rem, 4.5vw, 4.5rem);
  animation-delay: -5s;
}
.hero .ornament-moon-two {
  left: 21%;
  bottom: 4%;
  color: #ffc857;
  font-size: clamp(1.5rem, 2.6vw, 2.6rem);
  animation-delay: -4s;
}
.hero .ornament-planet {
  left: 45%;
  top: 12%;
  color: #4dcde5;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  animation-delay: -10s;
}
.hero .ornament-planet-two {
  right: 26%;
  bottom: 3%;
  color: #66d7a7;
  font-size: clamp(1.7rem, 3vw, 3rem);
  animation-delay: -7s;
}
.hero .ornament-stars-one {
  left: 3%;
  bottom: 11%;
  color: #ff9c5b;
  font-size: clamp(1.8rem, 3vw, 3rem);
  animation-delay: -7s;
}
.hero .ornament-stars-two {
  right: 2%;
  bottom: 19%;
  color: #ff73ad;
  font-size: clamp(1.6rem, 2.5vw, 2.5rem);
  animation-delay: -1s;
}
html[data-theme=dark] .hero .ornament {
  opacity: 0.28;
  filter: saturate(1.2) drop-shadow(0 0 10px currentColor);
}
html[data-theme=dark] .hero .ornament-rocket,
html[data-theme=dark] .hero .ornament-satellite-three,
html[data-theme=dark] .hero .ornament-stars-two {
  color: #ff8fc8;
}
html[data-theme=dark] .hero .ornament-rocket-two,
html[data-theme=dark] .hero .ornament-moon {
  color: #b49aff;
}
html[data-theme=dark] .hero .ornament-rocket-three,
html[data-theme=dark] .hero .ornament-stars-one {
  color: #ffc06e;
}
html[data-theme=dark] .hero .ornament-satellite,
html[data-theme=dark] .hero .ornament-planet {
  color: #69dcff;
}
html[data-theme=dark] .hero .ornament-satellite-two,
html[data-theme=dark] .hero .ornament-planet-two {
  color: #7bf0bd;
}
html[data-theme=dark] .hero .ornament-moon-two {
  color: #ffe07a;
}
@keyframes space-drift {
  from {
    translate: 0 0;
  }
  to {
    translate: 10px -14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero .ornament {
    animation: none;
  }
  .hero .space-ornaments {
    translate: none;
    transition: none;
  }
}
@media (max-width: 1199px) {
  .hero {
    padding-top: 120px;
    padding-bottom: 40px;
  }
}

/* Page-wide decorative space field */
.space-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.space-section > :not(.section-space-layer) {
  position: relative;
  z-index: 1;
}
.section-space-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  translate: var(--field-x, 0) var(--field-y, 0);
  transition: translate 180ms ease-out;
}
.section-space-layer .space-object {
  --mouse-x: 0px;
  --mouse-y: 0px;
  position: absolute;
  display: grid;
  place-items: center;
  width: calc(var(--space-size) * 1.4);
  aspect-ratio: 1;
  color: #5bbfe7;
  opacity: 0.12;
  transform: translate3d(var(--mouse-x), var(--mouse-y), 0);
  transition: transform 180ms ease-out;
  will-change: transform;
}
.section-space-layer .space-object::before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.35;
  transform: rotate(-18deg) scaleY(0.45);
}
.section-space-layer .space-object i {
  position: relative;
  font-size: var(--space-size);
  line-height: 1;
  animation: space-fall var(--space-duration) ease-in-out var(--space-delay) infinite alternate;
}
.section-space-layer .space-object:nth-child(even)::after {
  content: "✦";
  position: absolute;
  top: -0.2em;
  right: -0.15em;
  font-size: calc(var(--space-size) * 0.38);
  opacity: 0.7;
}
.section-space-layer .space-color-1 {
  color: #ff72ad;
}
.section-space-layer .space-color-2 {
  color: #8b7cff;
}
.section-space-layer .space-color-3 {
  color: #45bde9;
}
.section-space-layer .space-color-4 {
  color: #61d6aa;
}
.section-space-layer .space-color-5 {
  color: #ffae57;
}
.section-space-layer .space-color-6 {
  color: #f2c84b;
}
html[data-theme=dark] .section-space-layer .space-object {
  opacity: 0.2;
  filter: saturate(1.2) drop-shadow(0 0 9px currentColor);
}
html[data-theme=dark] .section-space-layer .space-color-1 {
  color: #ff8fc8;
}
html[data-theme=dark] .section-space-layer .space-color-2 {
  color: #b49aff;
}
html[data-theme=dark] .section-space-layer .space-color-3 {
  color: #69dcff;
}
html[data-theme=dark] .section-space-layer .space-color-4 {
  color: #7bf0bd;
}
html[data-theme=dark] .section-space-layer .space-color-5 {
  color: #ffc06e;
}
html[data-theme=dark] .section-space-layer .space-color-6 {
  color: #ffe07a;
}
@keyframes space-fall {
  from {
    translate: 0 -18px;
    rotate: -7deg;
  }
  to {
    translate: 8px 34px;
    rotate: 7deg;
  }
}
@media (prefers-reduced-motion: reduce) {
  .section-space-layer {
    translate: none;
    transition: none;
  }
  .section-space-layer .space-object {
    transform: none;
    transition: none;
  }
  .section-space-layer .space-object i {
    animation: none;
  }
}
@media (max-width: 576px) {
  .section-space-layer .space-object {
    opacity: 0.085;
  }
  html[data-theme=dark] .section-space-layer .space-object {
    opacity: 0.14;
  }
}

/* Continuous space field across the page */
.space-main {
  position: relative;
}
.space-main > section:not(#hero) {
  position: relative;
  z-index: 1;
}
.space-main > section:not(#hero) > .container {
  position: relative;
  z-index: 3;
}
.page-space-field {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
  translate: var(--field-x, 0) var(--field-y, 0);
  transition: translate 180ms ease-out;
}
.page-space-field .space-object {
  --mouse-x: 0px;
  --mouse-y: 0px;
  position: absolute;
  display: grid;
  place-items: center;
  width: calc(var(--space-size) * 1.5);
  aspect-ratio: 1;
  opacity: 0.13;
  transform: translate3d(var(--mouse-x), var(--mouse-y), 0);
  transition: transform 180ms ease-out;
  will-change: transform;
}
.page-space-field .space-object::before {
  content: "";
  position: absolute;
  inset: 4%;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.32;
  transform: rotate(-20deg) scaleY(0.42);
}
.page-space-field .space-object:nth-child(3n)::after {
  content: "✦";
  position: absolute;
  top: -0.4em;
  right: -0.25em;
  font-size: calc(var(--space-size) * 0.42);
  opacity: 0.75;
}
.page-space-field .space-object i {
  position: relative;
  font-size: var(--space-size);
  line-height: 1;
}
.page-space-field .space-faller i {
  animation: page-space-fall var(--space-duration) linear var(--space-delay) infinite;
}
.page-space-field .space-floater i {
  animation: page-space-float var(--space-duration) ease-in-out var(--space-delay) infinite alternate;
}
.page-space-field .space-astronaut::before {
  inset: -8%;
  border-width: 2px;
  transform: none;
  box-shadow: inset 0 0 0 3px color-mix(in srgb, currentColor, transparent 82%);
}
.page-space-field .space-color-1 {
  color: #b0184c;
}
.page-space-field .space-color-2 {
  color: #2f8edb;
}
.page-space-field .space-color-3 {
  color: #1fb8c7;
}
.page-space-field .space-color-4 {
  color: #85bd00;
}
.page-space-field .space-color-5 {
  color: #314b78;
}
.page-space-field .space-color-6 {
  color: #d29b5d;
}
html[data-theme=dark] .page-space-field .space-object {
  opacity: 0.22;
  filter: saturate(1.2) drop-shadow(0 0 8px currentColor);
}
html[data-theme=dark] .page-space-field .space-color-1 {
  color: #ff8fc8;
}
html[data-theme=dark] .page-space-field .space-color-2 {
  color: #84c4ff;
}
html[data-theme=dark] .page-space-field .space-color-3 {
  color: #57e1eb;
}
html[data-theme=dark] .page-space-field .space-color-4 {
  color: #b9ec4e;
}
html[data-theme=dark] .page-space-field .space-color-5 {
  color: #9fb6ff;
}
html[data-theme=dark] .page-space-field .space-color-6 {
  color: #ffe07a;
}
@keyframes page-space-fall {
  0% {
    translate: 0 -45px;
    rotate: -8deg;
  }
  45% {
    translate: var(--space-sway) 115px;
    rotate: 6deg;
  }
  100% {
    translate: 0 280px;
    rotate: -4deg;
  }
}
@keyframes page-space-float {
  0% {
    translate: -18px -20px;
    rotate: -12deg;
  }
  50% {
    translate: 28px 38px;
    rotate: 8deg;
  }
  100% {
    translate: -8px 72px;
    rotate: -5deg;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-space-field {
    translate: none;
    transition: none;
  }
  .page-space-field .space-object {
    transform: none;
    transition: none;
  }
  .page-space-field .space-object i {
    animation: none;
  }
}
@media (max-width: 576px) {
  .page-space-field .space-object {
    opacity: 0.085;
  }
  html[data-theme=dark] .page-space-field .space-object {
    opacity: 0.14;
  }
}

/* Keep original logo artwork readable in dark mode */
html[data-theme=dark] .partners .partner-logo-wrap,
html[data-theme=dark] .partners .sponsor-card {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
}
html[data-theme=dark] .footer .footer-about .logo {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 12px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .hero {
    min-height: auto;
    align-items: flex-start;
    padding-top: 118px;
    padding-bottom: 32px;
  }
}
@media (max-width: 576px) {
  .hero {
    padding-top: 112px;
    padding-bottom: 24px;
  }
  .hero .ornament {
    opacity: 0.12;
  }
  .hero .ornament-planet,
  .hero .ornament-stars-two,
  .hero .ornament-rocket-three,
  .hero .ornament-satellite-two,
  .hero .ornament-planet-two {
    display: none;
  }
  html[data-theme=dark] .hero .ornament {
    opacity: 0.2;
  }
}
.hero .hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.75rem;
  line-height: 1.12;
}
@media (max-width: 991px) {
  .hero .hero-title {
    max-width: 12ch;
  }
}
@media (max-width: 576px) {
  .hero .hero-title {
    font-size: 2rem;
    max-width: 10ch;
  }
}
.hero .hero-subtitle {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}
.hero .hero-description {
  font-size: 1.08rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 1.75rem;
  max-width: 34rem;
}
@media (max-width: 991px) {
  .hero .hero-description {
    max-width: 40rem;
  }
}
@media (max-width: 576px) {
  .hero .hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}
.hero .event-details {
  display: grid;
  gap: 0.9rem;
}
.hero .event-details .detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0;
  font-size: 1.1rem;
  line-height: 1.35;
}
.hero .event-details .detail-item i {
  color: var(--accent-color);
  font-size: 1.25rem;
  margin-right: 0;
  width: 24px;
  flex: 0 0 24px;
  margin-top: 0.1rem;
}
.hero .event-details .detail-item span {
  color: var(--default-color);
  font-weight: 500;
}
@media (max-width: 576px) {
  .hero .event-details {
    gap: 0.8rem;
  }
  .hero .event-details .detail-item {
    font-size: 1rem;
  }
}
.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: stretch;
}
.hero .hero-actions .btn {
  padding: 0.95rem 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 10px;
  transition: all 0.3s ease;
  min-width: 220px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero .hero-actions .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}
.hero .hero-actions .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}
.hero .hero-actions .btn.btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
}
.hero .hero-actions .btn.btn-outline-primary:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}
.hero .hero-actions .me-3 {
  margin-right: 0 !important;
}
@media (max-width: 991px) {
  .hero .hero-actions {
    max-width: 520px;
  }
}
@media (max-width: 767px) {
  .hero .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    max-width: 360px;
  }
  .hero .hero-actions .btn {
    width: 100%;
    min-width: 0;
  }
}
.hero .countdown-wrapper {
  max-width: 560px;
}
.hero .countdown-wrapper .countdown-title {
  font-size: 1.125rem;
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-weight: 600;
}
.hero .countdown-wrapper .countdown {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(96px, 1fr));
  gap: 1.5rem;
}
.hero .countdown-wrapper .countdown > div {
  text-align: center;
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--default-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  min-width: 0;
}
.hero .countdown-wrapper .countdown > div h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.25rem;
  line-height: 1;
}
.hero .countdown-wrapper .countdown > div h4 {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}
@media (max-width: 767px) {
  .hero .countdown-wrapper .countdown {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 360px;
    gap: 1rem;
  }
}
@media (max-width: 576px) {
  .hero .countdown-wrapper .countdown {
    gap: 0.75rem;
    max-width: 100%;
  }
  .hero .countdown-wrapper .countdown > div {
    padding: 1rem 0.75rem;
  }
  .hero .countdown-wrapper .countdown > div h3 {
    font-size: 1.65rem;
  }
  .hero .countdown-wrapper .countdown > div h4 {
    font-size: 0.75rem;
  }
}
.hero .hero-image-wrapper {
  position: relative;
}
@media (max-width: 991px) {
  .hero .hero-image-wrapper {
    margin-top: 2rem;
  }
}
.hero .hero-image-wrapper .hero-image {
  display: block;
  width: min(100%, 510px);
  aspect-ratio: 1023 / 1280;
  object-fit: contain;
  margin-inline: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
  transform: none;
  transition: box-shadow 0.3s ease;
}
.hero .hero-image-wrapper .hero-image:hover {
  transform: none;
  box-shadow: 0 24px 70px color-mix(in srgb, var(--default-color), transparent 80%);
}
@media (max-width: 576px) {
  .hero .hero-image-wrapper .hero-image {
    width: 100%;
    border-radius: 14px;
    transform: none;
  }
}
.hero .hero-image-wrapper .floating-badges {
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 992px) {
  .hero .hero-image-wrapper .floating-badges {
    position: static;
    flex-direction: row;
    justify-content: center;
    transform: none;
    margin-top: 2rem;
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .hero .hero-image-wrapper .floating-badges {
    position: static;
    flex-direction: column;
    align-items: stretch;
    transform: none;
    margin-top: 1.5rem;
    margin-bottom: 0;
    gap: 0.85rem;
    width: 100%;
  }
}
.hero .hero-image-wrapper .floating-badges .badge-item {
  background-color: var(--surface-color);
  padding: 1rem 1.25rem;
  border-radius: 50px;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.hero .hero-image-wrapper .floating-badges .badge-item:hover {
  transform: translateX(5px);
  border-color: var(--accent-color);
}
@media (max-width: 992px) {
  .hero .hero-image-wrapper .floating-badges .badge-item:hover {
    transform: translateY(-5px);
  }
}
.hero .hero-image-wrapper .floating-badges .badge-item i {
  color: var(--accent-color);
  font-size: 1.25rem;
}
.hero .hero-image-wrapper .floating-badges .badge-item span {
  color: var(--default-color);
  font-weight: 600;
  font-size: 0.9rem;
}
@media (max-width: 576px) {
  .hero .hero-image-wrapper .floating-badges .badge-item {
    width: 100%;
    justify-content: flex-start;
    padding: 0.8rem 1rem;
    white-space: normal;
  }
  .hero .hero-image-wrapper .floating-badges .badge-item span {
    font-size: 0.8rem;
  }
}
@media (max-width: 992px) {
  .hero .row .col-lg-6:first-child {
    order: 0;
  }
  .hero .row .col-lg-6:last-child {
    order: 1;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.about .features-grid .row {
  justify-content: center;
}
@media (max-width: 768px) {
  .about .content h2 {
    font-size: 2rem;
  }
}
.about .content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
@media (max-width: 576px) {
  .about .content p {
    font-size: 1rem;
  }
}
.about .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .about .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 576px) {
  .about .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
.about .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 118px;
  padding: 1.1rem 0.7rem;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 18px;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  min-width: 0;
}
.about .stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}
.about .stat-item .stat-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  font-size: clamp(2rem, 3vw, 2.35rem);
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}
.about .stat-item .stat-number-text {
  font-size: clamp(1.55rem, 2.5vw, 1.9rem);
  letter-spacing: -0.03em;
}
.about .stat-item .stat-label {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 2.4em;
  max-width: 10ch;
  font-size: 0.72rem;
  line-height: 1.2;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
@media (max-width: 576px) {
  .about .stat-item {
    min-height: 108px;
    padding: 0.95rem 0.5rem;
  }
}
.about .image-wrapper {
  position: relative;
}
@media (max-width: 991px) {
  .about .image-wrapper {
    margin-top: 2rem;
  }
}
.about .image-wrapper img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}
.about .image-wrapper .floating-card {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: var(--surface-color);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 200px;
  max-width: calc(100% - 4rem);
}
@media (max-width: 768px) {
  .about .image-wrapper .floating-card {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    padding: 1rem;
    min-width: 0;
    max-width: calc(100% - 2rem);
  }
}
.about .image-wrapper .floating-card .card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-secondary-color), transparent 10%));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  font-size: 1.5rem;
  flex-shrink: 0;
}
.about .image-wrapper .floating-card .card-content h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--heading-color);
}
.about .image-wrapper .floating-card .card-content p {
  font-size: 0.8rem;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
@media (max-width: 576px) {
  .about .image-wrapper .floating-card {
    gap: 0.75rem;
  }
}
.about .features-grid {
  margin-top: 0;
  margin-bottom: 3rem;
}
.about .feature-card {
  background: var(--surface-color);
  border-radius: 20px;
  text-align: left;
  height: 100%;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  overflow: hidden;
}
.about .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px color-mix(in srgb, var(--default-color), transparent 80%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}
.about .feature-card:hover .feature-media img {
  transform: scale(1.05);
}
.about .feature-card .feature-media {
  position: relative;
  height: 190px;
  overflow: hidden;
}
.about .feature-card .feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 10%, color-mix(in srgb, var(--heading-color), transparent 74%) 100%);
}
.about .feature-card .feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.about .feature-card .feature-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(7, 17, 29, 0.62);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.about .feature-card .feature-body {
  padding: 1.75rem;
}
.about .feature-card .feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-secondary-color), transparent 12%));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -3rem 0 1.25rem;
  font-size: 1.65rem;
  color: var(--contrast-color);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  box-shadow: 0 12px 25px color-mix(in srgb, var(--accent-color), transparent 72%);
}
.about .feature-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}
.about .feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Schedule Section
--------------------------------------------------------------*/
.schedule {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
}
.schedule .schedule-header {
  margin-bottom: 60px;
}
.schedule .schedule-header .nav-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  border-bottom: none;
}
.schedule .schedule-header .nav-tabs .nav-item .nav-link {
  background: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 16px;
  padding: 20px 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 92%);
  color: var(--default-color);
  white-space: nowrap;
}
.schedule .schedule-header .nav-tabs .nav-item .nav-link:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 85%);
}
.schedule .schedule-header .nav-tabs .nav-item .nav-link.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}
@media (max-width: 768px) {
  .schedule .schedule-header .nav-tabs .nav-item .nav-link {
    padding: 16px 20px;
  }
}
.schedule .schedule-content .session-timeline {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.schedule .schedule-content .session-timeline .session-block {
  display: flex;
  margin-bottom: 32px;
  position: relative;
  width: 100%;
}
.schedule .schedule-content .session-timeline .session-block .session-time {
  width: 100px;
  flex-shrink: 0;
  padding-right: 20px;
  text-align: right;
  position: relative;
}
.schedule .schedule-content .session-timeline .session-block .session-time::after {
  content: "";
  position: absolute;
  right: -11px;
  top: 8px;
  width: 20px;
  height: 20px;
  background: var(--accent-color);
  border-radius: 50%;
  border: 3px solid var(--surface-color);
  box-shadow: 0 2px 8px color-mix(in srgb, var(--default-color), transparent 85%);
}
.schedule .schedule-content .session-timeline .session-block .session-time .start {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 2px;
}
.schedule .schedule-content .session-timeline .session-block .session-time .end {
  display: block;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.schedule .schedule-content .session-timeline .session-block .session-card {
  flex: 1;
  background: var(--surface-color);
  border-radius: 16px;
  padding: 28px;
  margin-left: 20px;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.schedule .schedule-content .session-timeline .session-block .session-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}
.schedule .schedule-content .session-timeline .session-block .session-card.break-card {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}
.schedule .schedule-content .session-timeline .session-block .session-card.break-card .session-title {
  color: var(--accent-color);
}
.schedule .schedule-content .session-timeline .session-block .session-card .session-info {
  flex: 1;
}
.schedule .schedule-content .session-timeline .session-block .session-card .session-info .session-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.schedule .schedule-content .session-timeline .session-block .session-card .session-info .session-meta .track {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.schedule .schedule-content .session-timeline .session-block .session-card .session-info .session-meta .track.keynote {
  background: color-mix(in srgb, #ff6b6b, transparent 85%);
  color: #ff6b6b;
}
.schedule .schedule-content .session-timeline .session-block .session-card .session-info .session-meta .track.development {
  background: color-mix(in srgb, #4ecdc4, transparent 85%);
  color: #4ecdc4;
}
.schedule .schedule-content .session-timeline .session-block .session-card .session-info .session-meta .track.design {
  background: color-mix(in srgb, #45b7d1, transparent 85%);
  color: #45b7d1;
}
.schedule .schedule-content .session-timeline .session-block .session-card .session-info .session-meta .track.business {
  background: color-mix(in srgb, #f7931e, transparent 85%);
  color: #f7931e;
}
.schedule .schedule-content .session-timeline .session-block .session-card .session-info .session-meta .track.break {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
}
.schedule .schedule-content .session-timeline .session-block .session-card .session-info .session-meta .room {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}
.schedule .schedule-content .session-timeline .session-block .session-card .session-info .session-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 12px;
  line-height: 1.3;
}
.schedule .schedule-content .session-timeline .session-block .session-card .session-info .session-description {
  font-size: 14px;
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 16px;
}
.schedule .schedule-content .session-timeline .session-block .session-card .session-info .speaker-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.schedule .schedule-content .session-timeline .session-block .session-card .session-info .speaker-info .speaker-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.schedule .schedule-content .session-timeline .session-block .session-card .session-info .speaker-info .speaker-details .speaker-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 2px 0;
}
.schedule .schedule-content .session-timeline .session-block .session-card .session-info .speaker-info .speaker-details .speaker-role {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.schedule .schedule-content .session-timeline .session-block .session-card .add-to-schedule {
  display: none;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  align-self: flex-start;
}
.schedule .schedule-content .session-timeline .session-block .session-card .add-to-schedule i {
  margin-right: 6px;
}
.schedule .schedule-content .session-timeline .session-block .session-card .add-to-schedule:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}
.schedule .schedule-content .session-timeline .session-block.keynote .session-time::after {
  background: #ff6b6b;
}
.schedule .schedule-content .session-timeline .session-block.development .session-time::after {
  background: #4ecdc4;
}
.schedule .schedule-content .session-timeline .session-block.design .session-time::after {
  background: #45b7d1;
}
.schedule .schedule-content .session-timeline .session-block.business .session-time::after {
  background: #f7931e;
}
.schedule .schedule-content .session-timeline .session-block.break .session-time::after {
  background: var(--accent-color);
}
@media (max-width: 768px) {
  .schedule .schedule-content .session-timeline::before {
    left: 80px;
  }
  .schedule .schedule-content .session-timeline .session-block .session-time {
    width: 70px;
  }
  .schedule .schedule-content .session-timeline .session-block .session-time::after {
    right: -9px;
    width: 16px;
    height: 16px;
  }
  .schedule .schedule-content .session-timeline .session-block .session-time .start {
    font-size: 14px;
  }
  .schedule .schedule-content .session-timeline .session-block .session-card {
    padding: 20px;
    margin-left: 16px;
    flex-direction: column;
    gap: 16px;
  }
  .schedule .schedule-content .session-timeline .session-block .session-card .session-title {
    font-size: 18px;
  }
  .schedule .schedule-content .session-timeline .session-block .session-card .add-to-schedule {
    align-self: stretch;
    text-align: center;
  }
}
.schedule .schedule-actions {
  text-align: center;
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.schedule .schedule-actions .btn {
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.schedule .schedule-actions .btn i {
  font-size: 16px;
}
.schedule .schedule-actions .btn.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}
.schedule .schedule-actions .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}
.schedule .schedule-actions .btn.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
}
.schedule .schedule-actions .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}
@media (max-width: 576px) {
  .schedule .schedule-actions .btn {
    flex: 1;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Congress CTA Section
--------------------------------------------------------------*/
.congress-cta {
  padding-top: 20px;
  padding-bottom: 40px;
}
.congress-cta .cta-section {
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 95%));
  padding: 4rem 3rem;
  border-radius: 24px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}
.congress-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}
.congress-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.congress-cta .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.congress-cta .cta-buttons .btn {
  padding: 0.875rem 2rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.congress-cta .cta-buttons .btn.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
}
.congress-cta .cta-buttons .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}
.congress-cta .cta-buttons .btn.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}
.congress-cta .cta-buttons .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .congress-cta {
    padding-top: 10px;
    padding-bottom: 30px;
  }
  .congress-cta .cta-section {
    padding: 3rem 2rem;
  }
  .congress-cta h3 {
    font-size: 1.75rem;
  }
}

/*--------------------------------------------------------------
# Speakers Section
--------------------------------------------------------------*/
.speakers .container {
  position: relative;
  z-index: 2;
}
.speakers .lead {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1.1rem;
  line-height: 1.7;
}
.speakers .speaker-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}
.speakers .speaker-overlay {
  display: none;
}
.speakers .speaker-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}
.speakers .speaker-card:hover .speaker-image img {
  transform: scale(1.05);
}
.speakers .speaker-card:hover .speaker-overlay {
  opacity: 1;
}
.speakers .speaker-card:hover .social-links a {
  transform: translateY(0);
  opacity: 1;
}
.speakers .speaker-image {
  position: relative;
  height: 170px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.speakers .speaker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.speakers .speaker-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.speakers .speaker-overlay {
  display: none !important;
}
.speakers .social-links {
  display: flex;
  gap: 12px;
}
.speakers .social-links a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.speakers .social-links a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(0) scale(1.1);
}
.speakers .social-links a i {
  font-size: 18px;
}
.speakers .social-links a:nth-child(1) {
  transition-delay: 0.1s;
}
.speakers .social-links a:nth-child(2) {
  transition-delay: 0.2s;
}
.speakers .speaker-content {
  padding: 30px 24px;
  position: relative;
}
.speakers .speaker-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  color: var(--contrast-color);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.speakers .speaker-content h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--heading-color);
}
.speakers .speaker-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 4px;
}
.speakers .speaker-company {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 16px;
  font-weight: 500;
}
.speakers .speaker-bio {
  font-size: 0.9rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 20px;
}
.speakers .speaker-session .session-topic {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 25px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}
.speakers .btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  color: var(--contrast-color);
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(54, 144, 231, 0.3);
}
.speakers .btn-view-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(54, 144, 231, 0.4);
  color: var(--contrast-color);
}
.speakers .btn-view-all:hover i {
  transform: translateX(4px);
}
.speakers .btn-view-all i {
  font-size: 18px;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .speakers .speaker-card {
    margin-bottom: 24px;
  }
  .speakers .speaker-image {
    height: 150px;
  }
  .speakers .speaker-content {
    padding: 24px 20px;
  }
  .speakers .speaker-content h4 {
    font-size: 1.25rem;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  position: relative;
  overflow: hidden;
}
.call-to-action .container {
  position: relative;
  z-index: 2;
}
.call-to-action h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.call-to-action .lead {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}
.call-to-action .cta-card {
  background: var(--surface-color);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  position: relative;
  overflow: hidden;
}
.call-to-action .cta-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-secondary-color), transparent 10%));
}
@media (max-width: 992px) {
  .call-to-action .cta-card {
    padding: 2rem;
  }
}
@media (max-width: 768px) {
  .call-to-action .cta-card {
    padding: 1.5rem;
  }
}
.call-to-action .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 576px) {
  .call-to-action .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
  .call-to-action .submission-grid .stat-item {
    min-height: 104px;
    padding: 1.1rem;
  }
  .call-to-action .submission-grid .stat-number {
    font-size: 1.1rem;
  }
  .call-to-action .submission-grid .stat-label {
    font-size: 0.76rem;
  }
}
.call-to-action .submission-grid .stat-item {
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  min-height: 132px;
}
.call-to-action .submission-grid .stat-number {
  font-size: 1.35rem;
  letter-spacing: 0.01em;
}
.call-to-action .submission-grid .stat-label {
  font-size: 0.85rem;
  line-height: 1.45;
  margin-top: 0.55rem;
  text-transform: none;
  opacity: 0.95;
}
.call-to-action .stat-item {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-secondary-color), transparent 12%));
  border-radius: 16px;
  color: var(--contrast-color);
  transition: transform 0.3s ease;
}
.call-to-action .stat-item:hover {
  transform: translateY(-5px);
}
.call-to-action .stat-item .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.call-to-action .stat-item .stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  display: block;
  margin-top: 0.5rem;
}
.call-to-action .cta-content h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.call-to-action .cta-content p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2rem;
}
.call-to-action .cta-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 576px) {
  .call-to-action .cta-buttons {
    flex-direction: column;
  }
}
.call-to-action .cta-buttons .btn {
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.call-to-action .cta-buttons .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.call-to-action .cta-buttons .btn:hover::before {
  left: 100%;
}
.call-to-action .cta-buttons .btn-primary {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-secondary-color), transparent 12%));
  color: var(--contrast-color);
  border: none;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}
.call-to-action .cta-buttons .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 60%);
}
.call-to-action .cta-buttons .btn-outline {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}
.call-to-action .cta-buttons .btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}
.call-to-action .trust-indicators {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .call-to-action .trust-indicators {
    justify-content: center;
  }
}
.call-to-action .trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.call-to-action .trust-item i {
  color: #28a745;
  font-size: 1.1rem;
}
.call-to-action .cta-visual {
  position: relative;
  height: auto;
  min-height: 0;
}
.call-to-action .image-stack {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}
.call-to-action .image-stack .main-image {
  grid-column: 1 / -1;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  animation: cta-image-drift 9s ease-in-out infinite alternate;
}
.call-to-action .floating-card {
  position: relative;
  min-width: 0;
  background: var(--surface-color);
  border-radius: 16px;
  padding: 1.15rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--surface-color), transparent 20%);
  animation: cta-badge-float 5.5s ease-in-out infinite alternate;
}
.call-to-action .floating-card.card-1 {
  z-index: 1;
}
.call-to-action .floating-card.card-2 {
  z-index: 1;
  animation-delay: -2.75s;
}
.call-to-action .floating-card .card-content {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  height: 100%;
}
.call-to-action .floating-card .card-content i {
  flex: 0 0 auto;
  font-size: 1.6rem;
  color: var(--accent-color);
}
.call-to-action .floating-card .card-content .card-number {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}
.call-to-action .floating-card .card-content .card-text {
  display: block;
  font-size: 0.82rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
@keyframes cta-image-drift {
  from {
    translate: 0 0;
    scale: 1;
  }
  to {
    translate: 0 -5px;
    scale: 1.012;
  }
}
@keyframes cta-badge-float {
  from {
    translate: 0 0;
  }
  to {
    translate: 0 -6px;
  }
}
@media (max-width: 576px) {
  .call-to-action .image-stack {
    gap: 0.7rem;
  }
  .call-to-action .floating-card {
    padding: 0.85rem 0.75rem;
  }
  .call-to-action .floating-card .card-content {
    gap: 0.55rem;
  }
  .call-to-action .floating-card .card-content i {
    font-size: 1.25rem;
  }
  .call-to-action .floating-card .card-content .card-number {
    font-size: 0.95rem;
  }
  .call-to-action .floating-card .card-content .card-text {
    font-size: 0.7rem;
    line-height: 1.25;
  }
}
@media (prefers-reduced-motion: reduce) {
  .call-to-action .image-stack .main-image,
  .call-to-action .floating-card {
    animation: none;
  }
}
.call-to-action .urgency-bar {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), #072040 22%), color-mix(in srgb, var(--accent-secondary-color), #0a355d 22%));
  border-radius: 16px;
  padding: 1.5rem;
  color: var(--contrast-color);
  text-align: center;
  box-shadow: 0 10px 26px color-mix(in srgb, var(--accent-color), transparent 72%);
}
.call-to-action .urgency-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .call-to-action .urgency-content {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.call-to-action .urgency-content i {
  font-size: 1.5rem;
  animation: pulse 2s infinite;
}
.call-to-action .urgency-content .urgency-text {
  font-weight: 600;
  font-size: 1.1rem;
}
.call-to-action .countdown {
  gap: 1rem;
}
.call-to-action .countdown > div {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  min-width: 70px;
}
.call-to-action .countdown > div span {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.call-to-action .countdown > div small {
  font-size: 0.8rem;
  opacity: 0.9;
  margin-top: 0.25rem;
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/*--------------------------------------------------------------
# Tickets Section
--------------------------------------------------------------*/
.tickets {
  padding: 80px 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 97%) 0%, var(--background-color) 100%);
}
.tickets .ticket-card {
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
}
.tickets .ticket-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: var(--accent-color);
}
.tickets .ticket-card .popular-badge {
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 40px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  transform: rotate(45deg);
  z-index: 2;
}
.tickets .ticket-card .ticket-header {
  padding: 30px 25px 25px;
  text-align: center;
  background: linear-gradient(145deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
}
.tickets .ticket-card .ticket-header .ticket-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.tickets .ticket-card .ticket-header .ticket-icon i {
  font-size: 28px;
  color: var(--contrast-color);
}
.tickets .ticket-card .ticket-header .ticket-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  font-family: var(--heading-font);
}
.tickets .ticket-card .ticket-header .price-section {
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}
.tickets .ticket-card .ticket-header .price-section .currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--accent-color);
}
.tickets .ticket-card .ticket-header .price-section .amount {
  font-size: 42px;
  font-weight: 800;
  color: var(--accent-color);
  font-family: var(--heading-font);
  line-height: 1;
}
.tickets .ticket-card .ticket-header .ticket-subtitle {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  font-style: italic;
}
.tickets .ticket-card .ticket-body {
  padding: 25px;
}
.tickets .ticket-card .ticket-body .benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}
.tickets .ticket-card .ticket-body .benefits-list li {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
  font-size: 14px;
}
.tickets .ticket-card .ticket-body .benefits-list li:last-child {
  border-bottom: none;
}
.tickets .ticket-card .ticket-body .benefits-list li i {
  margin-right: 12px;
  font-size: 16px;
  width: 16px;
  text-align: center;
}
.tickets .ticket-card .ticket-body .benefits-list li i.bi-check2 {
  color: #28a745;
}
.tickets .ticket-card .ticket-body .benefits-list li i.bi-x {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}
.tickets .ticket-card .ticket-body .ticket-btn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  color: var(--contrast-color);
  text-align: center;
  padding: 14px 0;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
}
.tickets .ticket-card .ticket-body .ticket-btn:hover {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 15%), var(--accent-color));
  transform: translateY(-2px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}
.tickets .ticket-card.premium {
  transform: scale(1.05);
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 90%);
}
.tickets .ticket-card.premium:hover {
  transform: scale(1.05) translateY(-10px);
}
.tickets .ticket-card.premium .ticket-header {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
}
.tickets .ticket-card.premium .ticket-header .ticket-title,
.tickets .ticket-card.premium .ticket-header .ticket-subtitle {
  color: var(--contrast-color);
}
.tickets .ticket-card.premium .ticket-header .price-section .currency,
.tickets .ticket-card.premium .ticket-header .price-section .amount {
  color: var(--contrast-color);
}
.tickets .ticket-card.premium .ticket-header .ticket-icon {
  background: var(--contrast-color);
}
.tickets .ticket-card.premium .ticket-header .ticket-icon i {
  color: var(--accent-color);
}
@media (max-width: 992px) {
  .tickets .ticket-card.premium {
    transform: scale(1);
  }
  .tickets .ticket-card.premium:hover {
    transform: translateY(-10px);
  }
}
@media (max-width: 768px) {
  .tickets .ticket-card {
    margin-bottom: 20px;
  }
  .tickets .ticket-card.premium {
    transform: scale(1);
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-slider {
  width: 100%;
  position: relative;
  padding-bottom: 60px;
}
.testimonials .swiper-wrapper {
  height: auto;
}
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
}
@media (max-width: 575px) {
  .testimonials .testimonial-item {
    padding: 20px;
  }
}
.testimonials .testimonial-item h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}
.testimonials .testimonial-item p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
}
.testimonials .testimonial-item .profile {
  gap: 15px;
}
.testimonials .testimonial-item .profile .profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonials .testimonial-item .profile .profile-info h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}
.testimonials .testimonial-item .profile .profile-info span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
}
.testimonials .testimonial-item .featured-img-wrapper {
  min-height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.testimonials .testimonial-item .featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.testimonials .swiper-navigation {
  position: absolute;
  bottom: 0;
  gap: 10px;
}
.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  margin: 0;
  width: 44px;
  height: 44px;
  background-color: var(--surface-color);
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  transition: 0.3s;
}
.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 20px;
  color: var(--default-color);
}
.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}
.testimonials .swiper-button-prev:hover::after,
.testimonials .swiper-button-next:hover::after {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Partners Section
--------------------------------------------------------------*/
.partners .partner-card {
  height: 100%;
  background: var(--surface-elevated-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 82%);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 50px var(--panel-shadow-color);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.partners .partner-card.lead-organizer {
  border-color: color-mix(in srgb, var(--accent-color), transparent 62%);
  box-shadow: 0 24px 55px var(--panel-shadow-strong-color);
}
.partners .partner-logo-wrap {
  min-height: 132px;
  border-radius: 20px;
  background: var(--surface-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.partners .partner-logo {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.partners .partner-logo-enmice {
  width: min(100%, 420px);
}
.partners .partner-logo-kailinks {
  width: min(100%, 360px);
}
.partners .partner-copy h4 {
  margin: 0 0 10px 0;
  font-size: 28px;
}
.partners .partner-copy p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.partners .partner-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.partners .partner-badge-secondary {
  background: var(--secondary-badge-background);
  color: var(--secondary-badge-color);
}
.partners .sponsor-block {
  border-radius: 24px;
  background: var(--surface-muted-color);
  padding: 34px;
}
.partners .sponsor-header {
  margin-bottom: 22px;
}
.partners .sponsor-header h3 {
  margin-bottom: 10px;
  font-size: 28px;
}
.partners .sponsor-header p {
  margin: 0;
}
.partners .sponsor-card {
  min-height: 120px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 82%);
  border-radius: 18px;
  background: var(--surface-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}
.partners .sponsor-card span {
  font-family: var(--heading-font);
  font-size: 21px;
  font-weight: 600;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}
.partners .sponsor-card-open {
  border: 2px dashed color-mix(in srgb, var(--accent-color), transparent 72%);
}
.partners .sponsor-card-open span {
  font-size: 16px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}
.partners .sponsor-logo {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}
.partners .sponsor-logo-badge {
  max-height: 64px;
}
@media (max-width: 767px) {
  .partners .partner-card,
  .partners .sponsor-block {
    padding: 24px;
  }
  .partners .partner-copy h4,
  .partners .sponsor-header h3 {
    font-size: 24px;
  }
  .partners .partner-logo-wrap {
    min-height: 108px;
    padding: 16px;
  }
  .partners .sponsor-card {
    min-height: 104px;
    padding: 14px;
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .isotope-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
  padding: 0;
  list-style: none;
}
.gallery .isotope-filters li {
  display: inline-block;
  padding: 10px 20px;
  background: var(--surface-color);
  color: var(--default-color);
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.gallery .isotope-filters li:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
}
.gallery .isotope-filters li.filter-active {
  background: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
@media (max-width: 576px) {
  .gallery .isotope-filters {
    gap: 8px;
  }
  .gallery .isotope-filters li {
    padding: 8px 14px;
    font-size: 14px;
  }
}
.gallery .gallery-item {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .gallery .gallery-item {
    margin-bottom: 20px;
  }
}
.gallery .gallery-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
}
.gallery .gallery-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.gallery .gallery-card:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}
.gallery .gallery-card:hover .gallery-image img {
  transform: scale(1.1);
}
.gallery .gallery-image {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
  overflow: hidden;
}
.gallery .gallery-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gallery .gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  color: var(--contrast-color);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}
.gallery .gallery-overlay h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--contrast-color);
}
.gallery .gallery-overlay p {
  font-size: 14px;
  margin-bottom: 15px;
  opacity: 0.9;
}
.gallery .gallery-overlay .gallery-actions {
  display: flex;
  gap: 15px;
}
.gallery .gallery-overlay .gallery-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 18px;
  transition: 0.3s;
}
.gallery .gallery-overlay .gallery-actions a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: scale(1.1);
}
.gallery .glightbox-clean .gslide-description {
  background: #272727;
}
.gallery .glightbox-clean .gslide-title {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/*--------------------------------------------------------------
# Speaker Details 2 Section
--------------------------------------------------------------*/
.speaker-details-2 .speaker-header {
  position: relative;
}
.speaker-details-2 .speaker-header .speaker-image {
  position: relative;
  display: inline-block;
}
.speaker-details-2 .speaker-header .speaker-image img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(54, 144, 231, 0.15);
  border: 6px solid var(--surface-color);
}
.speaker-details-2 .speaker-header .speaker-image .keynote-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #4f46e5 30%));
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(54, 144, 231, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.speaker-details-2 .speaker-header .speaker-name {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}
.speaker-details-2 .speaker-header .speaker-title {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}
.speaker-details-2 .speaker-header .company-info .company-name {
  background: var(--surface-color);
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  color: var(--accent-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: inline-block;
}
.speaker-details-2 .speaker-header .social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.speaker-details-2 .speaker-header .social-links .social-link {
  width: 50px;
  height: 50px;
  background: var(--surface-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.speaker-details-2 .speaker-header .social-links .social-link:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(54, 144, 231, 0.25);
}
.speaker-details-2 .speaker-quote {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  border-left: 5px solid var(--accent-color);
}
.speaker-details-2 .speaker-quote .quote-content {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--heading-color);
  margin: 0;
  line-height: 1.6;
  position: relative;
}
.speaker-details-2 .speaker-quote .quote-content::before {
  content: '"';
  font-size: 4rem;
  color: var(--accent-color);
  position: absolute;
  top: -20px;
  left: -20px;
  opacity: 0.3;
  font-family: serif;
}
.speaker-details-2 .speaker-bio .bio-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}
.speaker-details-2 .speaker-bio .bio-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 1.5rem;
}
.speaker-details-2 .speaker-bio .bio-text:last-child {
  margin-bottom: 0;
}
.speaker-details-2 .speaker-sessions .sessions-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}
.speaker-details-2 .speaker-sessions .sessions-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.speaker-details-2 .speaker-sessions .session-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.speaker-details-2 .speaker-sessions .session-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.speaker-details-2 .speaker-sessions .session-card .session-type {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 6px 16px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}
.speaker-details-2 .speaker-sessions .session-card .session-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
}
.speaker-details-2 .speaker-sessions .session-card .session-description {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 20px;
  line-height: 1.6;
}
.speaker-details-2 .speaker-sessions .session-card .session-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}
@media (max-width: 768px) {
  .speaker-details-2 .speaker-sessions .session-card .session-meta {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
}
.speaker-details-2 .speaker-sessions .session-card .session-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.speaker-details-2 .speaker-sessions .session-card .session-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.speaker-details-2 .speaker-sessions .session-card .session-detail i {
  color: var(--accent-color);
  font-size: 16px;
}
.speaker-details-2 .speaker-sessions .session-card .session-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.speaker-details-2 .speaker-sessions .session-card .session-btn:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(54, 144, 231, 0.3);
}
.speaker-details-2 .speaker-actions .btn-action {
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.speaker-details-2 .speaker-actions .btn-action.btn-primary {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}
.speaker-details-2 .speaker-actions .btn-action.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(54, 144, 231, 0.3);
}
.speaker-details-2 .speaker-actions .btn-action.btn-outline-primary {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background: transparent;
}
.speaker-details-2 .speaker-actions .btn-action.btn-outline-primary:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .speaker-details-2 .speaker-header .speaker-name {
    font-size: 2rem;
  }
  .speaker-details-2 .speaker-header .speaker-image img {
    width: 150px;
    height: 150px;
  }
  .speaker-details-2 .speaker-header .social-links {
    gap: 10px;
  }
  .speaker-details-2 .speaker-header .social-links .social-link {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  .speaker-details-2 .speaker-quote {
    padding: 25px;
  }
  .speaker-details-2 .speaker-quote .quote-content {
    font-size: 1.1rem;
  }
  .speaker-details-2 .speaker-actions .btn-action {
    padding: 12px 20px;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
    width: 100%;
  }
  .speaker-details-2 .speaker-actions .btn-action.me-3 {
    margin-right: 0 !important;
  }
}

/*--------------------------------------------------------------
# Buy Tickets Section
--------------------------------------------------------------*/
.buy-tickets {
  background-color: color-mix(in srgb, var(--background-color), var(--surface-color) 5%);
}
.buy-tickets .ticket-form-wrapper {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.buy-tickets .event-info {
  text-align: center;
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  padding-bottom: 30px;
}
.buy-tickets .event-info h3 {
  color: var(--heading-color);
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 700;
}
.buy-tickets .event-info .event-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.buy-tickets .event-info .event-meta span {
  display: flex;
  align-items: center;
  color: var(--default-color);
  font-size: 14px;
}
.buy-tickets .event-info .event-meta span i {
  color: var(--accent-color);
  margin-right: 8px;
  font-size: 16px;
}
@media (max-width: 768px) {
  .buy-tickets .event-info .event-meta {
    flex-direction: column;
    gap: 15px;
  }
}
.buy-tickets .ticket-types {
  margin-bottom: 40px;
}
.buy-tickets .ticket-types h4 {
  color: var(--heading-color);
  margin-bottom: 25px;
  font-size: 1.5rem;
  font-weight: 600;
}
.buy-tickets .ticket-types .ticket-option {
  margin-bottom: 20px;
}
.buy-tickets .ticket-types .ticket-option input[type=radio] {
  display: none;
}
.buy-tickets .ticket-types .ticket-option .ticket-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: var(--surface-color);
}
.buy-tickets .ticket-types .ticket-option .ticket-label:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.buy-tickets .ticket-types .ticket-option input[type=radio]:checked + .ticket-label {
  border-color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  box-shadow: 0 5px 20px color-mix(in srgb, var(--accent-color), transparent 80%);
}
.buy-tickets .ticket-types .ticket-option .ticket-info {
  flex: 1;
}
.buy-tickets .ticket-types .ticket-option .ticket-info .ticket-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}
.buy-tickets .ticket-types .ticket-option .ticket-info .ticket-description {
  color: var(--default-color);
  font-size: 14px;
  margin-bottom: 12px;
}
.buy-tickets .ticket-types .ticket-option .ticket-info .ticket-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.buy-tickets .ticket-types .ticket-option .ticket-info .ticket-benefits span {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 4px 8px;
  border-radius: 4px;
}
.buy-tickets .ticket-types .ticket-option .ticket-price {
  text-align: right;
}
.buy-tickets .ticket-types .ticket-option .ticket-price .original-price {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: line-through;
  font-size: 14px;
  display: block;
  margin-bottom: 4px;
}
.buy-tickets .ticket-types .ticket-option .ticket-price .current-price {
  color: var(--accent-color);
  font-size: 1.5rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .buy-tickets .ticket-types .ticket-option .ticket-label {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .buy-tickets .ticket-types .ticket-option .ticket-benefits {
    justify-content: center;
  }
}
.buy-tickets .ticket-form .form-group {
  margin-bottom: 25px;
}
.buy-tickets .ticket-form .form-group label {
  color: var(--heading-color);
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
  font-size: 14px;
}
.buy-tickets .ticket-form .form-group input[type=text],
.buy-tickets .ticket-form .form-group input[type=email],
.buy-tickets .ticket-form .form-group input[type=tel],
.buy-tickets .ticket-form .form-group select,
.buy-tickets .ticket-form .form-group textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  padding: 12px 16px;
  width: 100%;
  transition: all 0.3s ease;
}
.buy-tickets .ticket-form .form-group input[type=text]:focus,
.buy-tickets .ticket-form .form-group input[type=email]:focus,
.buy-tickets .ticket-form .form-group input[type=tel]:focus,
.buy-tickets .ticket-form .form-group select:focus,
.buy-tickets .ticket-form .form-group textarea:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}
.buy-tickets .ticket-form .form-group input[type=text]::placeholder,
.buy-tickets .ticket-form .form-group input[type=email]::placeholder,
.buy-tickets .ticket-form .form-group input[type=tel]::placeholder,
.buy-tickets .ticket-form .form-group select::placeholder,
.buy-tickets .ticket-form .form-group textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.buy-tickets .ticket-form .form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}
.buy-tickets .pricing-summary {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 10px;
  padding: 25px;
  margin: 30px 0;
}
.buy-tickets .pricing-summary h5 {
  color: var(--heading-color);
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 600;
}
.buy-tickets .pricing-summary .summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--default-color);
}
.buy-tickets .pricing-summary .summary-row.total {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
}
.buy-tickets .pricing-summary .summary-row.total .total-price {
  color: var(--accent-color);
  font-size: 1.3rem;
  font-weight: 700;
}
.buy-tickets .pricing-summary .tax-note {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-align: center;
  margin-top: 15px;
  font-style: italic;
}
.buy-tickets .terms-checkbox,
.buy-tickets .newsletter-checkbox {
  margin-bottom: 20px;
}
.buy-tickets .terms-checkbox input[type=checkbox],
.buy-tickets .newsletter-checkbox input[type=checkbox] {
  margin-right: 10px;
}
.buy-tickets .terms-checkbox label,
.buy-tickets .newsletter-checkbox label {
  color: var(--default-color);
  font-size: 14px;
  cursor: pointer;
}
.buy-tickets .terms-checkbox label a,
.buy-tickets .newsletter-checkbox label a {
  color: var(--accent-color);
  text-decoration: none;
}
.buy-tickets .terms-checkbox label a:hover,
.buy-tickets .newsletter-checkbox label a:hover {
  text-decoration: underline;
}
.buy-tickets .form-submit {
  text-align: center;
  margin-top: 30px;
}
.buy-tickets .form-submit .btn-submit {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
  color: var(--contrast-color);
  border: none;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
}
.buy-tickets .form-submit .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}
.buy-tickets .form-submit .btn-submit:active {
  transform: translateY(0);
}
.buy-tickets .security-info {
  margin-top: 40px;
  text-align: center;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 30px;
}
.buy-tickets .security-info .security-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 25px;
}
.buy-tickets .security-info .security-badges .badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
}
.buy-tickets .security-info .security-badges .badge-item i {
  color: var(--accent-color);
  font-size: 18px;
}
.buy-tickets .security-info .payment-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.buy-tickets .security-info .payment-methods .payment-label {
  color: var(--default-color);
  font-size: 14px;
  font-weight: 500;
}
.buy-tickets .security-info .payment-methods .payment-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.buy-tickets .security-info .payment-methods .payment-icons i {
  color: var(--accent-color);
  font-size: 24px;
}
.buy-tickets .security-info .payment-methods .payment-icons .payment-text {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 13px;
}
@media (max-width: 768px) {
  .buy-tickets .security-info .security-badges {
    flex-direction: column;
    gap: 15px;
  }
  .buy-tickets .security-info .payment-methods {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .buy-tickets .ticket-form-wrapper {
    padding: 25px 20px;
  }
}

/*--------------------------------------------------------------
# Venue 2 Section
--------------------------------------------------------------*/
.venue-2 .venue-card {
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}
.venue-2 .venue-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.venue-2 .venue-card .venue-image {
  position: relative;
  overflow: hidden;
}
.venue-2 .venue-card .venue-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.venue-2 .venue-card .venue-image .venue-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.venue-2 .venue-card .venue-image .venue-badge i {
  font-size: 16px;
}
.venue-2 .venue-card .venue-content {
  padding: 30px;
}
.venue-2 .venue-card .venue-content h3 {
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 700;
}
.venue-2 .venue-card .venue-content .venue-address {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.venue-2 .venue-card .venue-content .venue-address i {
  color: var(--accent-color);
  font-size: 18px;
}
.venue-2 .venue-card .venue-content .venue-description {
  margin-bottom: 25px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.venue-2 .venue-card .venue-content .venue-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.venue-2 .venue-card .venue-content .venue-features .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
}
.venue-2 .venue-card .venue-content .venue-features .feature-item i {
  color: var(--accent-color);
  font-size: 16px;
}
@media (max-width: 576px) {
  .venue-2 .venue-card .venue-content .venue-features {
    grid-template-columns: 1fr;
  }
}
.venue-2 .directions-section .map-container {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.venue-2 .directions-section .map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
}
.venue-2 .directions-section .travel-options {
  margin-bottom: 30px;
}
.venue-2 .directions-section .travel-options h4 {
  margin-bottom: 25px;
  font-size: 20px;
  font-weight: 700;
}
.venue-2 .directions-section .travel-options .travel-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--surface-color);
  border-radius: 16px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}
.venue-2 .directions-section .travel-options .travel-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.venue-2 .directions-section .travel-options .travel-item .travel-icon {
  width: 50px;
  height: 50px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.venue-2 .directions-section .travel-options .travel-item .travel-icon i {
  color: var(--accent-color);
  font-size: 20px;
}
.venue-2 .directions-section .travel-options .travel-item .travel-info {
  flex: 1;
}
.venue-2 .directions-section .travel-options .travel-item .travel-info h5 {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 600;
}
.venue-2 .directions-section .travel-options .travel-item .travel-info p {
  margin-bottom: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
}
.venue-2 .directions-section .travel-options .travel-item .travel-info .travel-time {
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 600;
}
.venue-2 .directions-section .venue-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.venue-2 .directions-section .venue-actions .btn {
  flex: 1;
  min-width: 160px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.venue-2 .directions-section .venue-actions .btn.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}
.venue-2 .directions-section .venue-actions .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}
.venue-2 .directions-section .venue-actions .btn.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}
.venue-2 .directions-section .venue-actions .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}
@media (max-width: 576px) {
  .venue-2 .directions-section .venue-actions .btn {
    flex: none;
    width: 100%;
  }
}
.venue-2 .accommodation-section {
  margin-top: 60px;
  padding: 40px 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 24px;
}
.venue-2 .accommodation-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}
.venue-2 .accommodation-section .section-header h4 {
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 700;
}
.venue-2 .accommodation-section .section-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 16px;
}
.venue-2 .accommodation-section .hotel-card {
  background: var(--surface-color);
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}
.venue-2 .accommodation-section .hotel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.venue-2 .accommodation-section .hotel-card .hotel-rating {
  margin-bottom: 15px;
}
.venue-2 .accommodation-section .hotel-card .hotel-rating i {
  color: #ffd700;
  font-size: 16px;
  margin-right: 2px;
}
.venue-2 .accommodation-section .hotel-card h5 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
}
.venue-2 .accommodation-section .hotel-card .hotel-distance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
}
.venue-2 .accommodation-section .hotel-card .hotel-distance i {
  color: var(--accent-color);
}
.venue-2 .accommodation-section .hotel-card .hotel-price .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
}
.venue-2 .accommodation-section .hotel-card .hotel-price .period {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}
@media (max-width: 992px) {
  .venue-2 .directions-section {
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .venue-2 .venue-card .venue-content {
    padding: 25px 20px;
  }
  .venue-2 .accommodation-section {
    margin-top: 40px;
    padding: 30px 20px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .container {
  max-width: 1280px;
}
.contact .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 992px) {
  .contact .contact-wrapper {
    grid-template-columns: 38% 62%;
    gap: 30px;
  }
}
.contact .contact-info-panel {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 40%));
  color: var(--contrast-color);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.contact .contact-info-panel .contact-info-header {
  margin-bottom: 30px;
}
.contact .contact-info-panel .contact-info-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}
.contact .contact-info-panel .contact-info-header p {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.6;
}
.contact .contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: auto;
}
@media (min-width: 576px) and (max-width: 991px) {
  .contact .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
.contact .info-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}
.contact .info-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}
.contact .info-card .icon-container {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact .info-card .icon-container i {
  font-size: 20px;
  color: var(--contrast-color);
}
.contact .info-card .card-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--contrast-color);
}
.contact .info-card .card-content p {
  font-size: 14px;
  margin-bottom: 0;
  opacity: 0.8;
}
.contact .social-links-panel {
  margin-top: 35px;
}
.contact .social-links-panel h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--contrast-color);
}
.contact .social-links-panel .social-icons {
  display: flex;
  gap: 12px;
}
.contact .social-links-panel .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--contrast-color);
  font-size: 18px;
  transition: all 0.3s ease;
}
.contact .social-links-panel .social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}
.contact .contact-form-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact .map-container {
  display: none;
}
.contact .form-container {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}
.contact .form-container h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  background: linear-gradient(120deg, var(--heading-color), color-mix(in srgb, var(--heading-color), var(--accent-color) 30%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.contact .form-container p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 25px;
}
.contact .form-container .form-floating {
  margin-bottom: 20px;
}
.contact .form-container .form-floating .form-control {
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 24px 20px 8px 20px;
  height: calc(3.5rem + 3px);
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}
.contact .form-container .form-floating .form-control:focus {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 40%);
  background-color: var(--surface-color);
}
.contact .form-container .form-floating .form-control::placeholder {
  color: transparent;
}
.contact .form-container .form-floating label {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 1rem 1.25rem 2.5rem 1.25rem;
}
.contact .form-container .form-floating label::after {
  background-color: transparent;
}
.contact .form-container .btn-submit {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 30%));
  color: var(--contrast-color);
  border: none;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact .form-container .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 75%);
}
.contact .form-container .btn-submit i {
  transition: transform 0.3s ease;
}
.contact .form-container .btn-submit:hover i {
  transform: translateX(5px);
}
@media (max-width: 768px) {
  .contact .contact-info-panel {
    padding: 30px 25px;
  }
  .contact .form-container {
    padding: 30px 25px;
  }
}
@media (max-width: 576px) {
  .contact .social-links-panel .social-icons {
    flex-wrap: wrap;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}
.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}
.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}
.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}
.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}
.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}
.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}
.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}
.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}
.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}
.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}
.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}
.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}
.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}
.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}
.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}
@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}
.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}
.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}
.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}
.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}
.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}
.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}
.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}
.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}
.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}
.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}
.terms-of-service .tos-contact {
  margin-top: 60px;
}
.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}
.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}
.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}
.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}
.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}
.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
@media print {
  .terms-of-service .tos-contact {
    display: none;
  }
  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}
.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}
.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}
.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}
.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}
.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}
.privacy .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}
.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}
.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}
.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}
.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}
.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}
.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}
.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}
.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}
.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}
.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}
.privacy .privacy-contact p {
  margin-bottom: 20px;
}
.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}
.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}
.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}
.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}
@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }
  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }
  .privacy h1 {
    font-size: 24pt;
  }
  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }
  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }
  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }
  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}
@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }
  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }
  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }
  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }
  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }
  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 80px 0;
  margin: 0 auto;
}
.error-404 .error-icon {
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}
.error-404 .error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}
.error-404 .error-title {
  font-size: 2rem;
  color: var(--heading-color);
  font-weight: 600;
}
.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}
.error-404 .search-box {
  max-width: 500px;
  margin: 0 auto;
}
.error-404 .search-box .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.error-404 .search-box .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 50px;
}
.error-404 .search-box .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}
.error-404 .search-box .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}
.error-404 .search-box .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}
.error-404 .search-box .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}
.error-404 .error-action .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}
.error-404 .error-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
  }
  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }
  .error-404 .error-title {
    font-size: 1.5rem;
  }
  .error-404 .error-text {
    font-size: 1rem;
    padding: 0 20px;
  }
  .error-404 .search-box {
    margin: 0 20px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# ENMICE feedback refinements
--------------------------------------------------------------*/
.hero .hero-image-wrapper {
  max-width: 520px;
  margin-inline: auto;
}

.hero-visual-carousel {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(6, 24, 44, 0.2);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  background: var(--surface-color);
}

.hero-visual-carousel .carousel-item {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, rgba(14, 116, 214, 0.08), rgba(35, 197, 218, 0.1));
}

.hero .hero-image-wrapper .hero-visual-carousel .hero-image {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  max-height: none;
  object-fit: cover;
  object-position: center;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero .hero-image-wrapper .hero-visual-carousel .carousel-item:first-child .hero-image {
  object-fit: contain;
  padding: 14px;
  background: #fff;
}

.hero .hero-image-wrapper .hero-visual-carousel .carousel-item.hero-organizers-slide .hero-image {
  object-fit: cover;
  padding: 0;
  background: #f5f9fa;
}

.hero-slide-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, rgba(4, 20, 38, 0.82), rgba(14, 116, 214, 0.72));
  backdrop-filter: blur(10px);
}

.hero-slide-caption span,
.ecosystem-carousel .carousel-caption span {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-slide-caption strong,
.ecosystem-carousel .carousel-caption strong {
  font-size: clamp(0.9rem, 1.6vw, 1.08rem);
  line-height: 1.25;
}

.hero-visual-carousel .carousel-control-prev,
.hero-visual-carousel .carousel-control-next,
.ecosystem-carousel .carousel-control-prev,
.ecosystem-carousel .carousel-control-next {
  width: 12%;
}

.hero-visual-carousel .carousel-indicators {
  margin-bottom: 0.35rem;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent-color);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.ecosystem-showcase {
  padding: clamp(24px, 4vw, 42px);
  border-radius: 28px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 92%), color-mix(in srgb, var(--accent-secondary-color), transparent 90%)),
    var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 82%);
  box-shadow: 0 20px 55px color-mix(in srgb, var(--accent-color), transparent 88%);
}

.ecosystem-showcase h3 {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.08;
  margin-bottom: 1rem;
}

.ecosystem-showcase p {
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  margin-bottom: 0;
}

.ecosystem-carousel {
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
  background: #081a2f;
  box-shadow: 0 24px 50px rgba(6, 24, 44, 0.22);
}

.ecosystem-carousel img {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 320px;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.04);
}

.ecosystem-carousel .carousel-caption {
  left: 0;
  right: 0;
  bottom: 0;
  text-align: left;
  padding: 32px 28px 26px;
  background: linear-gradient(0deg, rgba(4, 18, 33, 0.9), transparent);
}

.schedule .schedule-header {
  margin-bottom: 26px;
}

.schedule .section-title {
  max-width: 980px;
}

.schedule .schedule-manifesto {
  max-width: 900px;
  margin: 0 auto 24px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: clamp(1.55rem, 3.4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  text-wrap: balance;
}

.schedule .schedule-manifesto::before {
  content: "🚀";
  display: block;
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.schedule .schedule-content .session-timeline {
  max-width: 980px;
}

.schedule .schedule-content .session-timeline .session-block {
  margin-bottom: 12px;
}

.schedule .schedule-content .session-timeline .session-block .session-card {
  padding: 16px 18px;
  align-items: center;
  gap: 14px;
}

.schedule .schedule-content .session-timeline .session-block .session-card:hover {
  transform: translateY(-2px);
}

.schedule .schedule-content .session-timeline .session-block .session-card .session-info .session-meta {
  margin-bottom: 7px;
}

.schedule .schedule-content .session-timeline .session-block .session-card .session-info .session-title {
  font-size: 1rem;
  margin-bottom: 4px;
}

.schedule .schedule-content .session-timeline .session-block .session-card .session-info .session-description {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 7px;
  line-height: 1.45;
}

.schedule .schedule-content .session-timeline .session-block .session-card .session-info .speaker-info {
  display: none;
}

.schedule-detail-btn {
  flex: 0 0 auto;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 55%);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
  transition: 0.2s ease;
}

.schedule-detail-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.schedule-detail-modal .modal-content {
  background: var(--surface-color);
  color: var(--default-color);
  border-radius: 22px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
}

.schedule-detail-modal .modal-track {
  display: inline-flex;
  color: var(--accent-color);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.schedule-detail-modal .modal-title {
  color: var(--heading-color);
  font-weight: 800;
}

.schedule-detail-modal .modal-description {
  line-height: 1.65;
}

.schedule-detail-modal .modal-meta {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 8px 14px;
  margin-bottom: 0;
}

.schedule-detail-modal dt {
  color: var(--heading-color);
  font-weight: 800;
}

.schedule-detail-modal dd {
  margin-bottom: 0;
}

.venue-2 .map-container iframe {
  min-height: 330px;
}

.venue-2 .map-container {
  position: relative;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-secondary-color), transparent 88%)),
    radial-gradient(circle at 24% 26%, rgba(255, 255, 255, 0.6), transparent 18%),
    var(--surface-color);
}

.venue-2 .map-fallback-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(6, 24, 44, 0.86), rgba(14, 116, 214, 0.74));
  box-shadow: 0 14px 28px rgba(6, 24, 44, 0.18);
  pointer-events: none;
  z-index: 1;
}

.venue-2 .map-fallback-card i {
  font-size: 1.4rem;
}

.venue-2 .map-fallback-card strong,
.venue-2 .map-fallback-card span {
  display: block;
  line-height: 1.2;
}

.venue-2 .map-fallback-card span {
  font-size: 0.82rem;
  opacity: 0.86;
}

.venue-2 .venue-carousel .carousel-item,
.venue-2 .venue-carousel img {
  width: 100%;
}

.venue-2 .venue-carousel img {
  height: 320px;
  object-fit: cover;
}

.contact .social-links-pending {
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.11);
}

.contact .social-links-pending p {
  margin-bottom: 0;
  opacity: 0.82;
  font-size: 0.92rem;
}

.partners .allies-block {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.partners .sponsor-card-open {
  gap: 0.75rem;
  color: color-mix(in srgb, var(--heading-color), transparent 14%);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 92%), color-mix(in srgb, var(--accent-secondary-color), transparent 94%)),
    var(--surface-color);
  border-style: dashed;
}

.partners .sponsor-card-open i {
  font-size: 1.8rem;
  color: var(--accent-color);
}

.contact .contact-mini {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 44px);
  border-radius: 28px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-secondary-color), transparent 90%)),
    var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  box-shadow: 0 22px 55px color-mix(in srgb, var(--accent-color), transparent 86%);
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
}

.contact .contact-mini h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.contact .contact-mini p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
}

.contact .contact-mini-actions {
  display: grid;
  gap: 18px;
}

.contact .contact-email-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 16px;
  color: var(--contrast-color);
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-secondary-color), transparent 12%));
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
  transition: 0.2s ease;
}

.contact .contact-email-btn:hover {
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.contact .contact-socials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.contact .contact-socials a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border-radius: 14px;
  color: var(--heading-color);
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 82%);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  transition: 0.2s ease;
}

.contact .contact-socials a i {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 9px;
  color: #ffffff;
  font-size: 1rem;
}

.contact .contact-socials .social-instagram i {
  color: #ffffff;
  background: radial-gradient(circle at 30% 105%, #ffd600 0 18%, #ff7a00 34%, #ff0169 56%, #d300c5 76%, #7638fa 100%);
}

.contact .contact-socials .social-facebook i {
  color: #ffffff;
  background: #1877f2;
}

.contact .contact-socials .social-linkedin i {
  color: #ffffff;
  background: #0a66c2;
}

.contact .contact-socials .social-kailinks i {
  color: #ffffff;
  background: linear-gradient(135deg, #a5123d 0 66%, #ef7d22 67% 100%);
}

.contact .contact-socials .social-instagram:hover {
  border-color: rgba(225, 48, 108, 0.45);
  box-shadow: 0 10px 22px rgba(225, 48, 108, 0.14);
}

.contact .contact-socials .social-facebook:hover {
  border-color: rgba(24, 119, 242, 0.45);
  box-shadow: 0 10px 22px rgba(24, 119, 242, 0.14);
}

.contact .contact-socials .social-linkedin:hover {
  border-color: rgba(10, 102, 194, 0.45);
  box-shadow: 0 10px 22px rgba(10, 102, 194, 0.14);
}

.contact .contact-socials .social-kailinks:hover {
  border-color: rgba(165, 18, 61, 0.45);
  box-shadow: 0 10px 22px rgba(165, 18, 61, 0.14);
}

.contact .contact-socials a:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 45%);
  box-shadow: 0 10px 22px color-mix(in srgb, var(--accent-color), transparent 84%);
}

.partners .sponsor-logo-kailinks {
  max-height: 72px;
}

html[data-theme=dark] .hero-visual-carousel,
html[data-theme=dark] .ecosystem-showcase,
html[data-theme=dark] .schedule-detail-modal .modal-content {
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

html[data-theme=dark] .partners .partner-logo-wrap,
html[data-theme=dark] .partners .sponsor-card,
html[data-theme=dark] .footer .footer-about .logo {
  background: #ffffff;
}

html[data-theme=dark] .page-space-field .space-object {
  opacity: 0.22;
  filter: saturate(1.35) drop-shadow(0 0 9px currentColor);
}

html:not([data-theme=dark]) .page-space-field .space-object {
  opacity: 0.18;
  filter: saturate(1.15);
}

html:not([data-theme=dark]) .hero .ornament {
  opacity: 0.22;
}

@media (max-width: 991px) {
  .hero .hero-image-wrapper {
    margin-top: 34px;
  }

  .hero-visual-carousel .hero-image {
    aspect-ratio: 4 / 4.7;
    max-height: 580px;
  }

  .ecosystem-carousel img {
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .schedule .schedule-content .session-timeline .session-block .session-card {
    display: grid;
    gap: 10px;
    padding: 14px;
  }

  .schedule-detail-btn {
    width: 100%;
  }

  .schedule-detail-modal .modal-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero-slide-caption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 11px 12px;
  }

  .ecosystem-showcase {
    padding: 20px 14px;
    border-radius: 22px;
  }

  .ecosystem-carousel {
    min-height: 250px;
  }

  .ecosystem-carousel img {
    min-height: 250px;
  }

  .ecosystem-carousel .carousel-caption {
    padding: 26px 18px 18px;
  }

  .contact .contact-mini {
    grid-template-columns: 1fr;
  }

  .contact .contact-socials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual-carousel,
  .ecosystem-carousel,
  .venue-carousel {
    scroll-behavior: auto;
  }
}

/* Mobile balance pass */
@media (max-width: 576px) {
  body.index-page {
    background:
      radial-gradient(circle at 12% 12%, rgba(176, 24, 76, 0.08), transparent 28%),
      radial-gradient(circle at 88% 18%, rgba(31, 184, 199, 0.12), transparent 32%),
      linear-gradient(180deg, #f7fbfb 0%, #edf7fb 55%, #fff8f2 100%);
  }

  .header .header-container {
    min-height: 70px;
    padding: 8px 12px;
  }

  .header .logo img {
    max-height: 54px;
  }

  .header .btn-getstarted {
    padding: 9px 16px;
    font-size: 0.88rem;
  }

  section,
  .section {
    padding: 44px 0;
    scroll-margin-top: 96px;
  }

  .hero {
    padding-top: 92px;
    padding-bottom: 28px;
    min-height: auto;
  }

  .hero .hero-title {
    font-size: clamp(2.15rem, 10vw, 2.72rem);
    line-height: 1.05;
    margin-bottom: 0.85rem;
  }

  .hero .hero-subtitle {
    font-size: 1.12rem;
    margin-bottom: 0.8rem;
  }

  .hero .hero-description {
    font-size: 0.98rem;
    line-height: 1.55;
    margin-bottom: 1.15rem;
  }

  .hero .event-details {
    gap: 0.72rem;
    margin-bottom: 1.2rem !important;
  }

  .hero .event-details .detail-item {
    gap: 0.65rem;
  }

  .hero .event-details .detail-item span {
    font-size: 0.94rem;
  }

  .hero .hero-actions {
    gap: 0.75rem;
    margin-bottom: 0;
  }

  .hero .hero-actions .btn {
    width: 100%;
    min-height: 54px;
    padding: 0.75rem 1rem;
    font-size: 0.98rem;
  }

  .hero .countdown-wrapper {
    display: none;
  }

  .hero .hero-image-wrapper {
    margin-top: 22px;
  }

  .hero-visual-carousel {
    border-radius: 22px;
  }

  .hero-visual-carousel .hero-image {
    aspect-ratio: 4 / 5;
    max-height: 560px;
  }

  .section-title {
    padding-bottom: 22px;
  }

  .section-title h2 {
    font-size: clamp(1.7rem, 8vw, 2.1rem);
  }

  .about .feature-card,
  .speakers .speaker-card,
  .call-to-action .cta-card,
  .venue-2 .venue-card,
  .partners .sponsor-block,
  .contact .contact-mini {
    border-radius: 20px;
  }

  .about .feature-card .feature-body {
    padding: 58px 24px 24px;
  }

  .about .feature-card h4 {
    font-size: 1.25rem;
  }

  .ecosystem-showcase {
    margin-top: 2rem !important;
  }

  .schedule .schedule-header {
    margin-bottom: 16px;
    position: static;
    padding: 6px 0;
    background: transparent;
    backdrop-filter: none;
  }

  .schedule .schedule-manifesto {
    margin-bottom: 20px;
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .schedule .schedule-header .nav-tabs {
    margin-bottom: 0;
  }

  .schedule .schedule-header .nav-tabs .nav-item .nav-link {
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.2;
  }

  .schedule .schedule-content .session-timeline .session-block {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 10px;
    margin-bottom: 10px;
  }

  .schedule .schedule-content .session-timeline .session-block .session-time {
    width: auto;
    padding-right: 0;
    text-align: left;
  }

  .schedule .schedule-content .session-timeline .session-block .session-time::after {
    display: none;
  }

  .schedule .schedule-content .session-timeline .session-block .session-time .start {
    font-size: 0.92rem;
  }

  .schedule .schedule-content .session-timeline .session-block .session-time .end {
    font-size: 0.78rem;
  }

  .schedule .schedule-content .session-timeline .session-block .session-card {
    margin-left: 0;
    padding: 13px;
    border-radius: 16px;
  }

  .schedule .schedule-content .session-timeline .session-block .session-card .session-info .session-title {
    font-size: 0.98rem;
  }

  .schedule .schedule-content .session-timeline .session-block .session-card .session-info .session-description {
    font-size: 0.84rem;
  }

  .call-to-action .stats-grid {
    gap: 0.75rem;
  }

  .call-to-action .submission-grid .stat-item {
    min-height: 92px;
    border-radius: 14px;
  }

  .call-to-action .cta-content h3 {
    font-size: 1.65rem;
  }

  .call-to-action .trust-indicators {
    gap: 0.9rem;
  }

  .venue-2 .directions-section .travel-options .travel-item {
    padding: 16px;
    gap: 14px;
  }

  .partners .sponsor-block {
    padding: 24px 18px;
  }

  .partners .sponsor-card {
    min-height: 104px;
    padding: 18px 12px;
  }

  .partners .sponsor-card-open {
    min-height: 92px;
  }

  .contact .contact-mini {
    padding: 22px 16px;
  }

  .contact .contact-mini h2 {
    font-size: 1.85rem;
  }

  .contact .contact-email-btn {
    min-height: 52px;
  }

  .page-space-field .space-object {
    opacity: 0.12;
  }

  html[data-theme=dark] .page-space-field .space-object {
    opacity: 0.18;
  }
}

/* Final visual QA refinements */
.about .features-grid {
  margin-bottom: 0;
}

.about .feature-mobile-tag {
  display: none;
}

.partners .sponsor-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.5rem;
}

.partners .sponsor-grid-item {
  min-width: 0;
}

.partners .sponsor-logo-badge {
  max-height: 74px;
}

.venue-2 .map-container {
  isolation: isolate;
  min-height: 260px;
  background:
    linear-gradient(30deg, transparent 0 46%, color-mix(in srgb, var(--accent-color), transparent 88%) 47% 48%, transparent 49% 100%),
    linear-gradient(150deg, transparent 0 42%, color-mix(in srgb, var(--accent-secondary-color), transparent 88%) 43% 44%, transparent 45% 100%),
    radial-gradient(circle at 22% 34%, color-mix(in srgb, var(--accent-color), transparent 70%) 0 4px, transparent 5px),
    radial-gradient(circle at 76% 24%, color-mix(in srgb, var(--accent-secondary-color), transparent 68%) 0 5px, transparent 6px),
    radial-gradient(circle at 68% 72%, color-mix(in srgb, var(--accent-color), transparent 74%) 0 4px, transparent 5px),
    color-mix(in srgb, var(--surface-color), var(--accent-color) 6%);
  background-size: 170px 120px, 190px 140px, auto, auto, auto, auto;
}

.venue-2 .map-container iframe {
  position: relative;
  z-index: 1;
  min-height: 260px;
  opacity: 0.24;
  filter: saturate(0.55) contrast(0.88);
}

.venue-2 .map-fallback-card {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}

html[data-theme=dark] .partners .sponsor-card-open {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 88%), color-mix(in srgb, var(--accent-secondary-color), transparent 92%)),
    var(--surface-color);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

html[data-theme=dark] .partners .sponsor-card-open span {
  color: color-mix(in srgb, var(--default-color), white 8%);
}

@media (max-width: 991px) {
  .partners .sponsor-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .header .header-container {
    column-gap: 6px;
  }

  .theme-toggle {
    order: 3;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    margin-left: 0;
    border-radius: 11px;
    box-shadow: none;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0;
    padding: 8px 12px;
  }

  .header .navmenu {
    order: 4;
  }

  .scroll-top {
    display: none !important;
  }

  .about .features-grid .row {
    --bs-gutter-y: 0.8rem;
  }

  .about .feature-card .feature-media {
    display: none;
  }

  .about .feature-card .feature-body {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    grid-template-areas:
      "icon tag"
      "icon title"
      "icon copy";
    column-gap: 14px;
    row-gap: 5px;
    padding: 18px !important;
  }

  .about .feature-card .feature-icon {
    grid-area: icon;
    width: 52px;
    height: 52px;
    margin: 0;
    border-radius: 15px;
    font-size: 1.35rem;
    align-self: start;
  }

  .about .feature-mobile-tag {
    grid-area: tag;
    display: block;
    color: var(--accent-color);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
  }

  .about .feature-card h4 {
    grid-area: title;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.2;
  }

  .about .feature-card p {
    grid-area: copy;
    margin-top: 2px;
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .call-to-action h2 {
    font-size: clamp(2rem, 10vw, 2.5rem);
    line-height: 1.08;
    margin-bottom: 1rem;
  }

  .call-to-action .lead {
    font-size: 1rem;
    line-height: 1.55;
  }

  .call-to-action .row.mt-5 {
    margin-top: 2rem !important;
  }

  .call-to-action .cta-card {
    padding: 1.25rem;
  }

  .call-to-action .stats-grid {
    gap: 0.65rem;
  }

  .call-to-action .submission-grid .stat-item {
    min-height: 108px;
    padding: 1rem 0.85rem;
  }

  .call-to-action .submission-grid .stat-number {
    max-width: 100%;
    font-size: clamp(1.15rem, 5.5vw, 1.35rem);
    letter-spacing: -0.035em;
    overflow-wrap: anywhere;
  }

  .call-to-action .submission-grid .stat-label {
    font-size: 0.75rem;
    line-height: 1.35;
  }

  .call-to-action .trust-indicators {
    justify-content: flex-start;
  }

  .venue-2 .map-container,
  .venue-2 .map-container iframe {
    min-height: 220px;
    height: 220px;
  }

  .venue-2 .map-fallback-card {
    left: 16px;
    right: 16px;
    padding: 13px 14px;
  }

  .partners .sponsor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .partners .sponsor-grid-item:last-child {
    grid-column: auto;
    width: auto;
    justify-self: stretch;
  }
}

/*--------------------------------------------------------------
# Hero motion, participation hub and venue spotlight
--------------------------------------------------------------*/
.hero-visual-carousel .carousel-item {
  transition: transform 0.72s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hero-visual-carousel .carousel-item .hero-image {
  transform: scale(1.035);
}

.hero-visual-carousel .carousel-item.active.is-settled .hero-image {
  animation: hero-visual-pan var(--slide-duration, 4300ms) ease-out both;
}

.hero-visual-carousel .carousel-item .hero-slide-caption {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  will-change: opacity, transform;
}

.hero-visual-carousel .carousel-item.active.is-settled .hero-slide-caption {
  animation: hero-caption-in 0.56s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-slide-progress {
  position: absolute;
  z-index: 4;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, #0e74d6, #35c4e8, #86c900);
  box-shadow: 0 2px 10px rgba(14, 116, 214, 0.35);
}

.hero-visual-carousel .carousel-item.active.is-settled .hero-slide-progress {
  animation: hero-slide-timer var(--slide-duration, 4300ms) linear both;
}

@keyframes hero-visual-pan {
  from { transform: scale(1.035); }
  to { transform: scale(1); }
}

@keyframes hero-caption-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-slide-timer {
  to { transform: scaleX(1); }
}

.call-to-action {
  background:
    radial-gradient(circle at 92% 12%, color-mix(in srgb, var(--accent-secondary-color), transparent 86%), transparent 28%),
    radial-gradient(circle at 8% 88%, color-mix(in srgb, #86c900, transparent 92%), transparent 24%),
    var(--background-color);
}

.participation-hub {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(126, 202, 255, 0.2);
  border-radius: 32px;
  background: linear-gradient(145deg, #071a31 0%, #0a2949 58%, #0b3b5f 100%);
  box-shadow: 0 30px 80px rgba(5, 25, 47, 0.22);
}

.participation-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 68px);
  color: rgba(255, 255, 255, 0.78);
}

.participation-kicker,
.venue-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 20px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.participation-kicker {
  color: #6edcff;
}

.participation-copy h3 {
  max-width: 590px;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(2.15rem, 4vw, 3.55rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.participation-copy > p:not(.participation-note) {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
  line-height: 1.7;
}

.participation-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 28px;
}

.participation-path {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.065);
  transition: 0.25s ease;
}

.participation-path:hover {
  transform: translateY(-3px);
  border-color: rgba(110, 220, 255, 0.38);
  background: rgba(255, 255, 255, 0.1);
}

.participation-path > i {
  display: grid;
  flex: 0 0 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: #6edcff;
  background: rgba(71, 189, 241, 0.14);
  font-size: 1.15rem;
}

.participation-path strong,
.participation-path span {
  display: block;
}

.participation-path strong {
  color: #ffffff;
  font-size: 0.98rem;
}

.participation-path span {
  margin-top: 2px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  line-height: 1.25;
  text-overflow: ellipsis;
}

.participation-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.participation-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 12px 20px;
  border-radius: 14px;
  font-weight: 800;
  transition: 0.25s ease;
}

.participation-actions .btn:hover {
  transform: translateY(-2px);
}

.participation-primary {
  color: #06192e;
  border: 1px solid #55cef5;
  background: linear-gradient(135deg, #6edcff, #3db6ee);
  box-shadow: 0 12px 28px rgba(61, 182, 238, 0.24);
}

.participation-primary:hover {
  color: #06192e;
  background: #89e5ff;
}

.participation-secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.participation-secondary:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.12);
}

.participation-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.79rem;
  line-height: 1.45;
}

.participation-note i {
  color: #86c900;
  font-size: 1rem;
}

.participation-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #061526;
}

.participation-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 18, 33, 0.05) 20%, rgba(5, 18, 33, 0.28) 55%, rgba(5, 18, 33, 0.94) 100%);
}

.participation-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  transition: transform 9s ease-out;
}

.participation-hub:hover .participation-media img {
  transform: scale(1.035);
}

.participation-date {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(5, 18, 33, 0.68);
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.participation-media-copy {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 4vw, 48px);
  bottom: clamp(26px, 4vw, 48px);
  left: clamp(24px, 4vw, 48px);
  color: #ffffff;
}

.participation-media-copy > span {
  display: block;
  margin-bottom: 8px;
  color: #6edcff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.participation-media-copy > strong {
  display: block;
  max-width: 620px;
  font-size: clamp(1.55rem, 2.6vw, 2.3rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.participation-audiences {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.participation-audiences span {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 700;
}

.venue-2 {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--accent-color), transparent 97%), color-mix(in srgb, var(--accent-secondary-color), transparent 95%)),
    var(--background-color);
}

.venue-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(360px, 0.66fr);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  border-radius: 30px;
  background: var(--surface-color);
  box-shadow: 0 26px 72px color-mix(in srgb, #06182c, transparent 84%);
}

.venue-map-pane {
  position: relative;
  min-height: 560px;
  background: color-mix(in srgb, var(--surface-color), var(--accent-color) 5%);
}

.venue-map-pane iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
  filter: saturate(0.82) contrast(0.96);
}

.venue-map-route {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  color: #ffffff;
  background: rgba(5, 24, 45, 0.9);
  box-shadow: 0 18px 38px rgba(4, 18, 34, 0.24);
  backdrop-filter: blur(14px);
  transition: 0.25s ease;
}

.venue-map-route:hover {
  color: #ffffff;
  transform: translateY(-3px);
  background: rgba(9, 58, 98, 0.94);
}

.venue-map-route-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 13px;
  color: #071a31;
  background: #6edcff;
  font-size: 1.15rem;
}

.venue-map-route small,
.venue-map-route strong {
  display: block;
}

.venue-map-route small {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.72rem;
}

.venue-map-route strong {
  font-size: 0.95rem;
}

.venue-brief {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4vw, 58px);
}

.venue-kicker {
  color: var(--accent-color);
}

.venue-brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 66px;
  margin-bottom: 24px;
  padding: 10px 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 15px;
  background: #ffffff;
}

.venue-brand img {
  width: auto;
  max-width: 180px;
  max-height: 44px;
  object-fit: contain;
}

.venue-brief h3 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.venue-brief address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  font-style: normal;
  line-height: 1.55;
}

.venue-brief address i {
  margin-top: 3px;
  color: var(--accent-color);
  font-size: 1.1rem;
}

.venue-date-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  padding: 14px 16px;
  border-radius: 15px;
  color: #ffffff;
  background: linear-gradient(135deg, #0e74d6, #209fe0);
}

.venue-date-block > i {
  font-size: 1.3rem;
}

.venue-date-block small,
.venue-date-block strong {
  display: block;
}

.venue-date-block small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.venue-date-block strong {
  font-size: 0.95rem;
}

.venue-access-note {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 24px;
  padding: 14px 16px;
  border: 1px solid color-mix(in srgb, #86c900, transparent 66%);
  border-radius: 15px;
  background: color-mix(in srgb, #86c900, transparent 93%);
}

.venue-access-note i {
  margin-top: 2px;
  color: #68a700;
  font-size: 1.1rem;
}

.venue-access-note p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
}

.venue-brief .venue-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.venue-brief .venue-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 12px;
  border-radius: 13px;
  font-size: 0.82rem;
  font-weight: 800;
}

.venue-brief .venue-actions .btn-primary {
  border-color: var(--accent-color);
  background: var(--accent-color);
}

.venue-brief .venue-actions .btn-outline {
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 20%);
}

.venue-brief .venue-actions .btn-outline:hover {
  color: #ffffff;
  background: var(--accent-color);
}

html[data-theme=dark] .venue-spotlight {
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.32);
}

@media (max-width: 991px) {
  .participation-hub,
  .venue-spotlight {
    grid-template-columns: 1fr;
  }

  .participation-media,
  .participation-media img {
    min-height: 420px;
  }

  .venue-map-pane,
  .venue-map-pane iframe {
    min-height: 430px;
  }

}

@media (max-width: 576px) {
  .participation-hub,
  .venue-spotlight {
    border-radius: 22px;
  }

  .participation-copy {
    padding: 25px 20px 28px;
  }

  .participation-copy h3 {
    font-size: 2.15rem;
  }

  .participation-copy > p:not(.participation-note) {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .participation-paths {
    gap: 8px;
  }

  .participation-path {
    display: block;
    min-height: 132px;
    padding: 12px;
  }

  .participation-path > i {
    width: 38px;
    height: 38px;
    margin-bottom: 12px;
  }

  .participation-path strong {
    font-size: 0.9rem;
  }

  .participation-path span {
    white-space: normal;
  }

  .participation-actions {
    display: grid;
  }

  .participation-media,
  .participation-media img {
    min-height: 330px;
  }

  .participation-date {
    top: 16px;
    right: 16px;
  }

  .participation-media-copy {
    right: 20px;
    bottom: 22px;
    left: 20px;
  }

  .participation-media-copy > strong {
    font-size: 1.55rem;
  }

  .venue-map-pane,
  .venue-map-pane iframe {
    min-height: 360px;
  }

  .venue-map-pane {
    order: 2;
  }

  .venue-brief {
    order: 1;
  }

  .venue-map-route {
    right: 12px;
    bottom: 12px;
    left: 12px;
    grid-template-columns: 40px 1fr auto;
    gap: 10px;
    padding: 11px 12px;
  }

  .venue-map-route-icon {
    width: 40px;
    height: 40px;
  }

  .venue-map-route small {
    display: none;
  }

  .venue-map-route strong {
    font-size: 0.78rem;
  }

  .venue-brief {
    padding: 28px 20px;
  }

  .venue-brief h3 {
    font-size: 2rem;
  }

  .venue-brief .venue-actions {
    grid-template-columns: 1fr;
  }

}

@media (prefers-reduced-motion: reduce) {
  .hero-visual-carousel .carousel-item.active .hero-image,
  .hero-visual-carousel .carousel-item.active .hero-slide-caption,
  .hero-visual-carousel .carousel-item.active .hero-slide-progress,
  .participation-hub:hover .participation-media img {
    animation: none;
    transform: none;
  }
}

/*--------------------------------------------------------------
# Banner-inspired continuous background
--------------------------------------------------------------*/
html:not([data-theme=dark]) body.index-page {
  background: #eef5f4;
}

html:not([data-theme=dark]) main.space-main {
  isolation: isolate;
  background:
    radial-gradient(circle at 6% 9%, rgba(177, 24, 76, 0.09), transparent 12%),
    radial-gradient(circle at 93% 18%, rgba(47, 142, 219, 0.13), transparent 14%),
    radial-gradient(circle at 8% 37%, rgba(31, 184, 199, 0.1), transparent 13%),
    radial-gradient(circle at 91% 55%, rgba(133, 189, 0, 0.1), transparent 14%),
    radial-gradient(circle at 7% 77%, rgba(210, 155, 93, 0.09), transparent 13%),
    radial-gradient(circle at 92% 91%, rgba(177, 24, 76, 0.08), transparent 12%),
    linear-gradient(180deg, #edf4f3 0%, #f5f8f7 20%, #edf6f8 46%, #f7f4ef 72%, #edf5f5 100%);
}

html:not([data-theme=dark]) main.space-main::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  opacity: 0.62;
  background:
    radial-gradient(circle at 9% 15%, transparent 0 54px, rgba(47, 75, 120, 0.08) 55px 56px, transparent 57px),
    radial-gradient(circle at 91% 32%, transparent 0 68px, rgba(31, 184, 199, 0.08) 69px 70px, transparent 71px),
    radial-gradient(circle at 8% 63%, transparent 0 44px, rgba(177, 24, 76, 0.07) 45px 46px, transparent 47px),
    linear-gradient(115deg, transparent 0 49.75%, rgba(47, 75, 120, 0.035) 50%, transparent 50.25%) 0 0 / 260px 330px;
}

html:not([data-theme=dark]) main.space-main > section {
  background-color: transparent;
}

html:not([data-theme=dark]) main.space-main > #hero {
  background: linear-gradient(135deg, rgba(234, 243, 243, 0.74), rgba(239, 248, 250, 0.6));
}

html:not([data-theme=dark]) main.space-main > #schedule,
html:not([data-theme=dark]) main.space-main > #gallery,
html:not([data-theme=dark]) main.space-main > #contact {
  background: rgba(220, 237, 244, 0.46);
}

html[data-theme=dark] main.space-main {
  background:
    radial-gradient(circle at 7% 13%, rgba(255, 143, 200, 0.09), transparent 13%),
    radial-gradient(circle at 92% 31%, rgba(105, 220, 255, 0.1), transparent 14%),
    radial-gradient(circle at 8% 64%, rgba(185, 236, 78, 0.07), transparent 13%),
    linear-gradient(180deg, #071422 0%, #091a2b 48%, #071522 100%);
}

.page-space-field {
  z-index: 2;
}

.space-main > section:not(#hero) {
  isolation: auto;
  z-index: auto;
}

.space-main > section:not(#hero) > .container {
  position: relative;
  z-index: 3;
}

.page-space-field::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    radial-gradient(circle, rgba(47, 75, 120, 0.42) 0 1.5px, transparent 2px),
    radial-gradient(circle, rgba(31, 184, 199, 0.36) 0 1px, transparent 1.6px);
  background-position: 5% 8%, 94% 14%;
  background-size: 210px 290px, 260px 340px;
}

.page-space-field .space-object {
  width: calc(var(--space-size) * 1.85);
  opacity: 0.3;
  filter: saturate(1.08) drop-shadow(0 3px 7px color-mix(in srgb, currentColor, transparent 76%));
}

html:not([data-theme=dark]) .page-space-field .space-object {
  opacity: 0.52;
}

.page-space-field .space-object::before {
  display: none;
  inset: -5%;
  border-width: 1.5px;
  opacity: 0.58;
}

.page-space-field .space-object.space-orbit::before {
  display: block;
}

.page-space-field .space-glyph {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: inherit;
  font-size: var(--space-size);
  line-height: 1;
  will-change: translate, rotate;
}

.page-space-field .space-glyph > i {
  position: relative;
  font-size: 1em;
  line-height: 1;
  animation: none;
}

.page-space-field .space-vector-object .space-glyph {
  font-size: calc(var(--space-size) * 1.2);
}

.page-space-field .space-glyph svg {
  width: 1em;
  height: 1em;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-space-field .space-vector-fill {
  fill: currentColor;
  stroke: none;
}

.page-space-field .space-vector-fill-soft {
  fill: currentColor;
  fill-opacity: 0.28;
}

.page-space-field .space-faller .space-glyph {
  animation: banner-space-travel var(--space-duration) linear var(--space-delay) infinite;
}

.page-space-field .space-floater .space-glyph {
  animation: banner-space-float var(--space-duration) ease-in-out var(--space-delay) infinite alternate;
}

.page-space-field .space-object:nth-child(3n)::after {
  top: -0.55em;
  right: -0.42em;
  font-size: calc(var(--space-size) * 0.5);
  opacity: 0.9;
}

.page-space-field .space-astronaut::before {
  display: block;
  inset: -10%;
  border-width: 2px;
  border-radius: 42% 42% 48% 48%;
  opacity: 0.55;
  transform: none;
}

html[data-theme=dark] .page-space-field .space-object {
  opacity: 0.38;
  filter: saturate(1.35) drop-shadow(0 0 11px color-mix(in srgb, currentColor, transparent 62%));
}

html:not([data-theme=dark]) .hero .ornament {
  opacity: 0.27;
  filter: saturate(1.18) drop-shadow(0 4px 8px color-mix(in srgb, currentColor, transparent 76%));
}

html[data-theme=dark] .hero .ornament {
  opacity: 0.38;
}

@keyframes banner-space-travel {
  0% {
    translate: 0 -90px;
    rotate: -12deg;
  }
  32% {
    translate: calc(var(--space-sway) * 0.55) calc(var(--space-travel) * 0.33);
    rotate: 7deg;
  }
  68% {
    translate: var(--space-sway) calc(var(--space-travel) * 0.72);
    rotate: -5deg;
  }
  100% {
    translate: 0 var(--space-travel);
    rotate: 12deg;
  }
}

@keyframes banner-space-float {
  0% {
    translate: calc(var(--space-sway) * -0.35) -34px;
    rotate: -14deg;
  }
  45% {
    translate: calc(var(--space-sway) * 0.65) calc(var(--space-travel) * 0.38);
    rotate: 9deg;
  }
  100% {
    translate: calc(var(--space-sway) * -0.2) calc(var(--space-travel) * 0.68);
    rotate: -7deg;
  }
}

@media (max-width: 576px) {
  html:not([data-theme=dark]) main.space-main {
    background:
      radial-gradient(circle at 5% 10%, rgba(177, 24, 76, 0.1), transparent 11%),
      radial-gradient(circle at 94% 28%, rgba(31, 184, 199, 0.12), transparent 12%),
      radial-gradient(circle at 6% 62%, rgba(133, 189, 0, 0.09), transparent 11%),
      linear-gradient(180deg, #edf4f3 0%, #f4f8f7 24%, #edf6f8 55%, #f7f3ed 78%, #edf5f5 100%);
  }

  html:not([data-theme=dark]) .page-space-field .space-object {
    opacity: 0.46;
  }

  html[data-theme=dark] .page-space-field .space-object {
    opacity: 0.32;
  }

  html:not([data-theme=dark]) .hero .ornament {
    opacity: 0.23;
  }

  html[data-theme=dark] .hero .ornament {
    opacity: 0.31;
  }

  .hero .countdown-wrapper {
    display: block;
    max-width: 100%;
    margin-top: 1rem !important;
  }

  .hero .countdown-wrapper .countdown-title {
    margin-bottom: 0.65rem;
    font-size: 0.82rem;
  }

  .hero .countdown-wrapper .countdown {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .hero .countdown-wrapper .countdown > div {
    padding: 0.72rem 0.35rem;
    border-radius: 11px;
  }

  .hero .countdown-wrapper .countdown > div h3 {
    font-size: 1.35rem;
  }

  .hero .countdown-wrapper .countdown > div h4 {
    font-size: 0.62rem;
    letter-spacing: 0.035em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-space-field .space-glyph {
    animation: none !important;
  }
}

/* Public program, thematic carousel and final venue refinements */
.axis-carousel {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 72%);
  border-radius: 30px;
  background: #06182c;
  box-shadow: 0 28px 70px color-mix(in srgb, #06182c, transparent 78%);
}

.axis-slide {
  position: relative;
  min-height: clamp(500px, 48vw, 590px);
  overflow: hidden;
}

.axis-slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.04);
  transform: scale(1.012);
  transition: transform 7s ease-out;
}

.axis-carousel .carousel-item.active .axis-slide > img {
  transform: scale(1.055);
}

.axis-carousel .carousel-item:nth-child(1) img {
  object-position: center 38%;
}

.axis-carousel .carousel-item:nth-child(2) img {
  object-position: center 34%;
}

.axis-carousel .carousel-item:nth-child(3) img,
.axis-carousel .carousel-item:nth-child(4) img,
.axis-carousel .carousel-item:nth-child(5) img {
  object-position: center 28%;
}

.axis-slide-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 18, 33, 0.9) 0%, rgba(3, 18, 33, 0.64) 48%, rgba(3, 18, 33, 0.08) 82%),
    linear-gradient(0deg, rgba(3, 18, 33, 0.92) 0%, transparent 58%);
}

.axis-slide-copy {
  position: absolute;
  z-index: 2;
  left: clamp(34px, 6vw, 78px);
  bottom: 92px;
  max-width: 650px;
  color: #ffffff;
}

.axis-number {
  display: inline-flex;
  margin-bottom: 15px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(7, 31, 54, 0.5);
  backdrop-filter: blur(9px);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.axis-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 15px;
  place-items: center;
  border-radius: 17px;
  color: #062038;
  background: linear-gradient(135deg, #75e1ff, #8fdb25);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  font-size: 1.45rem;
}

.axis-slide-copy h3 {
  max-width: 760px;
  margin-bottom: 12px;
  color: #ffffff;
  font-size: clamp(2.15rem, 4.2vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.axis-slide-copy p {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.95rem, 1.5vw, 1.12rem);
  line-height: 1.55;
}

.axis-carousel .carousel-control-prev,
.axis-carousel .carousel-control-next {
  width: 9%;
  opacity: 0.88;
}

.axis-carousel .carousel-control-prev-icon,
.axis-carousel .carousel-control-next-icon {
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background-color: rgba(4, 24, 44, 0.62);
  background-size: 46%;
  backdrop-filter: blur(8px);
}

.axis-carousel-indicators {
  z-index: 4;
  bottom: 22px;
  gap: 8px;
  margin-bottom: 0;
}

.axis-carousel .axis-carousel-indicators [data-bs-target] {
  width: 44px;
  height: 36px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(4, 24, 44, 0.58);
  opacity: 1;
  text-indent: 0;
  backdrop-filter: blur(8px);
  transition: 0.2s ease;
}

.axis-carousel .axis-carousel-indicators [data-bs-target] span {
  display: grid;
  height: 100%;
  place-items: center;
  font-size: 0.73rem;
  font-weight: 900;
}

.axis-carousel .axis-carousel-indicators .active {
  color: #06182c;
  border-color: #6edcff;
  background: #6edcff;
  box-shadow: 0 8px 24px rgba(50, 190, 235, 0.3);
}

.program-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(24px, 5vw, 64px);
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  border-radius: 28px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 94%), color-mix(in srgb, var(--accent-secondary-color), transparent 93%)),
    var(--surface-color);
  box-shadow: 0 24px 60px color-mix(in srgb, #06182c, transparent 87%);
}

.program-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--accent-color);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.program-preview-copy h3 {
  margin-bottom: 14px;
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.program-preview-copy p {
  max-width: 680px;
  margin-bottom: 22px;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  line-height: 1.65;
}

.program-update-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 850;
  text-decoration: none;
}

.program-update-link:hover {
  color: color-mix(in srgb, var(--accent-color), white 18%);
}

.program-dates {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.program-date-card {
  min-height: 190px;
  padding: 24px 16px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 74%);
  border-radius: 21px;
  background: color-mix(in srgb, var(--surface-color), var(--accent-color) 7%);
}

.program-date-card:first-child {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(150deg, #0e74d6, #33b9ec);
  box-shadow: 0 16px 34px rgba(14, 116, 214, 0.24);
}

.program-date-card span,
.program-date-card small,
.program-date-card strong {
  display: block;
}

.program-date-card span {
  font-weight: 800;
}

.program-date-card strong {
  margin: 5px 0;
  color: inherit;
  font-size: 3.25rem;
  line-height: 1;
}

.program-date-card small {
  color: inherit;
  opacity: 0.72;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.program-date-card em {
  display: inline-flex;
  width: fit-content;
  margin: 16px auto 0;
  padding: 6px 9px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.64rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  opacity: 0.72;
}

.participation-pending {
  flex-wrap: wrap;
  cursor: default;
  opacity: 0.78;
}

.participation-pending small {
  padding: 3px 6px;
  border-radius: 999px;
  color: #06192e;
  background: rgba(110, 220, 255, 0.9);
  font-size: 0.58rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.participation-pending:hover {
  color: var(--accent-color);
  background: transparent;
  transform: none;
}

.venue-spotlight {
  grid-template-columns: minmax(0, 0.94fr) minmax(390px, 1.06fr);
  max-width: 1120px;
  margin: 0 auto;
}

.venue-map-pane,
.venue-map-pane iframe {
  min-height: 420px;
}

.venue-brief {
  padding: clamp(26px, 2.7vw, 34px);
}

.venue-brand {
  min-height: 54px;
  margin-bottom: 16px;
  padding: 8px 13px;
}

.venue-brand img {
  max-height: 36px;
}

.venue-brief h3 {
  margin-bottom: 13px;
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
}

.venue-brief address {
  margin-bottom: 17px;
  line-height: 1.45;
}

.venue-date-block {
  margin-bottom: 12px;
  padding: 11px 14px;
}

.venue-access-note {
  margin-bottom: 17px;
  padding: 11px 14px;
}

.footer-contact a {
  color: var(--accent-color);
  font-weight: 700;
}

.privacy-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.privacy-link:hover {
  color: var(--accent-color);
}

html[data-theme=dark] .axis-carousel,
html[data-theme=dark] .program-preview {
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.36);
}

@media (max-width: 991px) {
  .axis-slide {
    min-height: 540px;
  }

  .program-preview {
    grid-template-columns: 1fr;
  }

  .program-dates {
    max-width: 500px;
  }

  .venue-spotlight {
    grid-template-columns: minmax(0, 1fr);
  }

  .venue-map-pane,
  .venue-map-pane iframe {
    min-height: 330px;
  }
}

@media (max-width: 576px) {
  .axis-carousel {
    border-radius: 22px;
  }

  .axis-slide {
    min-height: 510px;
  }

  .axis-slide-shade {
    background:
      linear-gradient(0deg, rgba(3, 18, 33, 0.97) 0%, rgba(3, 18, 33, 0.78) 47%, rgba(3, 18, 33, 0.12) 84%),
      linear-gradient(90deg, rgba(3, 18, 33, 0.36), transparent);
  }

  .axis-slide-copy {
    right: 24px;
    bottom: 82px;
    left: 24px;
  }

  .axis-number {
    margin-bottom: 10px;
  }

  .axis-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 10px;
    border-radius: 14px;
    font-size: 1.2rem;
  }

  .axis-slide-copy h3 {
    margin-bottom: 9px;
    font-size: clamp(1.72rem, 8.2vw, 2.15rem);
    line-height: 1.02;
  }

  .axis-slide-copy p {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .axis-carousel .carousel-control-prev,
  .axis-carousel .carousel-control-next {
    top: 18px;
    bottom: auto;
    width: 54px;
    height: 54px;
  }

  .axis-carousel .carousel-control-next {
    right: 8px;
  }

  .axis-carousel .carousel-control-prev {
    left: 8px;
  }

  .axis-carousel .carousel-control-prev-icon,
  .axis-carousel .carousel-control-next-icon {
    width: 36px;
    height: 36px;
  }

  .axis-carousel-indicators {
    bottom: 18px;
    gap: 6px;
  }

  .axis-carousel .axis-carousel-indicators [data-bs-target] {
    width: 36px;
    height: 32px;
    border-radius: 10px;
  }

  .program-preview {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .program-preview-copy h3 {
    font-size: 1.75rem;
  }

  .program-preview-copy p {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .program-update-link {
    padding-right: 48px;
  }

  .program-date-card {
    min-height: 174px;
    padding: 20px 10px;
    border-radius: 17px;
  }

  .program-date-card strong {
    font-size: 2.7rem;
  }

  .program-date-card small {
    font-size: 0.62rem;
  }

  .venue-map-pane,
  .venue-map-pane iframe {
    min-height: 300px;
  }

  .venue-map-route {
    grid-template-columns: 38px 1fr auto;
  }
}

/* Transition promise and organizer motion refinements */
.forum-promise {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  max-width: 980px;
  margin: 38px auto 0;
  padding: 23px 30px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 76%);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 20%, color-mix(in srgb, var(--accent-secondary-color), transparent 82%), transparent 24%),
    linear-gradient(120deg, color-mix(in srgb, var(--accent-color), transparent 91%), color-mix(in srgb, var(--surface-color), transparent 2%));
  box-shadow: 0 20px 48px color-mix(in srgb, #06182c, transparent 88%);
}

.forum-promise-icon {
  position: relative;
  z-index: 2;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 18px;
  color: #05213a;
  background: linear-gradient(135deg, #69dcff, #a2e329);
  box-shadow: 0 12px 28px rgba(29, 133, 183, 0.22);
  font-size: 1.45rem;
  animation: forum-rocket-float 4.8s ease-in-out infinite;
}

.forum-promise-kicker {
  display: block;
  margin-bottom: 4px;
  color: var(--accent-color);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.forum-promise p {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  font-weight: 750;
  line-height: 1.18;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.forum-promise-orbit {
  position: absolute;
  right: -38px;
  width: 210px;
  height: 82px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 72%);
  border-radius: 50%;
  transform: rotate(-12deg);
  animation: forum-orbit-drift 8s ease-in-out infinite alternate;
}

.schedule .section-title {
  padding-bottom: 38px;
}

.partners .sponsor-block {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, color-mix(in srgb, var(--accent-secondary-color), transparent 88%), transparent 23%),
    radial-gradient(circle at 94% 82%, color-mix(in srgb, var(--accent-color), transparent 88%), transparent 26%),
    var(--surface-muted-color);
}

.partners .sponsor-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.partners .sponsor-header {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.partners .sponsor-card {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  padding: 18px;
  transition: transform 0.34s ease, border-color 0.34s ease, box-shadow 0.34s ease;
}

.partners .sponsor-card::before {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 22px;
  left: 22px;
  height: 3px;
  border-radius: 0 0 999px 999px;
  content: "";
  background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary-color));
  opacity: 0.28;
  transform: scaleX(0.38);
  transition: opacity 0.34s ease, transform 0.34s ease;
}

.partners .sponsor-card::after {
  position: absolute;
  inset: -60% auto -60% -45%;
  width: 36%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.68), transparent);
  transform: rotate(18deg) translateX(-220%);
  transition: transform 0.72s ease;
  pointer-events: none;
}

.partners .sponsor-card:hover {
  z-index: 2;
  border-color: color-mix(in srgb, var(--accent-color), transparent 52%);
  box-shadow: 0 18px 38px color-mix(in srgb, #071b30, transparent 84%);
  transform: translateY(-7px);
}

.partners .sponsor-card:hover::after {
  transform: rotate(18deg) translateX(520%);
}

.partners .sponsor-card:hover::before {
  opacity: 0.9;
  transform: scaleX(1);
}

.partners .sponsor-logo {
  display: block;
  width: auto;
  max-width: 96%;
  max-height: 104px;
  margin: auto;
  transform-origin: center;
  animation: sponsor-logo-float 5.8s ease-in-out infinite;
}

.partners .sponsor-grid-item:nth-child(1) .sponsor-logo {
  scale: 1.06;
}

.partners .sponsor-grid-item:nth-child(2) .sponsor-logo {
  max-height: 96px;
  scale: 1.24;
  animation-delay: -1.4s;
}

.partners .sponsor-grid-item:nth-child(3) .sponsor-logo {
  scale: 1.08;
  animation-delay: -2.8s;
}

.partners .sponsor-grid-item:nth-child(4) .sponsor-logo {
  max-height: 96px;
  scale: 1.08;
  animation-delay: -4.2s;
}

.partners .sponsor-card-open {
  min-height: 112px;
}

@keyframes forum-rocket-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-2deg); }
  50% { transform: translate3d(3px, -5px, 0) rotate(3deg); }
}

@keyframes forum-orbit-drift {
  from { translate: 0 -3px; rotate: -2deg; }
  to { translate: -18px 5px; rotate: 3deg; }
}

@keyframes sponsor-logo-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.018); }
}

@media (max-width: 767px) {
  .forum-promise {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    margin-top: 26px;
    padding: 19px 17px;
    border-radius: 20px;
  }

  .forum-promise-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    font-size: 1.2rem;
    animation: none;
  }

  .forum-promise-orbit {
    animation: none;
  }

  .forum-promise p {
    font-size: clamp(0.98rem, 4.4vw, 1.1rem);
    line-height: 1.22;
  }

  .forum-promise-kicker {
    font-size: 0.64rem;
  }

  .partners .sponsor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .partners .sponsor-card {
    min-height: 126px;
    padding: 14px 12px;
  }

  .partners .sponsor-logo,
  .partners .sponsor-grid-item:nth-child(3) .sponsor-logo,
  .partners .sponsor-grid-item:nth-child(4) .sponsor-logo {
    max-width: 94%;
    max-height: 78px;
    animation: none;
  }

  .partners .sponsor-grid-item:nth-child(1) .sponsor-logo,
  .partners .sponsor-grid-item:nth-child(4) .sponsor-logo {
    scale: 1.17;
  }

  .partners .sponsor-grid-item:nth-child(2) .sponsor-logo {
    scale: 1.24;
  }

  .partners .sponsor-grid-item:nth-child(3) .sponsor-logo {
    scale: 1.12;
  }

  .partners .sponsor-card-open {
    min-height: 104px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .forum-promise-icon,
  .forum-promise-orbit,
  .partners .sponsor-logo {
    animation: none;
  }

  .partners .sponsor-card:hover {
    transform: none;
  }
}

/* Clear attendance/participation routes and aligned ally placeholders */
.participation-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.participation-actions .btn {
  min-height: 72px;
  padding: 12px 16px;
}

.participation-action-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
  text-align: left;
}

.participation-action-copy strong,
.participation-action-copy small {
  display: block;
}

.participation-action-copy strong {
  font-size: 0.96rem;
  line-height: 1.15;
}

.participation-action-copy small {
  font-size: 0.67rem;
  font-weight: 650;
  line-height: 1.25;
  opacity: 0.72;
}

.participation-secondary .participation-action-copy small {
  color: rgba(255, 255, 255, 0.76);
}

.partners .allies-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.partners .allies-grid .sponsor-card-open {
  display: grid;
  grid-template-rows: 42px minmax(44px, auto);
  gap: 9px;
  min-height: 128px;
  height: 100%;
  padding: 18px 14px;
  place-items: center;
}

.partners .allies-grid .sponsor-card-open i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  font-size: 1.7rem;
}

.partners .allies-grid .sponsor-card-open span {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.25;
}

.footer .footer-contact p {
  line-height: 1.5;
}

@media (max-width: 767px) {
  .partners .allies-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .partners .allies-grid .sponsor-card-open {
    min-height: 138px;
    padding: 16px 10px;
  }
}

@media (max-width: 576px) {
  .header .btn-getstarted {
    padding: 8px 10px;
    font-size: 0.76rem;
    white-space: nowrap;
  }

  .participation-actions {
    grid-template-columns: 1fr;
  }

  .participation-actions .btn {
    justify-content: flex-start;
    min-height: 68px;
    padding: 11px 16px;
  }

  .participation-action-copy strong {
    font-size: 0.94rem;
  }

  .participation-action-copy small {
    font-size: 0.7rem;
  }
}

/* Distinct attendance and participation routes */
.hero-route-selector {
  max-width: 680px;
}

.hero-route-intro {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  color: var(--heading-color);
  font-size: 0.88rem;
  font-weight: 750;
}

.hero-route-intro i {
  color: var(--accent-color);
  font-size: 1.05rem;
}

.hero-route-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-route-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 226px;
  flex-direction: column;
  align-items: flex-start;
  padding: 17px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface-color), transparent 4%);
  box-shadow: 0 14px 34px var(--panel-shadow-color);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.hero-route-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary-color));
  content: "";
}

.hero-route-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 55%);
  box-shadow: 0 18px 40px var(--panel-shadow-strong-color);
}

.hero-route-apply::before {
  background: linear-gradient(90deg, #8ac900, #35b9ff);
}

.hero-route-audience {
  margin-bottom: 6px;
  color: var(--accent-color);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.055em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-route-card h2 {
  margin: 0 0 7px;
  color: var(--heading-color);
  font-size: 1.08rem;
  line-height: 1.15;
}

.hero-route-card p {
  margin: 0 0 14px;
  color: var(--default-color);
  font-size: 0.79rem;
  line-height: 1.45;
}

.hero-route-card .btn {
  display: inline-flex;
  width: 100%;
  min-width: 0;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  padding: 10px 12px;
  border-radius: 11px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  text-transform: none;
}

.hero-route-actions {
  display: grid;
  width: 100%;
  gap: 10px;
  margin-top: auto;
}

.hero-route-actions .btn {
  margin-top: 0;
}

html:not([data-theme=dark]) .hero-route-card .btn-primary {
  --bs-btn-color: var(--accent-color);
  --bs-btn-bg: #ffffff;
  --bs-btn-border-color: var(--accent-color);
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: var(--accent-color);
  --bs-btn-hover-border-color: var(--accent-color);
  color: var(--accent-color);
  border-color: var(--accent-color);
  background-color: #ffffff;
  box-shadow: none;
}

html:not([data-theme=dark]) .hero-route-card .btn-primary:hover,
html:not([data-theme=dark]) .hero-route-card .btn-primary:focus-visible {
  color: #ffffff;
  border-color: var(--accent-color);
  background-color: var(--accent-color);
  box-shadow: 0 12px 26px color-mix(in srgb, var(--accent-color), transparent 72%);
}

html[data-theme=dark] .hero-route-card .btn-primary {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: var(--accent-color);
  --bs-btn-border-color: var(--accent-color);
  --bs-btn-hover-color: var(--accent-color);
  --bs-btn-hover-bg: #ffffff;
  --bs-btn-hover-border-color: #ffffff;
  color: #ffffff;
  border-color: var(--accent-color);
  background-color: var(--accent-color);
  box-shadow: 0 12px 26px color-mix(in srgb, var(--accent-color), transparent 76%);
}

html[data-theme=dark] .hero-route-card .btn-primary:hover,
html[data-theme=dark] .hero-route-card .btn-primary:focus-visible {
  color: var(--accent-color);
  border-color: #ffffff;
  background-color: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.hero-route-document {
  display: inline-flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 0;
  padding: 9px 11px;
  border: 1px solid #c52e61;
  border-radius: 11px;
  color: #83153d;
  background: #fff0f5;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  box-shadow: 0 8px 20px rgba(183, 24, 76, 0.1);
  transition: transform 0.2s ease, color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-route-document:hover {
  color: #ffffff;
  border-color: #a81445;
  background: #b7184c;
  box-shadow: 0 12px 26px rgba(183, 24, 76, 0.24);
  transform: translateY(-1px);
}

html[data-theme=dark] .hero-route-document {
  color: #ffd5e3;
  border-color: rgba(255, 121, 166, 0.7);
  background: rgba(183, 24, 76, 0.2);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

html[data-theme=dark] .hero-route-document:hover {
  color: #ffffff;
  border-color: #ff78a5;
  background: #c5265b;
  box-shadow: 0 12px 28px rgba(197, 38, 91, 0.28);
}

.participation-section-title {
  padding-bottom: 28px;
}

.call-to-action .participation-section-title h2 {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(2rem, 3.3vw, 2.85rem);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.participation-section-title > p {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.6;
}

.participation-community {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1.26fr);
  gap: 24px;
  max-width: 1120px;
  margin: 26px auto 0;
  padding: 22px 24px;
  text-align: left;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  border-radius: 22px;
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  box-shadow: 0 18px 45px var(--panel-shadow-color);
}

.participation-community-heading {
  display: flex;
  align-items: center;
  gap: 14px;
}

.participation-community-heading > i {
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  color: #ffffff;
  background: linear-gradient(145deg, var(--accent-color), var(--accent-secondary-color));
  box-shadow: 0 10px 22px color-mix(in srgb, var(--accent-color), transparent 72%);
  font-size: 1.15rem;
}

.participation-community-heading strong,
.participation-community-heading span {
  display: block;
}

.participation-community-heading strong {
  color: var(--heading-color);
  font-size: 0.98rem;
  line-height: 1.3;
}

.participation-community-heading span {
  margin-top: 4px;
  color: var(--default-color);
  font-size: 0.77rem;
  line-height: 1.4;
}

.participation-community-groups {
  display: flex;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}

.participation-community-groups span {
  display: inline-flex;
  max-width: 100%;
  min-height: 36px;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 72%);
  border-radius: 999px;
  color: var(--heading-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 0.75rem;
  font-weight: 750;
  line-height: 1.2;
  overflow-wrap: anywhere;
  white-space: normal;
}

.participation-community-groups i {
  color: var(--accent-color);
  font-size: 0.9rem;
}

.participation-paths-heading {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.participation-submit-panel {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 18px;
  padding: 15px;
  border: 1px solid rgba(110, 220, 255, 0.3);
  border-radius: 18px;
  background: rgba(61, 182, 238, 0.1);
}

.participation-submit-panel div,
.participation-submit-panel span,
.participation-submit-panel strong {
  display: block;
}

.participation-submit-panel span {
  margin-bottom: 4px;
  color: #6edcff;
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.055em;
  line-height: 1.25;
  text-transform: uppercase;
}

.participation-submit-panel strong {
  color: #ffffff;
  font-size: 0.88rem;
  line-height: 1.3;
}

.participation-submit-panel .btn {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 12px;
  font-weight: 800;
}

.preliminary-document {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  margin: 0 0 14px;
  padding: 14px 15px;
  border: 1px solid rgba(255, 196, 97, 0.34);
  border-radius: 17px;
  background: rgba(255, 183, 77, 0.09);
}

.preliminary-document > i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: #071a31;
  background: #ffd08a;
  font-size: 1.2rem;
}

.preliminary-document span,
.preliminary-document strong,
.preliminary-document small {
  display: block;
}

.preliminary-document span {
  margin-bottom: 2px;
  color: #ffd08a;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.preliminary-document strong {
  color: #ffffff;
  font-size: 0.84rem;
  line-height: 1.25;
}

.preliminary-document small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.67rem;
  line-height: 1.35;
}

.preliminary-document > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 208, 138, 0.42);
  border-radius: 10px;
  color: #fff3dd;
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.preliminary-document > a:hover {
  color: #071a31;
  background: #ffd08a;
}

.venue-brief .venue-brand {
  width: 100%;
  min-height: 94px;
  justify-content: center;
  margin-bottom: 20px;
  padding: 17px 20px;
}

.venue-brief .venue-brand img {
  width: min(100%, 300px);
  max-width: 300px;
  max-height: 72px;
}

.partners .sponsor-link {
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.partners .sponsor-link:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent-color), white 20%);
  outline-offset: 4px;
}

@media (max-width: 767px) {
  .hero-route-selector {
    max-width: 430px;
  }

  .hero-route-options {
    grid-template-columns: 1fr;
  }

  .hero-route-card {
    min-height: 0;
    padding: 16px;
  }

  .hero-route-card p {
    max-width: 360px;
  }

  .participation-section-title {
    padding-bottom: 22px;
  }

  .call-to-action .participation-section-title h2 {
    max-width: 430px;
    margin-bottom: 14px;
    font-size: clamp(1.7rem, 8vw, 2.1rem);
    line-height: 1.14;
  }

  .participation-community {
    grid-template-columns: 1fr;
    gap: 17px;
    margin-top: 20px;
    padding: 18px;
    border-radius: 18px;
  }

  .participation-community-groups {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .participation-community-groups span {
    min-width: 0;
    border-radius: 12px;
  }

  .participation-submit-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .participation-submit-panel .btn {
    width: 100%;
  }

  .preliminary-document {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .preliminary-document > i {
    width: 40px;
    height: 40px;
  }

  .preliminary-document > a {
    grid-column: 1 / -1;
    justify-content: center;
    min-height: 42px;
  }

  .venue-brief .venue-brand {
    min-height: 82px;
    padding: 14px 16px;
  }

  .venue-brief .venue-brand img {
    max-width: 250px;
    max-height: 60px;
  }
}

@media (max-width: 480px) {
  .participation-community-groups {
    grid-template-columns: 1fr;
  }

  .participation-community-groups span {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-route-card:hover {
    transform: none;
  }

  .hero-route-document:hover {
    transform: none;
  }
}

/*--------------------------------------------------------------
# Unified interactive feedback
--------------------------------------------------------------*/
:is(
  .header .btn-getstarted,
  .hero-route-card .btn,
  .hero-route-document,
  .program-update-link,
  .preliminary-document > a,
  .participation-submit-panel .btn,
  .venue-map-route,
  .venue-brief .venue-actions .btn,
  .contact .contact-email-btn,
  .contact .contact-socials a,
  .theme-toggle,
  .scroll-top
) {
  transform-origin: center;
  transition:
    transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.22s ease,
    color 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    filter 0.22s ease;
}

@media (hover: hover) and (pointer: fine) {
  :is(
    .header .btn-getstarted,
    .hero-route-card .btn,
    .hero-route-document,
    .program-update-link,
    .preliminary-document > a,
    .participation-submit-panel .btn,
    .venue-map-route,
    .venue-brief .venue-actions .btn,
    .contact .contact-email-btn,
    .contact .contact-socials a,
    .theme-toggle,
    .scroll-top
  ):hover {
    transform: translateY(-3px);
    filter: saturate(1.08);
  }
}

:is(
  .header .btn-getstarted,
  .hero-route-card .btn,
  .hero-route-document,
  .program-update-link,
  .preliminary-document > a,
  .participation-submit-panel .btn,
  .venue-map-route,
  .venue-brief .venue-actions .btn,
  .contact .contact-email-btn,
  .contact .contact-socials a,
  .theme-toggle,
  .scroll-top,
  .partners .sponsor-link,
  .carousel-control-prev,
  .carousel-control-next,
  .carousel-indicators button
):focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent-color), white 24%);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent-color), transparent 78%);
}

:is(
  .header .btn-getstarted,
  .hero-route-card .btn,
  .hero-route-document,
  .program-update-link,
  .preliminary-document > a,
  .participation-submit-panel .btn,
  .venue-map-route,
  .venue-brief .venue-actions .btn,
  .contact .contact-email-btn,
  .contact .contact-socials a,
  .theme-toggle,
  .scroll-top
):active {
  transform: translateY(0) scale(0.985);
  transition-duration: 0.08s;
}

@media (prefers-reduced-motion: reduce) {
  :is(
    .header .btn-getstarted,
    .hero-route-card .btn,
    .hero-route-document,
    .program-update-link,
    .preliminary-document > a,
    .participation-submit-panel .btn,
    .venue-map-route,
    .venue-brief .venue-actions .btn,
    .contact .contact-email-btn,
    .contact .contact-socials a,
    .theme-toggle,
    .scroll-top
  ) {
    transition-duration: 0.01ms;
  }

  :is(
    .header .btn-getstarted,
    .hero-route-card .btn,
    .hero-route-document,
    .program-update-link,
    .preliminary-document > a,
    .participation-submit-panel .btn,
    .venue-map-route,
    .venue-brief .venue-actions .btn,
    .contact .contact-email-btn,
    .contact .contact-socials a,
    .theme-toggle,
    .scroll-top
  ):hover,
  :is(
    .header .btn-getstarted,
    .hero-route-card .btn,
    .hero-route-document,
    .program-update-link,
    .preliminary-document > a,
    .participation-submit-panel .btn,
    .venue-map-route,
    .venue-brief .venue-actions .btn,
    .contact .contact-email-btn,
    .contact .contact-socials a,
    .theme-toggle,
    .scroll-top
  ):active {
    transform: none;
  }
}

/*# sourceMappingURL=main.css.map */
