/* assets/css/style.css */

/* --- General Button Styles --- */
.btn {
  display: inline-block;
  padding: 16px 28px;
  font-family: "Circular", sans-serif;
  font-size: 16px;
  font-weight: 400;
  border-radius: 100px;
  transition: background-color 0.3s, color 0.3s;
  text-align: center;
}

.btn-buyer {
  background-color: var(--color-primary);
  color: var(--color-light);
}
.btn-buyer:hover {
  background-color: var(--color-accent);
  color: var(--color-light);
}

.btn-faq {
  background-color: var(--color-secondary);
  color: var(--color-light);
}
.btn-faq:hover {
  background-color: var(--color-accent);
  color: var(--color-light);
}

.btn-exhibitor {
  background-color: var(--color-success);
  color: var(--color-light);
}
.btn-exhibitor:hover {
  background-color: var(--color-success);
  color: var(--color-light);
}

.btn-info {
  background-color: var(--color-info);
  color: white;
}
.btn-info:hover {
  background-color: #005a9e; /* Darker blue */
}

.btn-cta {
  background-color: var(--color-secondary);
  color: var(--color-light);
}
.btn-cta:hover {
  background-color: var(--color-accent);
  color: var(--color-light);
}

/* --- Main Header Styles --- */
.site-header {
  position: relative;
}

.header-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 10px 0;
  color: white;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-logo img {
  width: 130px;
}

.header-info {
  font-size: 12px;
  line-height: 1.3;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 26px;
}

.main-nav a {
  color: white;
  font-size: 16px;
  padding: 10px 0;
  position: relative;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: var(--color-accent); /* #614aff */
}

/* Style for the currently active navigation link */
.main-nav ul li a.active,
.offcanvas-nav ul li a.active {
  color: var(
    --color-primary
  ) !important; /* Use !important to override any existing color styles */
}

/* Optional: Style for the parent dropdown item when a child is active */
.main-nav ul li.active-parent > a {
  color: var(--color-primary) !important;
}

/* Dropdown Menu */
.nav-item.has-dropdown {
  position: relative;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--color-light); /* #181a35 */
  padding: 10px;
  border-radius: 5px;
  min-width: 200px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.nav-item.has-dropdown:hover .dropdown {
  display: block;
}

.dropdown a {
  display: block;
  padding: 8px 12px;
  white-space: nowrap;
  color: var(--color-secondary);
  font-weight: bold;
}

/* --- Sticky Header --- */
.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--color-secondary);
  background-color: var(--color-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(-100%); /* Start hidden */
  transition: transform 0.5s ease;
  padding: 10px 0;
  z-index: 999;
}

.header-sticky.is-sticky {
  transform: translateY(0);
}

.header-sticky .header-info {
  color: var(--color-secondary);
  border-left-color: rgba(0, 0, 0, 0.2);
}

.header-sticky .main-nav a {
  color: var(--color-secondary);
}

/* Use a bright accent for hover on the dark background */
.header-sticky .main-nav a:hover {
  color: var(--color-accent);
}

/* --- Mobile Header & Off-canvas Menu --- */
.header-mobile {
  display: none; /* Hidden by default */
  padding: 10px 0;
  background-color: var(--color-secondary);
  position: fixed;
  width: 100%;
  z-index: 1000;
}

/* Ensure the hero section on the homepage has enough top margin to clear the header */
.is-home .hero-section {
  margin-top: 0; /* Override the negative margin on the homepage */
}

/* Remove the 139px padding from the body/wrapper on the homepage */
.is-home.page-wrapper {
  padding-top: 0;
}

.mobile-menu-toggle,
.mobile-menu-close {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Make hamburger icon light on the dark background */
.mobile-menu-toggle {
  color: var(--color-light);
}

/* Keep close icon light on the dark offcanvas menu */
.mobile-menu-close {
  color: var(--color-light);
}

.offcanvas-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-secondary);
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 1001;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.offcanvas-menu.is-open {
  transform: translateX(0);
}

.offcanvas-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.offcanvas-nav ul {
  list-style: none;
}

.offcanvas-nav li {
  margin-bottom: 20px;
}

.offcanvas-nav a {
  color: var(--color-light);
  font-size: 25px;
  font-weight: 400;
}
.offcanvas-nav a:hover {
  color: var(--color-accent);
}

.offcanvas-buttons {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* --- Hero Section Styles --- */
.hero-section {
  position: relative;
  height: 928px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  overflow: hidden;
  margin-top: -139px; /* This pulls it up behind the header space */
}

.video-background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-background {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures video covers the container */
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-secondary);
  opacity: 0.8;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-logo img {
  width: 400px;
  max-width: 90vw; /* Ensures logo is not too big on small screens */
}

.hero-tagline {
  font-family: "Circular", sans-serif;
  font-size: 25px;
  font-weight: 300;
  line-height: 1.2;
  max-width: 472px; /* Matches original width constraint */
}

.hero-cta-button {
  position: absolute;
  bottom: -150px; /* Position it lower, can be adjusted */
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 20px;
  font-weight: 400;
  color: white;
  transition: color 0.3s;
}

.hero-cta-button:hover {
  color: #aea1ff;
}

.hero-cta-button .play-icon {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.hero-cta-button:hover .play-icon {
  transform: scale(1.1);
}

/* --- Global Exhibition Section Styles --- */
.global-exhibition-section {
  background-color: var(--color-secondary);

  background-repeat: no-repeat, repeat-x; /* Set repeat for each layer */
  background-size: cover, contain; /* Set size for each layer */

  padding: 80px 0 50px 0;
  color: white;
  text-align: center;
}

.section-title {
  font-family: "Circular", sans-serif;
  font-size: 35px;
  font-weight: 600;
  line-height: 1.1;
  max-width: 650px;
  margin: 0 auto 20px auto;
  text-align: center;
  color: var(--color-secondary);
}

.section-subtitle {
  font-family: "Circular", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.3;
  max-width: 368px;
  margin: 0 auto 50px auto;
}

/* Split Layout Styling */
.split-layout {
  display: flex;
  align-items: center;
  gap: 100px;
  margin-bottom: 50px;
}

.split-layout.reverse {
  flex-direction: row-reverse;
}

.split-item {
  flex: 1; /* Each item takes up equal space */
}

.split-item.text-block {
  text-align: left;
}

.split-item.text-block h3 {
  font-family: "Circular", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
}

.split-item.image-block img {
  border-radius: 15px;
  width: 100%;
  height: 375px;
  object-fit: cover;
}

/* --- Who Will Attend Section --- */
.who-will-attend-section {
  background: linear-gradient(
    180deg,
    var(--color-secondary) 0%,
    var(--color-dark) 100%
  );
  padding: 80px 0;
  color: white;
}

.section-title.dark {
  color: white;
  text-align: center;
  font-size: 29px;
  font-weight: 400;
  margin-bottom: 40px;
}

/* Tab System */
.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.tab-btn {
  font-family: "Circular", sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.84);
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  padding: 12px 25px;
  border-radius: 100px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.tab-btn:hover,
.tab-btn.active {
  background-color: var(--color-primary);
  color: white;
}

.tab-panel {
  display: none; /* Hide all panels by default */
  text-align: center;
}

.tab-panel.active {
  display: block; /* Show only the active one */
}

.panel-subtitle {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.35;
  max-width: 550px;
  margin: 0 auto 30px auto;
}

/* World Map and Stats */
.world-map-container {
  position: relative;
  max-width: 817px; /* Matches original container width */
  margin: 0 auto;
  min-height: 520px;
}

.world-map-bg {
  width: 100%;
}

.map-stats {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.stat-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.stat-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  font-family: "Circular", sans-serif;
  font-weight: 400;
  border: 0 solid #ff4e4d;
}

.stat-label {
  font-size: 17px;
  font-weight: 400;
}

/* Positioning for Buyer stats */
.stat-item.americas {
  top: 38%;
  left: 15%;
}
.stat-item.americas .stat-circle {
  background-color: var(--color-info);
  width: 70px;
  height: 70px;
  font-size: 22px;
}
.stat-item.europe {
  top: 20%;
  left: 45%;
}
.stat-item.europe .stat-circle {
  background-color: var(--color-primary);
  width: 120px;
  height: 120px;
  font-size: 31px;
}
.stat-item.mideast {
  top: 40%;
  left: 75%;
}
.stat-item.mideast .stat-circle {
  background-color: var(--color-accent);
  width: 100px;
  height: 100px;
  font-size: 24px;
}

/* Positioning for Exhibitor stats */
.stat-item.americas-ex {
  top: 15%;
  left: 18%;
}
.stat-item.americas-ex .stat-circle {
  background-color: #ee7e79;
  width: 70px;
  height: 70px;
  font-size: 22px;
}
.stat-item.europe-ex {
  top: 30%;
  left: 42%;
}
.stat-item.europe-ex .stat-circle {
  background-color: var(--color-accent);
  width: 110px;
  height: 110px;
  font-size: 29px;
}
.stat-item.mideast-ex {
  top: 55%;
  left: 60%;
}
.stat-item.mideast-ex .stat-circle {
  background-color: var(--color-primary);
  width: 100px;
  height: 100px;
  font-size: 24px;
}
.stat-item.apac-ex {
  top: 45%;
  left: 85%;
}
.stat-item.apac-ex .stat-circle {
  background-color: var(--color-success);
  width: 70px;
  height: 70px;
  font-size: 22px;
}

/* --- Event Programme Section --- */
.programme-section {
  padding: 60px 0 80px 0;
  background-color: var(--color-light); /* White background */
}

.programme-section .section-title {
  color: var(--color-secondary); /* Dark text */
  text-align: center;
  font-size: 29px;
  margin-bottom: 20px;
}

.programme-section .section-subtitle {
  color: var(--color-secondary);
  text-align: center;
  max-width: 520px;
  margin-bottom: 40px;
}

.programme-layout {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.programme-image-column {
  flex: 1; /* Takes up 50% of the space */
  border-radius: 15px;
  background-size: cover; /* Ensures the background image covers the area */
  background-position: center; /* Centers the background image */
}

.programme-details-column {
  flex: 1; /* Takes up 50% of the space */
  background-color: var(--color-secondary);
  color: white;
  padding: 50px;
  border-radius: 15px;
}

.day-schedule h4 {
  font-family: "Circular", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.day-schedule ul {
  list-style: none;
  padding-left: 0;
}

.day-schedule li {
  font-family: "Circular", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 8px;
}

.divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.35);
  margin: 20px 0;
}

@media (max-width: 767px) {
  .programme-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}

/* --- Testimonials Section --- */
.testimonials-section {
  padding: 60px 0 80px 0;
  background-color: var(--color-primary);
  background-image: url("../images/Group-10072.webp");
  background-position: top center;
  background-size: cover;
}

.testimonials-section .section-title {
  color: #fff;
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
}

.testimonial-card {
  background-color: #fff;
  border-radius: 8px;
  border-bottom: 8px solid var(--e-global-color-19c43f6); /* #614aff */
  min-height: 420px;
  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-content {
  text-align: left;
}

.testimonial-logo {
  max-width: 180px;
  height: auto;
  margin-bottom: 20px;
}

.testimonial-quote {
  font-family: "Circular", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--color-primary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid #6b54fe;
  margin-top: 30px;
}

.author-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 5px;
}

.author-title {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
}

/* Swiper Navigation Arrows */
.testimonials-slider {
  position: relative;
  padding: 0 50px; /* Space for arrows */
}

.swiper-button-prev,
.swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border: 1px solid var(--e-global-color-3564b9b);
  border-radius: 50%;
  color: black;
  transition: background-color 0.3s;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: #f0f0f0;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 15px; /* Make arrows smaller */
  font-weight: bold;
}

.swiper-button-prev {
  left: 0;
}
.swiper-button-next {
  right: 0;
}

/* --- Logo Carousel Sections --- */
.logo-carousel-section {
  padding: 40px 0;
  background-color: #fff;
}

.logo-carousel-section .section-title {
  color: var(--color-secondary);
  text-align: center;
  font-size: 21px;
  font-weight: 400;
  margin-bottom: 30px;
}

.logo-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}

.logo-slider img {
  max-width: 150px;
  height: 80px;
  object-fit: contain; /* Ensures logos aren't stretched */
  filter: grayscale(100%);
  opacity: 0.8;
  transition: filter 0.3s, opacity 0.3s;
}

.logo-slider img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.section-divider {
  height: 1px;
  background-color: #e0e0e0;
  max-width: 1280px;
  margin: 0 auto;
}

/* --- Why Attend Section --- */
.why-attend-section {
  padding: 70px 0;
  background-color: var(--color-light); /* White background */
}

.why-attend-intro {
  background-color: #fff;
  padding: 50px;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 30px;
}

.why-attend-intro .section-title {
  color: var(--color-primary); /* Dark text */
  font-size: 30px;
}

.why-attend-intro .section-subtitle {
  color: var(--color-secondary);
  max-width: 455px;
  margin-top: 10px;
}

.cta-card-container {
  display: flex;
  gap: 30px;
}

.cta-card {
  flex: 1; /* Each card takes 50% width */
  position: relative;
  min-height: 400px;
  border-radius: 15px;
  overflow: hidden; /* This is key for the hover effect */
  display: flex;
  align-items: flex-end; /* Align content to the bottom */
  text-decoration: none;
}

.card-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.5s ease;
}

.cta-card:hover .card-background {
  transform: scale(1.05); /* Subtle zoom on hover */
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(24, 26, 53, 0) 0%, #181a35 100%);
  opacity: 1;
  z-index: 2;
}

.card-content {
  position: relative;
  z-index: 3;
  padding: 40px;
  width: 100%;
}

.card-title {
  font-family: "Circular", sans-serif;
  font-size: 30px;
  font-weight: 400;
  color: #fff;
  margin: 0;
  transition: margin-bottom 0.5s ease;
}

.card-hover-content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  margin-top: 20px;
}

.cta-card:hover .card-hover-content {
  opacity: 1;
  transform: translateY(0);
}

.btn-find-out {
  background-color: var(--color-success);
  color: white;
  padding: 18px 32px;
}
.btn-find-out.red {
  background-color: var(--color-primary);
}

/* ============================================= */
/* == START: KEY STATS SECTION STYLES         == */
/* ============================================= */

.stats-section {
  background-color: var(--color-secondary); /* Dark background */
  padding: 50px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-section .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 30px; /* Provides space between items */
}

.key-stat-item {
  display: flex;
  flex-direction: column;
  color: white;
}

.key-stat-number {
  font-family: "Circular", sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--color-primary);
}

.key-stat-label {
  font-size: 16px;
  font-weight: 300;
  color: white;
  opacity: 0.9;
  margin-top: 5px;
}

/* Responsive adjustments for the stats section */
@media (max-width: 767px) {
  .stats-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2x2 grid on mobile for better look */
    gap: 40px 20px;
  }
  .key-stat-number {
    font-size: 38px;
  }
  .key-stat-label {
    font-size: 14px;
  }
}
/* ============================================= */
/* == END: KEY STATS SECTION STYLES           == */
/* ============================================= */

/* --- Footer --- */
.site-footer-wrapper {
  color: var(--color-light); /* Set default text color for the whole footer */
  background-color: var(--color-secondary); /* Main background color (Navy) */
}

.footer-main {
  /* This inherits the background from the wrapper */
  padding: 60px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-column .footer-logo {
  width: 135px;
  margin-bottom: 20px;
}

.footer-event-info {
  font-size: 15px;
  line-height: 1.3;
  opacity: 0.8; /* Slightly soften non-interactive text */
}

.footer-heading {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--color-light);
  font-size: 15px;
  font-weight: 400;
  text-decoration: none; /* Cleaner look */
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--color-accent); /* Use bright orange for hover */
}

.footer-links a.active {
  color: var(
    --color-accent
  ) !important; /* Use !important to override other link styles */
  font-weight: bold; /* Optional: Makes it stand out more */
}

.social-icons {
  display: flex;
  gap: 24px;
  margin-top: 20px;
}

.social-icons img {
  width: 19px;
  height: 19px;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.social-icons a:hover img {
  opacity: 1;
}

.footer-bottom {
  background-color: var(
    --color-secondary
  ); /* Use soft black for subtle contrast */
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-col-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ww-logo {
  width: 200px;
  opacity: 0.7;
}

.copyright-text {
  font-size: 12px;
  line-height: 1.1;
  max-width: 380px;
  opacity: 0.7;
}

.copyright-text a {
  color: var(--color-light);
  text-decoration: underline;
  opacity: 1;
  transition: color 0.3s;
}
.copyright-text a:hover {
  color: var(--color-accent);
}

.footer-legal-links {
  list-style: none;
  display: flex;
  gap: 23px;
}
.footer-legal-links a {
  font-size: 12px;
  color: var(--color-light);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-legal-links a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

/* --- On-Scroll Animation Styles --- */
.anim-fade-in-left,
.anim-fade-in-right {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.anim-fade-in-left {
  transform: translateX(-50px);
}
.anim-fade-in-right {
  transform: translateX(50px);
}
.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================= */
/* == PAGE-SPECIFIC STYLES START HERE         == */
/* ============================================= */

/* --- Exhibiting at Expo / Why Attend Page Styles --- */
.page-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  background-size: cover;
  background-position: center center;
  margin-top: -139px;
  padding: 70px 20px;
  background-color: var(--color-secondary);
  opacity: 0.7;
}
.page-hero .hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-hero .page-hero-icon {
  width: 346px;
  margin-bottom: 20px;
}
.page-hero .page-hero-title {
  font-size: 45px;
  font-weight: 400;
  max-width: 677px;
  line-height: 1.2;
}
.info-banner-section {
  padding: 80px 20px;
  background: var(--color-primary);
  color: white;
  text-align: center;
}
.info-banner-title {
  font-size: 35px;
  font-weight: 400;
  line-height: 1.3;
  max-width: 860px;
  margin: 0 auto;
}
.value-prop-section {
  padding: 60px 0 80px;
  background-size: cover;
  background-position: top left;
  background-color: var(--color-primary);
}
.value-prop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.value-card {
  position: relative;
  height: 491px;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.value-card-overlay {
  padding: 40px;
  color: white;
  background: linear-gradient(180deg, rgba(24, 26, 53, 0) 0%, #181a35 100%);
}
.value-card-title {
  font-size: 23px;
  font-weight: 400;
  margin: 0 0 10px;
}
.value-card-text {
  font-size: 17px;
  line-height: 1.3;
  margin: 0;
  opacity: 0;
  max-height: 0;
  transition: opacity 0.5s ease, max-height 0.5s ease;
  overflow: hidden;
}
a.value-card {
  text-decoration: none;
}
.value-card:hover .value-card-text {
  opacity: 1;
  max-height: 200px;
}

.difference-section {
  padding: 60px 0 80px;
  background-color: var(--color-light);
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* --- .difference-card container --- */
.difference-card {
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  padding: 20px 30px; /* THIS IS THE KEY: Padding is on the card itself */
}

.difference-card:hover {
  background-color: var(--color-secondary);
  transform: translateY(-5px);
  color: #fff;
}

/* --- Title for Card --- */
.difference-card-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* Removed padding from here as it's now on the parent card */
  font-size: 18px;
  font-weight: 400;
  color: var(--color-primary);
  transition: color 0.3s;
  min-height: 0; /* Override any old min-height rules */
}

/* --- Feature List inside the card --- */
.difference-card .package-features {
  list-style: none;
  padding: 0; /* Reset browser defaults */
  margin: 15px 0 0 0; /* Space between title and list */
  border: none; /* Explicitly remove any borders */
}

.difference-card .package-features li {
  position: relative;
  padding-left: 28px; /* Space for the checkmark */
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.4;
  color: #333;
  transition: color 0.3s ease;
}

.difference-card .package-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--color-success);
  font-weight: 700;
  font-size: 18px;
  transition: color 0.3s ease;
}

/* --- Hover States for everything inside the card --- */
.difference-card:hover .difference-card-title,
.difference-card:hover .package-features li,
.difference-card:hover .package-features li::before {
  color: white; /* All text and icons turn white on hover */
}

/* --- Styles for Accordion (FAQ Page) --- */
.difference-card details > .difference-card-title {
  padding: 0; /* On FAQ page, the summary has no padding of its own */
  cursor: pointer;
}

.difference-card-content {
  padding: 0px 0 0 0; /* Reset padding for the FAQ content wrapper */
}

.difference-card-content p {
  font-size: 16px;
  line-height: 1.25;
  transition: color 0.3s;
  margin-top: 15px; /* Add space between summary and text */
}

.difference-card:hover .difference-card-content p {
  color: white;
}

/* --- Styles for Accordion Icon (FAQ Page) --- */
.difference-card-icon {
  position: relative;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-left: 15px;
}
.difference-card-icon::before,
.difference-card-icon::after {
  content: "";
  position: absolute;
  background-color: var(--color-primary);
  transition: transform 0.3s, background-color 0.3s;
}
.difference-card:hover .difference-card-icon::before,
.difference-card:hover .difference-card-icon::after {
  background-color: white;
}
.difference-card-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  margin-top: -1.5px;
}
.difference-card-icon::after {
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  margin-left: -1.5px;
}
details[open] > summary .difference-card-icon::after {
  transform: scaleY(0);
}

.insights-section {
  padding: 55px 0 70px;
  background: linear-gradient(180deg, var(--color-primary) 0%, #101224 100%);
}
.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}
.insight-card {
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 15px;
  padding: 25px;
  min-height: 462px;
  display: flex;
  flex-direction: column;
}
.insight-card.full-bg {
  background-size: cover;
  background-position: center;
  justify-content: flex-start;
  align-items: center;
}
.insight-card-title {
  font-size: 25px;
  font-weight: 400;
  color: white;
  text-align: center;
  margin: 0 0 20px 0;
}
.insight-counters {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-grow: 1;
  color: white;
  text-align: center;
  gap: 10px;
}
.counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.counter-circle {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 400;
  color: white;
}
.counter-circle.americas {
  width: 90px;
  height: 90px;
  background-color: #ee7e79;
}
.counter-circle.europe {
  width: 120px;
  height: 120px;
  background-color: #ff4e4d;
}
.counter-circle.asia {
  width: 90px;
  height: 90px;
  background-color: #6b54fe;
}

.insight-progress-bars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 20px;
  color: white;
  flex-grow: 1;
  justify-content: center;
}
.progress-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.progress-item p {
  margin: 0;
  width: 100px;
  font-size: 19px;
}
.progress-bar-wrapper {
  flex-grow: 1;
  background-color: rgba(217, 217, 217, 0.06);
  border-radius: 4px;
  overflow: hidden;
  height: 45px;
}
.progress-bar {
  height: 100%;
  background-color: #ff9d9d;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 15px;
  font-size: 24px;
  color: white;
}

.insight-chart-image {
  max-width: 80%;
  margin-top: 20px;
  align-self: center;
}

.insight-bar-chart {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  height: 250px;
  padding: 20px 0;
  flex-grow: 1;
}
.bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  font-size: 14px;
  width: 18%;
}
.bar {
  width: 100%;
  background-color: var(--e-global-color-798f99d);
  border-radius: 7px 7px 0 0;
  position: relative;
  display: flex;
  justify-content: center;
}
.bar span {
  position: absolute;
  top: -25px;
  font-size: 22px;
  color: white;
}
.bar-item:nth-child(2) .bar {
  background-color: #cf60e1;
}
.bar-item:nth-child(4) .bar {
  background-color: #cf60e1;
}

.contact-cta-box {
  background-color: white;
  border-radius: 15px;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 70px;
}
.cta-content {
  max-width: 520px;
}
.cta-title {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-primary);
  margin: 0 0 20px;
}
.btn-light {
  background-color: #fff;
  color: var(--e-global-color-19c43f6);
}
.btn-light:hover {
  background-color: #808080;
}

.btn-primary {
  background-color: var(--color-primary);
  color: white;
}
.btn-primary:hover {
  background-color: var(--color-accent); /* Use orange for hover */
}

.options-section {
  padding: 60px 0;
  background-size: cover;
  background-position: center;
}
.options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
}
.option-card {
  text-decoration: none;
  color: var(--color-primary);
  background-color: white;
  border: 1px solid var(--color-light);
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background-color 0.3s ease;
}
.option-card:hover {
  background-color: var(--color-secondary);
}
.option-card:hover .option-card-content * {
  color: white;
}
.option-card-image {
  height: 230px;
}
.option-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.option-card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.option-card h4 {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--e-global-color-19c43f6);

  transition: color 0.3s ease;
}
.option-card p {
  font-size: 16px;
  line-height: 1.25;
  margin: 0 0 15px;
  transition: color 0.3s ease;
  flex-grow: 1;
}
.option-card-link {
  font-size: 16px;
  font-weight: 400;
  margin-top: auto;
  transition: padding-left 0.3s ease;
}
.option-card:hover .option-card-link {
  padding-left: 15px;
}
.options-cta {
  text-align: center;
  margin-top: 40px;
}

/* --- Exhibitor Options Page Specific Styles --- */
.packages-section {
  padding: 60px 0;
  background-size: cover;
  background-position: center center;
  background-color: var(--color-light);
}
.packages-section .section-title {
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 40px;
}
.package-card {
  display: flex;
  gap: 60px; /* Reduced gap for better balance */
  align-items: center;
  background-color: white; /* Clean white card background */
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
  border: 1px solid #e0e0e0;
}
.package-card.reverse {
  flex-direction: row-reverse;
}
.package-details {
  flex: 0.8;
}
.package-image {
  flex: 1.2;
  max-width: 650px;
}
.package-image img {
  border-radius: 10px;
  width: 100%;
}
.package-title {
  color: var(--color-primary);
  font-size: 33px;
  font-weight: 400;
  line-height: 1.2;
}
.package-price {
  font-size: 23px;
  font-weight: 400;
  color: var(--color-secondary);
  margin: 10px 0 0 0;
}
.package-price-sub {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #555;
}
.package-description {
  font-size: 16px;
  line-height: 1.25;
  margin-bottom: 20px;
}
.package-features {
  padding: 20px 0;
  margin: 20px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
.package-features h4 {
  color: var(--color-secondary);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}
.package-features ul {
  list-style: none;
  padding-left: 20px;
}
.package-features li {
  position: relative;
  padding-left: 5px;
  margin-bottom: 10px;
  font-size: 16px;
}
.package-features li::before {
  content: "✓";
  position: absolute;
  left: -20px;
  color: var(--color-success);
  font-weight: bold;
}
.btn-package {
  margin-top: 30px;
  background-color: var(--color-success);
  color: white;
}
.btn-package:hover {
  background-color: #0c602b;
  color: white;
}

/* ============================================= */
/* == WHAT'S INCLUDED SECTION STYLES          == */
/* ============================================= */
.whats-included-section {
  background-color: var(--color-secondary); /* Use Navy for the background */
  padding: 55px 0;
  color: white;
}
.included-layout {
  display: flex;
  gap: 30px;
  align-items: center; /* Vertically align items */
}
.included-image-column {
  flex: 1;
}
.included-image-column img {
  border-radius: 15px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.included-details-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.included-content-box,
.included-cta-box {
  padding: 40px;
  border-radius: 15px;
}
.included-content-box {
  background-color: var(
    --color-dark
  ); /* A slightly different dark for contrast */
}
.included-cta-box {
  background-color: var(--color-primary); /* Red for the CTA box */
  text-align: center;
}
.included-title {
  font-size: 31px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}
.included-list {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.included-list li {
  font-size: 16px;
  padding-left: 30px;
  position: relative;
  margin-bottom: 15px;
  color: white;
}
/* Reusing the checkmark icon but with a light color */
.included-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent); /* Orange accent for the checkmark */
  font-weight: bold;
}

/* Style for the .btn-light used in this section */
.btn-light {
  background-color: white;
  color: var(--color-primary); /* Text color is red */
}
.btn-light:hover {
  background-color: #f0f0f0;
  color: var(--color-primary);
}

/* --- Registration / Apply Page Styles --- */
.page-wrapper.registration-page,
.page-wrapper.page-internal {
  background-color: var(--color-dark);
  padding-top: 139px;
}
.registration-page .site-footer-wrapper,
.registration-page .footer-main,
.registration-page .footer-bottom {
  background-color: transparent;
}
.registration-content-section {
  padding: 0 20px 80px 20px;
  background-color: var(--color-light);
}
.registration-wrapper {
  display: flex;
  background-color: #fff;
  border-radius: 15px;
  padding: 15px;
  gap: 15px;
  max-width: 1280px;
  margin: -100px auto 0 auto;
  position: relative;
  z-index: 5;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); /* ADDED */
}
.registration-form-column {
  flex: 60%;
  padding: 40px;
}
.registration-info-column {
  flex: 40%;
  display: flex;
}
.info-column-image {
  flex-grow: 1;
  border-radius: 10px;
  overflow: hidden;
}
.info-column-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.registration-form-column .form-title {
  font-size: 29px;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 15px;
}
.registration-form-column .form-description {
  font-size: 16px;
  line-height: 1.5;
  color: #555;
  margin-bottom: 30px;
}
.registration-form .form-field-group {
  margin-bottom: 20px;
}
.registration-form label {
  font-weight: 600;
  font-size: 16px;
  color: var(--color-primary);
  margin-bottom: 8px;
  display: block;
}
.registration-form input,
.registration-form select,
.registration-form textarea {
  width: 100%;
  padding: 14px 20px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  font-family: "Circular", sans-serif;
  transition: border-color 0.3s, box-shadow 0.3s;
  background-color: #f9fafb;
}
.registration-form input:focus,
.registration-form select:focus,
.registration-form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(230, 69, 28, 0.15);
  outline: none;
}
.registration-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.registration-form textarea {
  grid-column: span 2;
  min-height: 120px;
  border-radius: 8px;
}

/* added */
/* --- Remove default border from fieldsets used for grouping --- */
.registration-form fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

/* --- Style the group label (legend) --- */
.registration-form fieldset legend {
  font-weight: 600;
  font-size: 16px;
  color: var(--color-primary);
  margin-bottom: 15px; /* Space between legend and options */
  padding: 0; /* Reset padding */
}
.registration-form fieldset legend small {
  display: block;
  font-weight: 400;
  font-size: 14px;
  color: #555;
  margin-top: 4px;
}

.registration-form input[type="checkbox"],
.registration-form input[type="radio"] {
  opacity: 0;
  position: absolute;
  width: 1px;
  height: 1px;
}

/* --- General Label Styling --- */
.registration-form input[type="checkbox"] + label,
.registration-form input[type="radio"] + label {
  position: relative;
  padding-left: 32px; /* Space for the custom control */
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 22px; /* Aligns text with the control */
  display: inline-block;
}

/* --- Custom Control Box/Circle (the ::before pseudo-element) --- */
.registration-form input[type="checkbox"] + label::before,
.registration-form input[type="radio"] + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border: 2px solid #ccc;
  background-color: #f9fafb;
  transition: all 0.2s ease;
}

/* --- Specific Shape for CHECKBOX --- */
.registration-form input[type="checkbox"] + label::before {
  border-radius: 4px;
}

/* --- Specific Shape for RADIO --- */
.registration-form input[type="radio"] + label::before {
  border-radius: 50%;
}

/* --- HOVER State --- */
/* Light up the border on hover when not checked */
.registration-form input:not(:checked) + label:hover::before {
  border-color: var(--color-accent);
}

/* --- FOCUS State (for Accessibility) --- */
.registration-form input:focus + label::before {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(230, 69, 28, 0.15); /* Matches other form inputs */
}

/* --- CHECKED STATE STYLING --- */

/* Change background and border color of the box/circle when checked */
.registration-form input:checked + label::before {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

/* --- The Checkmark/Dot (the ::after pseudo-element) --- */
.registration-form input + label::after {
  content: "";
  position: absolute;
  opacity: 0; /* Hidden by default */
  transition: all 0.2s ease;
}

/* Make the indicator visible when checked */
.registration-form input:checked + label::after {
  opacity: 1;
}

/* Style the CHECKMARK for checkboxes */
.registration-form input[type="checkbox"]:checked + label::after {
  left: 8px;
  top: 4px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

/* Style the DOT for radio buttons */
.registration-form input[type="radio"]:checked + label::after {
  left: 6px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

/* Spacing for radio button groups */
.registration-form fieldset div {
  margin-bottom: 12px;
}
.registration-form fieldset div:last-child {
  margin-bottom: 0;
}
/* added */
.btn-submit {
  width: 100%;
  background-color: var(--color-primary);
  color: white;
  border: none;
  padding: 16px 30px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.3s;
  font-size: 18px;
  font-weight: 500;
}
.btn-submit:hover {
  background-color: var(--color-accent);
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-secondary);
  opacity: 0.7;
  z-index: 1;
}

/* --- Final CTA Section --- */
.final-cta-section {
  position: relative;
  height: 900px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  color: white;
}
.final-cta-section .video-overlay {
  background-color: var(--color-secondary);
  opacity: 0.8;
}
.final-cta-section .page-hero-title {
  font-size: 32px;
}
.final-cta-section .page-hero-icon {
  width: 363px;
}
.final-cta-section .page-hero-icon.small {
  width: 258px;
}

/* ============================================= */
/* == NEW PRICING TABLE STYLES         == */
/* ============================================= */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background-color: white;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
  border-radius: 15px;
  overflow: hidden;
}
.pricing-table th,
.pricing-table td {
  padding: 20px 25px;
  border-bottom: 1px solid #e0e0e0; /* UPDATED: Neutral border */
}
.pricing-table thead {
  background-color: var(--color-secondary); /* UPDATED: Navy header */
  color: white;
}
.pricing-table th {
  font-family: "Circular", sans-serif;
  font-size: 18px;
  font-weight: 400;
}
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}
.pricing-table tbody tr:hover {
  background-color: #f9f9f9; /* UPDATED: A subtle light gray hover */
}
.pricing-table td:first-child {
  font-weight: 500;
  color: var(--color-primary); /* UPDATED: Red for the main item */
}
/* ============================================= */
/* == START: NEW EXHIBITOR LOGO GRID STYLES   == */
/* ============================================= */

.exhibitor-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.exhibitor-logo-card {
  background-color: white;
  border-radius: 15px;
  padding: 30px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 150px;
  border: 1px solid #e0e0e0;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.exhibitor-logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
}

.exhibitor-logo-card img {
  max-width: 150px;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.exhibitor-logo-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ============================================= */
/* == END: NEW EXHIBITOR LOGO GRID STYLES     == */
/* ============================================= */

/* ============================================= */
/* == START: M&I EXPO DIFFERENCE SECTION STYLES == */
/* ============================================= */

/* =========================================== */
/* == END: M&I EXPO DIFFERENCE SECTION STYLES == */
/* =========================================== */

/* ============================================= */
/* == START: NEW PARTNER CARD STYLES          == */
/* ============================================= */

.partner-card {
  background-color: white;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  min-height: 250px;
  border: 1px solid #e0e0e0;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center content vertically */
  gap: 15px;
  align-items: center;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
}

.partner-card .partner-logo img {
  max-width: 180px;
  max-height: 90px;
  object-fit: contain;
  margin-bottom: 15px; /* Space between logo and text */
}

.partner-card .partner-description {
  font-size: 15px;
  line-height: 1.4;
  color: #555;
}

/* ============================================= */
/* == END: NEW PARTNER CARD STYLES            == */
/* ============================================= */

/* ============================================= */
/* == RESPONSIVE STYLES                         == */
/* ============================================= */
@media (max-width: 1024px) {
  .header-main,
  .header-sticky {
    display: none;
  }
  .header-mobile {
    display: block;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .split-layout {
    gap: 40px;
  }
  .split-item.image-block img {
    height: 250px;
  }
  .value-prop-grid,
  .insights-grid,
  .options-grid {
    grid-template-columns: 1fr 1fr;
  }
  .insights-grid .insight-card:nth-child(3),
  .insights-grid .insight-card:nth-child(4) {
    grid-column: 1 / -1;
  }
  .contact-cta-box {
    flex-direction: column;
    text-align: center;
  }
  .cta-content {
    margin-bottom: 20px;
  }
  .cta-title {
    font-size: 28px;
  }
  .package-card,
  .package-card.reverse {
    flex-direction: column-reverse;
    gap: 30px;
  }
  .included-layout {
    flex-direction: column;
  }
  .registration-wrapper {
    flex-direction: column;
    margin-top: -100px;
  }
  .registration-form-column {
    padding: 30px;
    order: 2;
  }
  .registration-info-column {
    padding: 30px;
    order: 1;
  }
  .page-hero {
    min-height: auto;
    padding: 120px 20px 80px;
    margin-top: 0;
  }
  .page-hero-title {
    font-size: 40px;
    margin-top: 0px;
  }
  .page-hero .page-hero-icon {
    width: 120px;
  }

  .page-wrapper.registration-page,
  .page-wrapper.page-internal {
    padding-top: 0;
  }
}

@media (max-width: 767px) {
  .hero-section {
    height: 684px;
    margin-top: -85px;
    padding-top: 85px;
  }
  .hero-logo img {
    width: 250px;
  }
  .hero-tagline {
    font-size: 20px;
    max-width: 264px;
  }
  .hero-cta-button {
    position: static;
    margin-top: 20px;
  }
  .section-title {
    font-size: 28px;
    max-width: 100%;
  }
  .split-layout,
  .split-layout.reverse {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .split-item.text-block {
    text-align: center;
  }
  .split-item.image-block img {
    height: 220px;
  }
  .who-will-attend-section {
    padding: 50px 20px;
  }
  .panel-subtitle {
    font-size: 16px;
  }
  .world-map-container {
    min-height: auto;
    padding-bottom: 100%;
  }
  .stat-item .stat-circle {
    transform: scale(0.7);
  }
  .stat-label {
    font-size: 12px;
    transform: translateY(-15px);
  }
  .programme-section {
    padding: 45px 20px 70px 20px;
  }
  .testimonial-card {
    padding: 30px 20px;
    min-height: auto;
  }
  .testimonial-author {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .testimonials-slider {
    padding: 0;
  }
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
  .cta-card-container {
    flex-direction: column;
  }
  .cta-card {
    min-height: 250px;
  }
  .why-attend-intro {
    padding: 30px 20px;
  }
  .stats-section .container {
    flex-direction: column;
    gap: 30px;
  }
  .stats-section .stat-number {
    font-size: 36px;
  }
  .footer-main {
    padding: 40px 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-column .footer-logo {
    margin: 0 auto 20px auto;
  }
  .social-icons {
    justify-content: center;
  }
  .footer-bottom-grid {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer-col-left {
    flex-direction: column;
  }
  .page-hero {
    padding: 100px 20px 60px; /* Further adjust padding for mobile */
  }

  .page-hero-title {
    font-size: 32px; /* Further reduce font size for mobile */
    max-width: 90%; /* Use percentage for better flexibility */
  }

  .page-hero .page-hero-icon {
    width: 100px !important; /* Use !important to override the inline style */
  }
  .info-banner-title {
    font-size: 26px;
    line-height: 1.3;
  }
  .value-prop-grid,
  .insights-grid,
  .options-grid,
  .difference-grid {
    grid-template-columns: 1fr;
  }
  .value-card {
    height: 330px;
  }
  .insight-card {
    min-height: auto;
  }
  .insight-counters {
    flex-direction: column;
  }
  .insight-bar-chart {
    flex-direction: column;
    height: auto;
    align-items: stretch;
  }
  .bar-item {
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
  }
  .bar {
    height: 30px;
  }
  .bar span {
    position: static;
  }
  .bar-item p {
    text-align: left;
  }
  .package-card {
    padding: 26px;
  }
  .whats-included-section {
    padding: 40px 20px;
  }
  .registration-form .form-grid {
    grid-template-columns: 1fr;
  }
  .registration-form textarea {
    grid-column: span 1;
  }
  .registration-info-column {
    display: none;
  }
  .registration-wrapper {
    padding: 0;
  }
  .registration-form-column {
    padding: 20px;
  }
  .final-cta-section {
    height: 574px;
  }
  .final-cta-section .page-hero-title {
    font-size: 26px;
  }
  .final-cta-section .page-hero-icon {
    width: 258px;
  }
  .pricing-table {
    display: block;
    overflow-x: auto;
  }
}

/* ============================================= */
/* == Dark Background Section Styles == */
.dark-background-section {
  background-color: #101125; /* The dark navy from your example */
  padding: 60px 0;
  color: white; /* Ensures all descendant text defaults to white */
}

/* Make the h2 title white inside this specific section */
.dark-background-section .section-title {
  color: white;
}

/* Make the h3 text white and set its line-height */
.dark-background-section .split-item.text-block h3 {
  color: #dfdfe0; /* Using the light gray from your original example for a softer look */
  line-height: 1.8;
}

/* Make the strong tag bold and fully white */
.dark-background-section .split-item.text-block h3 strong {
  color: white;
  font-weight: 700;
}
