/* =========================================================
   TENDER SEARCH PAGE
========================================================= */
/* ========================================
   HERO SECTION
======================================== */
#tender-section {
  background-color: var(--primary);
  color: var(--white);
  padding: 40px 30px;
  border-radius: 12px;
  margin-top: 20px;
  margin-bottom: 25px;
  text-align: center;
}

/* MAIN TITLE */
#tender-section h1 {
  color: var(--white);
  margin-bottom: 15px;
  line-height: 1.3;
}

/* ===============================
   HOVER — UNDERLINE/ITALIC TEXT (HEADING)
================================ */
#tender-section h1 em:hover {
  color: #000000;
}

/* DESCRIPTION */
#tender-section p {
  color: #ffffff;
  max-width: 1000px;
  line-height: 1.7;
  margin: 0 auto;
  text-align: center;
}

/* ========================================
   MOBILE
======================================== */
@media (max-width:600px) {

  #tender-section {
    padding: 40px 1rem 32px;
  }

  #tender-section h1 {
    font-size: 28px;
  }
}

/* ========================================
   TTCL STYLE REVEAL ANIMATION
======================================== */

/* INITIAL STATE */
body.tender-search .reveal-up {
  opacity: 0;
  transform: translateY(55px);
  transition:
    opacity .9s ease,
    transform .9s ease;

  will-change: transform, opacity;
}

/* ACTIVE */
body.tender-search .reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* DELAYS */
body.tender-search .delay-1 {
  transition-delay: .1s;
}

/* ========================================
   HERO EFFECT
======================================== */

body.tender-search #tender-section h1 {
  animation: tenderHeroSlide 1s ease both;
}

body.tender-search #tender-section p {
  animation: tenderHeroFade 1.4s ease both;
}

@keyframes tenderHeroSlide {

  from {
    opacity: 0;
    transform: translateY(-25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tenderHeroFade {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* =====================================================
   TENDER-SECTION-LABEL INSIDE HERO (Tender Search)
   — Bright Black, wraps text only (inline-block fix)
===================================================== */
#tender-section .tender-section-label {
  display: inline-block;
  background: #000000;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  margin-bottom: 10px;
}