/* =====================================================
   VISITORS PAGE — BASE SYSTEM (MATCH EXHIBITORS)
===================================================== */

/* ---------------- RESET & BASE ---------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  font-family: "Open Sans", system-ui, -apple-system, sans-serif;
  color: #0f172a;
  background: #f2f7fb;
  line-height: 1.75;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 90px 0;
}

/* =====================================================
   NAVBAR (SAME AS EXHIBITORS)
===================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #eaf4fb;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
}

.header-inner {
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* LOGO */
.logo a {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 23px;
  color: #0f172a;
}

.logo img {
  height: 140px;
}

.logo-text-small {
  display: block;
  margin-top: 2px;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #64748b;
}

/* NAV LINKS */
.main-nav {
  display: flex;
  gap: 24px;
}

.main-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: #475569;
}

.main-nav a.active,
.main-nav a:hover {
  color: #44a8c6;
}

/* MOBILE NAV */
@media (max-width: 960px) {
  .main-nav {
    display: none;
  }
}

/* =====================================================
   HERO
===================================================== */

.page-hero {
  margin-top: 80px;
    padding: 60px 0 30px; 
  background: linear-gradient(135deg, #5fb2c9, #8fd0e3);
}

.section-header.center-header {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.page-hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: 2.85rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.section-accent {
  width: 70px;
  height: 4px;
  background: #44a8c6;
  border-radius: 999px;
  margin: 16px auto 24px;
}

.page-hero p {
  max-width: 740px;
  margin: 0 auto;
  font-size: 1.02rem;
  color: rgba(15, 23, 42, 0.72);
}

/* =====================================================
   SECTION BACKGROUNDS (PALE BLUE–GREY SYSTEM)
===================================================== */

.section:nth-of-type(2),
.section:nth-of-type(4),
.section:nth-of-type(6) {
  background: #f2f7fb;
}

.section:nth-of-type(3),
.section:nth-of-type(5) {
  background: #e6eff6;
}

/* =====================================================
   HIGHLIGHT CARDS
===================================================== */

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.highlight-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 34px 28px;
  text-align: center;
  border: 1px solid #d7eaf6;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.highlight-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.highlight-card p {
  font-size: 0.95rem;
  color: rgba(15, 23, 42, 0.75);
}

/* =====================================================
   ABOUT SECTIONS (TEXT + IMAGE)
===================================================== */

.about-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
}

.about-text p {
  margin-bottom: 16px;
  color: rgba(15, 23, 42, 0.75);
}

.profile-list {
  padding-left: 18px;
}

.profile-list li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* IMAGE FRAME */
.about-image {
  background: #0b172a;
  padding: 16px;
  border-radius: 22px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.35);
}

.about-image img {
  border-radius: 16px;
}

/* =====================================================
   STEPS (HOW TO PREPARE)
===================================================== */

.step-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.12);
}

.step-box strong {
  display: block;
  font-family: "Poppins", sans-serif;
  margin-bottom: 6px;
}

/* =====================================================
   CTA (KEEP DARK & COMPACT)
===================================================== */

.section[style*="linear-gradient"] {
  padding: 80px 20px;
  text-align: center;
}

.section[style*="linear-gradient"] h2 {
  font-family: "Poppins", sans-serif;
  font-size: 1.9rem;
}

.section[style*="linear-gradient"] .btn-primary {
  margin-top: 24px;
  padding: 13px 34px;
  background: #44a8c6;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 600;
}

/* =====================================================
   FOOTER
===================================================== */

.site-footer {
  background: #64748b;
  padding: 36px 20px;
  text-align: center;
}

.site-footer p {
  font-size: 0.88rem;
  color: #ffffff;
}

.footer-credit {
  font-size: 0.82rem;
  color: #ffffff;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 960px) {
  .about-inner {
    grid-template-columns: 1fr;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }
}
/* Center-align "How to Prepare for Your Visit" step boxes */
.step-box {
  text-align: center;
}
/* remove extra gap after hero */
.page-hero + .section {
  padding-top: 40px;
}
.visitor-journey-pro {
  padding: 70px 20px;
  background: #eef6fb;
  text-align: center;
}

.visitor-journey-pro h2 {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #0b172a;
}

.journey-accent {
  width: 48px;
  height: 3px;
  background: #44a8c6;
  border-radius: 999px;
  margin: 12px auto 36px;
}

/* FLOW */
.journey-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.journey-step {
  max-width: 160px;
  text-align: center;
}

.journey-step .icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 6px;
}

.journey-step strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.journey-step p {
  font-size: 0.82rem;
  color: #475569;
  line-height: 1.4;
}

.arrow {
  font-size: 1.4rem;
  color: #94a3b8;
  margin: 0 4px;
}

/* MOBILE */
@media (max-width: 768px) {
  .journey-flow {
    gap: 10px;
  }

  .arrow {
    display: none;
  }
}
/* ================= EMERGENCY MOBILE FIX ================= */
@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  /* HEADER */
  .site-header {
    position: relative !important;
    padding: 12px 16px !important;
  }

  .header-inner {
    flex-wrap: wrap !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .logo img {
    max-width: 120px !important;
    height: auto !important;
    margin: 0 auto !important;
  }

  .logo span {
    display: block !important;
    font-size: 0.9rem !important;
    line-height: 1.2 !important;
    margin-top: 6px !important;
  }

  /* HERO */
  .hero,
  .page-hero {
    min-height: auto !important;
    padding: 100px 16px 60px !important;
    text-align: center !important;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 1.6rem !important;
  }

  .hero p,
  .page-hero p {
    font-size: 0.95rem !important;
  }

  /* SECTIONS */
  section {
    padding: 48px 16px !important;
  }

  /* GRIDS */
  .grid,
  .cards,
  .sectors {
    grid-template-columns: 1fr !important;
  }

  /* IMAGES */
  img {
    max-width: 100% !important;
    height: auto !important;
  }

}
/* FORCE LOGO ALIGNMENT */
.site-header .logo a {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.site-header .logo img {
  height: 75px !important;
  width: auto !important;
  max-height: 100% !important;
}

.site-header .logo a > span {
  display: flex !important;
  flex-direction: column !important;
  line-height: 1.1 !important;
  font-size: 22px !important;
  font-weight: 700 !important;
}

.site-header .logo-text-small {
  margin-top: 2px !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: #64748b !important;
}
