.exhi-page-module *,
.exhi-page-module *::before,
.exhi-page-module *::after {
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

.exhi-page-module {
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.7;
  padding-bottom: 60px;
  overflow-x: hidden;
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* Prevent horizontal overflow on all screens */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* ---- Header ---- */
.expo-header-2025 {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0px;
}

/* -- Page hero -- */
.exhi-page-module .exhi-hero {
  background: #fff;
  padding: 55px 20px 38px;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 20px;
}
.exhi-page-module .exhi-hero h1 {
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 0 0 10px;
}
.exhi-page-module .exhi-hero p {
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}
.exhi-page-module .exhi-hero-divider {
  width: 60px;
  height: 3px;
  background: #79be58;
  margin: 16px auto 0;
  border-radius: 3px;
}

/* -- Section wrapper -- */
.exhi-page-module .exhi-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 16px 0;
}

/* ---- Search bar ---- */
.exhi-page-module .exhi-search-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.exhi-page-module .exhi-search-wrap label {
  font-size: 0.82rem;
  color: #555;
  font-weight: 500;
  white-space: nowrap;
}
.exhi-page-module .exhi-search-wrap form {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
  max-width: 360px;
}
.exhi-page-module .exhi-search-input {
  border: 1.5px solid #e5e7eb;
  border-radius: 50px;
  padding: 9px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: #1a1a1a;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  flex: 1;
  min-width: 0;
  background: #fff;
  -webkit-appearance: none;
}
.exhi-page-module .exhi-search-input:focus {
  border-color: #79be58;
  box-shadow: 0 0 0 3px rgba(121,190,88,0.12);
}
.exhi-page-module .exhi-search-input::placeholder { color: #aaa; }
.exhi-page-module .exhi-search-btn {
  background: #79be58;
  border: none;
  border-radius: 50px;
  padding: 9px 16px;
  cursor: pointer;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  transition: background 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  flex-shrink: 0;
}
.exhi-page-module .exhi-search-btn:hover { background: #67a94d; }
.exhi-page-module .exhi-search-btn svg { display: block; flex-shrink: 0; }

/* -- Grid -- */
.exhi-page-module .exhi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

/* -- Card -- */
.exhi-page-module .exhi-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.exhi-page-module .exhi-card:hover {
  box-shadow: 0 12px 30px rgba(121,190,88,0.16);
  border-color: #79be58;
  transform: translateY(-4px);
}

/* Logo area */
.exhi-page-module .exhi-card-logo {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 20px;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}
.exhi-page-module .exhi-card-logo img {
  max-width: 100%;
  max-height: 88px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Card body */
.exhi-page-module .exhi-card-right {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.exhi-page-module .exhi-card-body {
  flex: 1;
  padding: 16px 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
}

.exhi-page-module .exhi-card-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #79be58;
  line-height: 1.35;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  word-break: break-word;
}

.exhi-page-module .exhi-card-country {
  font-size: 0.78rem;
  font-weight: 600;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
}
.exhi-page-module .exhi-card-country i {
  color: #79be58;
  font-size: 0.76rem;
  flex-shrink: 0;
}

.exhi-page-module .exhi-card-desc {
  font-size: 0.80rem;
  color: #666;
  line-height: 1.6;
  flex: 1;
  margin-top: 6px;
  text-align: left;
  width: 100%;
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* Card footer */
.exhi-page-module .exhi-card-footer {
  padding: 8px 16px 16px;
  display: flex;
  justify-content: center;
}
.exhi-page-module .exhi-card-web {
  display: inline-block;
  background: #79be58;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 90%;
  user-select: none;
  pointer-events: none;
}

/* -- Pagination -- */
.exhi-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin: 40px 0 20px;
  padding: 0 8px;
}
.exhi-pagination a,
.exhi-pagination .current-page,
.exhi-pagination .ellipsis {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 50px;
  text-decoration: none;
  border: 1.5px solid #79be58;
  color: #79be58;
  transition: all 0.25s;
  line-height: 1;
  white-space: nowrap;
}
.exhi-pagination a:hover { background: #79be58; color: #fff; }
.exhi-pagination .current-page { background: #79be58; color: #fff; }
.exhi-pagination .ellipsis { border-color: transparent; color: #999; pointer-events: none; }
.exhi-pagination .disabled { display: none; }

/* -- Form section -- */
.exhi-page-module .exhi-form-section {
  background: #fff;
  padding: 70px 20px 10px;
}
.exhi-page-module .exhi-form-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.exhi-page-module .exhi-form-heading {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: #1a1a1a;
  text-transform: capitalize;
  margin-bottom: 10px;
  margin-top: 20px;
}
.exhi-page-module .exhi-form-divider {
  width: 60px;
  height: 3px;
  background: #79be58;
  margin: 0 auto 28px;
  border-radius: 3px;
}
.exhi-page-module .exhi-form-sub {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* Form inputs */
.exhi-page-module .exhi-form input[type="text"],
.exhi-page-module .exhi-form input[type="email"] {
  width: 100%;
  padding: 13px 18px;
  margin-bottom: 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: #1a1a1a;
  background: #f9f9f9;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  display: block;
  text-align: left;
}
.exhi-page-module .exhi-form input:focus {
  border-color: #79be58;
  box-shadow: 0 0 0 3px rgba(121,190,88,0.12);
  background: #fff;
}
.exhi-page-module .exhi-form input::placeholder { color: #aaa; }

.exhi-page-module .exhi-recaptcha-wrap {
  display: flex;
  justify-content: center;
  margin: 18px 0;
}
.exhi-page-module .exhi-form-submit {
  display: inline-block;
  background: #79be58;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 52px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(121,190,88,0.28);
  letter-spacing: 0.5px;
  margin-top: 6px;
  margin-bottom: 20px;
}
.exhi-page-module .exhi-form-submit:hover {
  background: #67a94d;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(121,190,88,0.38);
}
.exhi-page-module .exhi-form-done {
  display: none;
  padding: 18px 20px;
  background: #d4edda;
  border-left: 4px solid #28a745;
  border-radius: 8px;
  color: #155724;
  font-size: 0.95rem;
  margin-top: 20px;
  text-align: left;
}
.exhi-page-module .exhi-form-fail {
  display: none;
  padding: 18px 20px;
  background: #f8d7da;
  border-left: 4px solid #dc3545;
  border-radius: 8px;
  color: #721c24;
  font-size: 0.95rem;
  margin-top: 20px;
  text-align: left;
}

/* -- Empty state -- */
.exhi-page-module .exhi-empty {
  text-align: center;
  padding: 80px 20px;
  color: #aaa;
  grid-column: 1 / -1;
}
.exhi-page-module .exhi-empty i {
  font-size: 3rem;
  color: #ddd;
  margin-bottom: 16px;
  display: block;
}

/* -- Go Green footer fix -- */
#footer .go-green {
  display: flex;
  align-items: center;
  gap: 12px;
}
#footer .go-green img {
  flex-shrink: 0;
}
#footer .go-green p {
  margin-left: 60px;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

@media (min-width: 769px) {
  .expo-header-2025 {
    margin-top: 0px;
  }
}

@media (max-width: 1200px) {
  .exhi-page-module .exhi-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .exhi-page-module .exhi-section {
    padding: 0 16px 0;
  }
}

@media (max-width: 900px) {
  .exhi-page-module .exhi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .exhi-page-module .exhi-section {
    padding: 30px 16px 0;
  }
  .exhi-page-module .exhi-hero h1 {
    font-size: 1.65rem;
    letter-spacing: 2px;
  }
  .exhi-page-module .exhi-hero p {
    font-size: 0.92rem;
  }
  .exhi-page-module .exhi-card-logo {
    height: 110px;
    padding: 14px 16px;
  }
  .exhi-page-module .exhi-card-logo img {
    max-height: 76px;
  }
  .exhi-page-module .exhi-card-body {
    padding: 14px 14px 10px;
  }
  .exhi-page-module .exhi-card-name {
    font-size: 0.85rem;
  }
  .exhi-page-module .exhi-card-country {
    font-size: 0.76rem;
  }
  .exhi-page-module .exhi-card-desc {
    font-size: 0.80rem;
    line-height: 1.6;
  }
  .exhi-page-module .exhi-card-footer {
    padding: 8px 14px 14px;
  }
  .exhi-page-module .exhi-card-web {
    font-size: 0.74rem;
    padding: 6px 14px;
  }
  .exhi-page-module .exhi-form-heading {
    font-size: 1.3rem;
  }
  .exhi-page-module .exhi-form-section {
    padding: 55px 20px 65px;
  }
}

@media (max-width: 768px) {
  body { padding-top: 0 !important; }
  .exhi-page-module .exhi-hero {
    padding: 36px 16px 24px;
  }
  .exhi-page-module .exhi-search-wrap {
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .exhi-page-module .exhi-search-wrap form {
    flex-direction: column;
    max-width: 100%;
    width: 100%;
    gap: 10px;
  }
  .exhi-page-module .exhi-search-input {
    width: 100%;
    font-size: 16px;
    padding: 12px 16px;
  }
  .exhi-page-module .exhi-search-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .exhi-page-module .exhi-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .exhi-page-module .exhi-card {
    flex-direction: row;
    align-items: stretch;
    border-radius: 12px;
    min-height: 110px;
  }
  .exhi-page-module .exhi-card-logo {
    width: 100px;
    min-width: 100px;
    flex-shrink: 0;
    height: auto;
    min-height: 110px;
    border-bottom: none;
    border-right: 1px solid #f0f0f0;
    padding: 12px 10px;
    border-radius: 12px 0 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .exhi-page-module .exhi-card-logo img {
    max-height: 64px;
    max-width: 76px;
  }
  .exhi-page-module .exhi-card-right {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    overflow: hidden;
  }
  .exhi-page-module .exhi-card-body {
    padding: 12px 12px 6px;
    align-items: flex-start;
    text-align: left;
    gap: 3px;
  }
  .exhi-page-module .exhi-card-name {
    font-size: 0.80rem;
    text-align: left;
    letter-spacing: 0.2px;
  }
  .exhi-page-module .exhi-card-country {
    font-size: 0.73rem;
    justify-content: flex-start;
  }
  .exhi-page-module .exhi-card-desc {
    font-size: 0.76rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 4px;
  }
  .exhi-page-module .exhi-card-footer {
    padding: 4px 12px 12px;
    justify-content: flex-start;
  }
  .exhi-page-module .exhi-card-web {
    font-size: 0.70rem;
    padding: 5px 12px;
    max-width: 100%;
  }
  .exhi-pagination {
    gap: 5px;
    margin: 28px 0 16px;
  }
  .exhi-pagination a,
  .exhi-pagination .current-page {
    padding: 7px 11px;
    font-size: 0.78rem;
  }
}

@media (max-width: 576px) {
  .exhi-page-module {
    padding-bottom: 20px;
  }
  .exhi-page-module .exhi-hero {
    padding: 44px 16px 28px;
  }
  .exhi-page-module .exhi-hero h1 {
    font-size: 1.3rem;
    letter-spacing: 1.5px;
  }
  .exhi-page-module .exhi-hero p {
    font-size: 0.88rem;
  }
  .exhi-page-module .exhi-section {
    padding: 0 14px 0;
  }
  .exhi-page-module .exhi-form-section {
    padding: 20px 16px 20px;
  }
  .exhi-page-module .exhi-form-inner {
    padding: 0 16px;
  }
  .exhi-page-module .exhi-form-heading {
    font-size: 1.1rem;
    letter-spacing: 1px;
  }
  .exhi-page-module .exhi-form-sub {
    font-size: 0.88rem;
  }
  .exhi-page-module .exhi-form input[type="text"],
  .exhi-page-module .exhi-form input[type="email"] {
    padding: 12px 14px;
    font-size: 0.88rem;
  }
  .exhi-page-module .exhi-form-submit {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.95rem;
  }
  .exhi-page-module .exhi-recaptcha-wrap {
    overflow: hidden;
  }
  .exhi-pagination {
    gap: 6px;
    margin: 32px 0 16px;
  }
  .exhi-pagination a,
  .exhi-pagination .current-page {
    padding: 7px 12px;
    font-size: 0.80rem;
  }
}

@media (max-width: 400px) {
  .exhi-page-module .exhi-card-logo {
    width: 84px;
    min-width: 84px;
  }
  .exhi-page-module .exhi-card-logo img {
    max-height: 54px;
    max-width: 64px;
  }
  .exhi-page-module .exhi-card-name { font-size: 0.76rem; }
  .exhi-page-module .exhi-card-desc { font-size: 0.73rem; }
}

@media (max-width: 380px) {
  .exhi-page-module .exhi-card-logo {
    width: 90px;
    min-width: 90px;
  }
  .exhi-page-module .exhi-card-logo img {
    max-height: 52px;
    max-width: 68px;
  }
  .exhi-page-module .exhi-card-name {
    font-size: 0.78rem;
  }
}

@media (min-width: 901px) and (max-width: 1750px) {
  .exhi-page-module .exhi-hero {
    margin-top: 10px;
  }
}

@media (min-width: 577px) and (max-width: 1200px) {
  .exhi-page-module .exhi-hero {
    margin-top: 10px;
  }
}

@media (min-width: 1400px) {
  .exhi-page-module .exhi-hero {
    margin-top: 420px;
  }
}

/* Desktop / large laptop (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .exhi-page-module .exhi-hero {
    margin-top: 250px;
  }
}

/* Laptop (1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
  .exhi-page-module .exhi-hero {
    margin-top: 20px;
  }
}