/* =========================================================
   PITEX 2026 — Custom Stylesheet
   Brand: Navy #244477 + Orange #F26445 (from PITEX logo)
   ========================================================= */

:root {
  --navy: #244477;
  --navy-dark: #152a4d;
  --navy-darker: #0e1c35;
  --orange: #F26445;
  --orange-light: #ff8a68;
  --white: #ffffff;
  --off-white: #F7F8FA;
  --light-grey: #E9ECEF;
  --text-dark: #1c2b3f;
  --text-muted: #5b6b80;

  --font-heading: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;

  --shadow-soft: 0 10px 40px rgba(20, 34, 61, 0.08);
  --shadow-strong: 0 20px 60px rgba(20, 34, 61, 0.18);
  --radius: 14px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  max-width: 100%;
}

img { max-width: 100%; height: auto; }

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

a { text-decoration: none; }

.text-orange { color: var(--orange) !important; }
.text-navy { color: var(--navy) !important; }
.bg-navy { background-color: var(--navy) !important; }
.bg-navy-dark { background-color: var(--navy-dark) !important; }
.bg-navy-darker { background-color: var(--navy-darker) !important; }
.bg-off-white { background-color: var(--off-white) !important; }

.section-pad { padding: 70px 0; }
@media (max-width: 768px) { .section-pad { padding: 56px 0; } }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(242, 100, 69, 0.08);
  border: 1px solid rgba(242, 100, 69, 0.25);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 700px;
}

.divider-accent {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--navy));
  border-radius: 4px;
  margin: 18px 0 28px;
}

/* ===================== NAVBAR ===================== */
.pitex-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1050;
  padding: 18px 0;
  transition: all 0.35s ease;
  background: transparent;
}
.pitex-navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 30px rgba(20,34,61,0.1);
  padding: 10px 0;
}
.pitex-navbar .navbar-brand img {
  height: 60px;
  transition: height 0.3s ease;
}
.pitex-navbar.scrolled .navbar-brand img { height: 60px; }

.pitex-navbar .nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  margin: 0 10px;
  position: relative;
  padding: 8px 2px !important;
  transition: color 0.25s ease;
}
.pitex-navbar.scrolled .nav-link { color: var(--navy); }
.pitex-navbar .nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.25s ease;
}
.pitex-navbar .nav-link:hover::after,
.pitex-navbar .nav-link.active::after { width: 100%; }
.pitex-navbar .nav-link:hover { color: var(--orange); }

.btn-nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 0.9rem;
  box-shadow: 0 8px 20px rgba(242,100,69,0.35);
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-nav-cta:hover { background: var(--navy); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(36,68,119,0.35); color: var(--white) !important; }

.navbar-toggler { border: none; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon-custom {
  width: 26px; height: 20px; position: relative; display: inline-block;
}
.navbar-toggler-icon-custom span {
  display: block; position: absolute; height: 2.5px; width: 100%;
  background: var(--white); border-radius: 2px; left: 0; transition: all 0.25s ease;
}
.pitex-navbar.scrolled .navbar-toggler-icon-custom span { background: var(--navy); }
.navbar-toggler-icon-custom span:nth-child(1){ top:0; }
.navbar-toggler-icon-custom span:nth-child(2){ top:9px; }
.navbar-toggler-icon-custom span:nth-child(3){ top:18px; }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-darker) 0%, var(--navy) 55%, #2c5490 100%);
  overflow: hidden;
  padding-top: 100px;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero/hero-collage.jpg');
  background-size: cover;
  background-position: center 15%;
  opacity: 0.22;
  filter: saturate(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,28,53,0.88) 0%, rgba(21,42,77,0.85) 45%, rgba(36,68,119,0.92) 100%);
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.5;
  pointer-events: none;
}
.hero-shape.s1 { width: 340px; height: 340px; background: radial-gradient(circle, rgba(242,100,69,0.35), transparent 70%); top: -80px; right: -60px; animation: floatY 9s ease-in-out infinite; }
.hero-shape.s2 { width: 220px; height: 220px; background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%); bottom: 10%; left: -60px; animation: floatY 11s ease-in-out infinite reverse; }
.hero-shape.s3 { width: 150px; height: 150px; border: 2px solid rgba(242,100,69,0.3); border-radius: 30px; top: 22%; left: 6%; transform: rotate(20deg); animation: spinSlow 22s linear infinite; }
.hero-shape.s4 { width: 90px; height: 90px; border: 2px solid rgba(255,255,255,0.2); border-radius: 50%; bottom: 18%; right: 10%; animation: floatY 7s ease-in-out infinite; }

@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-24px); } }
@keyframes spinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.hero-content { position: relative; z-index: 2; color: var(--white); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.28);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(242,100,69,0.25); }

.hero h1 {
  color: var(--white);
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  font-weight: 600;
  letter-spacing: 1px;
  margin: 22px 0 6px;
}
.hero .hero-mega {
  font-size: clamp(3rem, 8vw, 6.2rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(90deg, #ffffff 20%, var(--orange-light) 60%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}
.hero .hero-tagline {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  margin-bottom: 22px;
}
.hero .hero-location {
  display: flex; flex-wrap: wrap; gap: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 34px;
  font-size: 1.02rem;
}
.hero .hero-location span { display: inline-flex; align-items: center; gap: 8px; }
.hero .hero-location i { color: var(--orange); }

.btn-hero-primary {
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 40px;
  box-shadow: 0 12px 30px rgba(242,100,69,0.4);
  transition: all 0.3s ease;
  border: 2px solid var(--orange);
}
.btn-hero-primary:hover { background: transparent; color: var(--white); transform: translateY(-3px); box-shadow: 0 16px 34px rgba(242,100,69,0.5); }

.btn-hero-secondary {
  background: transparent;
  color: var(--white);
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 40px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.3s ease;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.12); border-color: var(--white); color: var(--white); transform: translateY(-3px); }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 54px;
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-stats .stat-num {
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stats .stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.scroll-cue {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.7);
  font-size: 1.5rem;
  animation: bounceCue 2s infinite;
}
@keyframes bounceCue { 0%,100%{ transform: translate(-50%,0);} 50%{ transform: translate(-50%,8px);} }

/* ===================== COUNTDOWN ===================== */
.countdown-band {
  position: relative;
  z-index: 3;
  background: #f26445;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  padding: 26px 0;
}
.countdown-wrap { display: flex; justify-content: center; align-items: center; gap: 14px; flex-wrap: wrap; }
.countdown-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  min-width: 92px;
  padding: 14px 10px;
  text-align: center;
  color: var(--white);
}
.countdown-item .num {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: white !important;
}
.countdown-item .lbl {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: white;
  margin-top: 2px;
}
.countdown-sep { color: rgba(255,255,255,0.35); font-size: 1.6rem; font-weight: 300; }
.countdown-note { text-align:center; color: white; font-size: 0.78rem; margin-top: 14px; }

/* ===================== ABOUT ===================== */
.about-img-wrap { position: relative; }
.about-img-wrap img {
  border-radius: var(--radius);
  /*box-shadow: var(--shadow-strong);*/
  position: relative;
  z-index: 2;
  width: 100%;
}
.about-shape {
  position: absolute;
  width: 70%;
  height: 70%;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: var(--radius);
  z-index: 1;
}
.about-shape.top { top: -24px; left: -24px; }
.about-badge-float {
  position: absolute;
  bottom: -22px; right: -22px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  padding: 18px 22px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-badge-float .icon-circle {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.about-badge-float .num { font-weight: 800; color: var(--navy); font-size: 1.15rem; line-height: 1; }
.about-badge-float .lbl { font-size: 0.72rem; color: var(--text-muted); }

.icon-check-list { list-style: none; padding: 0; margin: 24px 0; }
.icon-check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 12px; color: var(--text-dark); font-weight: 500;
}
.icon-check-list li i { color: var(--orange); font-size: 1.1rem; margin-top: 2px; }

.btn-outline-navy {
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 40px;
  transition: all 0.3s ease;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

.btn-solid-orange {
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 40px;
  border: 2px solid var(--orange);
  transition: all 0.3s ease;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-solid-orange:hover { background: var(--navy); border-color: var(--navy); color: var(--white); transform: translateY(-2px); }

.btn-solid-navy {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 40px;
  border: 2px solid var(--navy);
  transition: all 0.3s ease;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-solid-navy:hover { background: var(--orange); border-color: var(--orange); color: var(--white); transform: translateY(-2px); }

/* ===================== HIGHLIGHTS / STATS ===================== */
.highlights-section { background: var(--navy); position: relative; overflow: hidden; }
.highlights-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(242,100,69,0.18), transparent 45%);
}
.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 34px 20px;
  text-align: center;
  height: 100%;
  transition: all 0.35s ease;
  position: relative;
  z-index: 1;
}
.stat-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-8px); border-color: var(--orange); }
.stat-card i { font-size: 2rem; color: var(--orange); margin-bottom: 14px; }
.stat-card .stat-count { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: var(--white); }
.stat-card .stat-title { color: rgba(255,255,255,0.75); font-weight: 600; margin-top: 6px; }

.mini-list { columns: 2; gap: 30px; margin-top: 40px; }
@media (max-width: 767.98px) { .mini-list { columns: 1; } }
.mini-list li { break-inside: avoid; display: flex; gap: 10px; color: rgba(255,255,255,0.85); margin-bottom: 12px; }
.mini-list li i { color: var(--orange); }

/* ===================== WHY EXHIBIT ===================== */
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  height: 100%;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--light-grey);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-strong); }
.feature-icon {
  width: 62px; height: 62px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), #2c5490);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: all 0.35s ease;
}
.feature-card:hover .feature-icon { background: linear-gradient(135deg, var(--orange), var(--orange-light)); transform: rotate(-6deg) scale(1.05); }
.feature-card h4 { font-size: 1.15rem; margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 0.94rem; margin: 0; }

/* ===================== SECTORS ===================== */
.sector-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 190px;
  background: linear-gradient(150deg, var(--navy) 0%, #2c5490 100%);
  display: flex; align-items: flex-end;
  padding: 20px;
  box-shadow: var(--shadow-soft);
  transition: all 0.35s ease;
  isolation: isolate;
}
.sector-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(36,68,119,0.2), rgba(14,28,53,0.75));
  z-index: 0;
  transition: opacity 0.35s ease;
}
.sector-card::before {
  content: '';
  position: absolute; left: 20px; bottom: 62px;
  width: 34px; height: 3px;
  background: var(--orange);
  border-radius: 3px;
  z-index: 1;
  transition: width 0.35s ease;
}
.sector-card:hover::before { width: 56px; }
.sector-card i {
  position: absolute; top: 18px; right: 18px;
  font-size: 1.6rem; color: rgba(255,255,255,0.85);
  z-index: 1;
  transition: transform 0.35s ease;
}
.sector-card:hover i { transform: scale(1.15) rotate(8deg); }
.sector-card span {
  position: relative; z-index: 1;
  color: var(--white); font-weight: 700; font-size: 1.02rem;
  line-height: 1.25;
}
.sector-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-strong); }

.sector-card.special {
  background: linear-gradient(150deg, var(--orange) 0%, #d94f30 100%);
}

/* ===================== PROMOTIONAL SUPPORT ===================== */
.promo-list { list-style: none; padding: 0; margin: 0; }
.promo-list li {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--light-grey);
  font-weight: 600;
  color: var(--text-dark);
}
.promo-list li:last-child { border-bottom: none; }
.promo-list .chk {
  width: 34px; height: 34px; min-width: 34px;
  border-radius: 50%;
  background: rgba(242,100,69,0.1);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
}

.promo-image-wrap { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-strong); }
.promo-image-wrap img { width: 100%; display: block; }
.promo-image-wrap .promo-tag {
  position: absolute; bottom: 18px; left: 18px;
  background: rgba(14,28,53,0.75);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.85rem;
  backdrop-filter: blur(4px);
}

/* ===================== PARTNERSHIP PRICING ===================== */
.partner-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--light-grey);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
}
.partner-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-strong); }
.partner-card .partner-head {
  padding: 30px 24px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}
.partner-card.featured .partner-head { background: linear-gradient(135deg, var(--orange), #d94f30); }
.partner-card .partner-head .tag {
  font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase;
  background: rgba(255,255,255,0.15); padding: 4px 12px; border-radius: 20px; display: inline-block; margin-bottom: 12px;
}
.partner-card .partner-head h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 6px; }
.partner-card .partner-head .price { font-size: 2rem; font-weight: 800; color: var(--white); }
.partner-card .partner-head .price small { font-size: 0.9rem; font-weight: 500; opacity: 0.8; }
.partner-card .partner-body { padding: 26px 24px; flex-grow: 1; display: flex; flex-direction: column; }
.partner-card .partner-body ul { list-style: none; padding: 0; margin: 0 0 24px; flex-grow: 1; }
.partner-card .partner-body ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: var(--text-muted); margin-bottom: 12px; line-height: 1.4;
}
.partner-card .partner-body ul li i { color: var(--orange); margin-top: 3px; }
.partner-card.featured { border: 2px solid var(--orange); position: relative; }
.partner-card.featured .ribbon {
  position: absolute; top: 14px; right: -34px;
  background: var(--navy); color: var(--white);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1px;
  padding: 5px 40px; transform: rotate(45deg);
  z-index: 2;
}
.partner-card .btn-solid-orange, .partner-card .btn-solid-navy { width: 100%; justify-content: center; }

/* ===================== EXHIBITION SPACE / MAP ===================== */
.floorplan-wrap {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  padding: 14px;
  border: 1px solid var(--light-grey);
}
.floorplan-wrap img { width: 100%; border-radius: 8px; display: block; }

.rate-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.rate-table thead th { background: var(--navy); color: var(--white); padding: 14px 16px; font-weight: 600; font-size: 0.9rem; }
.rate-table tbody td { padding: 14px 16px; border-bottom: 1px solid var(--light-grey); font-size: 0.92rem; }
.rate-table tbody tr:last-child td { border-bottom: none; }
.rate-table tbody tr:hover { background: var(--off-white); }

.hall-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--off-white);
  border: 1px solid var(--light-grey);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin: 4px;
}
.hall-chip i { color: var(--orange); }

/* ===================== FORMS ===================== */
.form-section { background: var(--off-white); }
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  padding: 44px;
  border: 1px solid var(--light-grey);
}
@media (max-width: 576px) { .form-card { padding: 26px 18px; } }

.form-label { font-weight: 600; font-size: 0.88rem; color: var(--text-dark); margin-bottom: 6px; }
.form-control, .form-select {
  border: 1.5px solid var(--light-grey);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 0.94rem;
  transition: all 0.25s ease;
}
.form-control:focus, .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(242,100,69,0.12);
}
.form-section-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin: 28px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--light-grey);
}
.form-section-title:first-of-type { margin-top: 0; }

.btn-submit-form {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  padding: 15px 20px;
  border-radius: 40px;
  border: none;
  width: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-submit-form:hover:not(:disabled) { background: var(--orange); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(242,100,69,0.35); }
.btn-submit-form:disabled { opacity: 0.75; cursor: not-allowed; }

.form-feedback { display: none; margin-top: 20px; padding: 18px 20px; border-radius: 12px; align-items: center; gap: 14px; }
.form-feedback.show { display: flex; }
.form-feedback.success { background: rgba(46, 160, 90, 0.1); border: 1px solid rgba(46,160,90,0.3); }
.form-feedback.error { background: rgba(220, 60, 60, 0.1); border: 1px solid rgba(220,60,60,0.3); }
.form-feedback .fb-icon { font-size: 1.8rem; }
.form-feedback.success .fb-icon { color: #2ea05a; }
.form-feedback.error .fb-icon { color: #dc3c3c; }
.form-feedback .fb-title { font-weight: 700; margin-bottom: 2px; }
.form-feedback.success .fb-title { color: #1e7a44; }
.form-feedback.error .fb-title { color: #b83030; }
.form-feedback p { margin: 0; font-size: 0.88rem; color: var(--text-muted); }

.consent-check { display: flex; align-items: flex-start; gap: 10px; margin: 22px 0; font-size: 0.88rem; color: var(--text-muted); }
.consent-check input { margin-top: 4px; }

/* honeypot */
.hp-field {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
}

/* ===================== CONTACT ===================== */
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--light-grey);
  height: 100%;
  transition: all 0.3s ease;
}
.contact-card:hover { box-shadow: var(--shadow-strong); transform: translateY(-6px); }
.contact-card .c-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), #2c5490);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.contact-card a { color: black; display: block; font-weight: 600; margin-bottom: 4px; transition: color 0.2s ease; }
.contact-card a:hover { color: #f26445; }


/* ===================== VENUE ===================== */
.venue-map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-strong); border: 1px solid var(--light-grey); }
.venue-map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ===================== ORGANISED/HOSTED ===================== */
.org-host-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--light-grey);
  height: 100%;
}
.org-host-card img { max-height: 90px; margin-bottom: 20px; object-fit: contain; }
.org-host-card .tag {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 10px; display: block;
}

a.btn-solid-navy.mt-2{
    color: white !important;
}

/* ===================== PARTNERS GRID ===================== */
.partners-frame {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--light-grey);
  transition: all 0.3s ease;
}
.partners-frame:hover { box-shadow: var(--shadow-strong); }
.partners-frame img { width: 100%; border-radius: 8px; filter: grayscale(0.15); transition: filter 0.3s ease; }
.partners-frame:hover img { filter: grayscale(0); }

/* ===================== GALLERY ===================== */
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  height: 300px;
  box-shadow: var(--shadow-soft);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.12); }
.gallery-item .g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(14,28,53,0.85));
  display: flex; align-items: flex-end; padding: 16px;
  opacity: 0; transition: opacity 0.35s ease;
}
.gallery-item:hover .g-overlay { opacity: 1; }
.gallery-item .g-overlay span { color: var(--white); font-weight: 700; font-size: 0.9rem; }
.gallery-item .g-zoom {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.9); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.6); transition: all 0.3s ease;
}
.gallery-item:hover .g-zoom { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox-overlay {
  position: fixed; inset: 0; background: rgba(10,16,30,0.94);
  z-index: 2000; display: none; align-items: center; justify-content: center;
  padding: 30px;
}
.lightbox-overlay.show { display: flex; }
.lightbox-overlay img { max-width: 90vw; max-height: 85vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-close, .lightbox-nav {
  position: absolute; color: var(--white); background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25); border-radius: 50%;
  width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.25s ease; font-size: 1.2rem;
}
.lightbox-close:hover, .lightbox-nav:hover { background: var(--orange); border-color: var(--orange); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-nav.prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 24px; top: 50%; transform: translateY(-50%); }
@media (max-width: 576px) { .lightbox-nav { width: 40px; height: 40px; } }

/* ===================== FLOATING CTA ===================== */
.floating-cta {
  position: fixed;
  right: 26px; bottom: 26px;
  z-index: 1030;
  display: flex; flex-direction: column; gap: 12px;
  align-items: flex-end;
}
.floating-cta .fab-btn {
  display: flex; align-items: center; gap: 10px;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 13px 20px;
  border-radius: 40px;
  box-shadow: 0 10px 26px rgba(242,100,69,0.4);
  transition: all 0.3s ease;
  opacity: 0; transform: translateY(16px) scale(0.9); pointer-events: none;
}
.floating-cta.visible .fab-btn { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.floating-cta .fab-btn.secondary { background: var(--navy); box-shadow: 0 10px 26px rgba(36,68,119,0.4); }
.floating-cta .fab-btn:hover { transform: translateY(-4px) scale(1.03); color: var(--white); }

.scroll-top-btn {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
  opacity: 0; transform: scale(0.8); pointer-events: none;
  transition: all 0.3s ease;
}
.scroll-top-btn.visible { opacity: 1; transform: scale(1); pointer-events: auto; }
.scroll-top-btn:hover { background: var(--orange); }

@media (max-width: 767px) {
  .floating-cta { display: none; }
}

/* Mobile sticky bottom bar */
.mobile-sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1040;
  display: none;
  background: var(--white);
  box-shadow: 0 -8px 24px rgba(20,34,61,0.15);
  padding: 10px 14px;
  gap: 10px;
}
@media (max-width: 767px) { .mobile-sticky-bar { display: flex; } body { padding-bottom: 70px; } }
.mobile-sticky-bar a {
  flex: 1; text-align: center;
  font-weight: 700; font-size: 0.85rem;
  padding: 12px 8px; border-radius: 30px;
}
.mobile-sticky-bar a.msb-primary { background: var(--orange); color: var(--white); }
.mobile-sticky-bar a.msb-secondary { background: var(--navy); color: var(--white); }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--navy-darker); color: rgba(255,255,255,0.75); padding: 70px 0 0; }
.site-footer h5 { color: var(--white); font-size: 1rem; margin-bottom: 20px; }
.site-footer .footer-logo { height: 42px; margin-bottom: 16px; }
.site-footer p, .site-footer a { color: rgba(255,255,255,0.65); font-size: 0.92rem; }
.site-footer a { transition: color 0.2s ease; }
.site-footer a:hover { color: var(--orange); }
.site-footer ul { list-style: none; padding: 0; }
.site-footer ul li { margin-bottom: 10px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.footer-social a:hover { background: var(--orange); color:white; }
.footer-bottom {
 margin-top: 50px;
    padding: 16px 0 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
    display: flex;
    justify-content: center;
}
.footer-bottom a { color: var(--orange); }

.col-lg-6.col-md-4.col-12.bottom {
    text-align: start;
}

.col-lg-6.col-md-4.col-12.bottom-end {
    text-align: end;
}


.designed-by {
  background: #fff;
  padding: 10px 15px;
  text-align: center;
}

.designed-content {
  display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #000000;
    font-size: 15px;
    font-weight: 600;
}

.designed-content i {
  color: #f15b40;
  font-size: 13px;
  padding-top: 8px;
}

.peer-logo {
  display: inline-flex;
  align-items: center;
  margin-left: 2px;
}

.peer-logo img {
  width: 160px;
  height: auto;
  display: block;
}

.designed-content span{
    padding-top: 8px;
}
/* ===================== MISC ===================== */
.back-to-top-inline { display: inline-flex; }

::selection { background: var(--orange); color: var(--white); }

.aos-init-hidden { visibility: hidden; }

/* Focus visibility for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

/* =========================================================
   MOBILE RESPONSIVE ENHANCEMENTS
   Covers 320 / 375 / 390 / 414 / 767px+ ranges without
   altering the desktop (≥992px) layout.
   ========================================================= */

/* ----- Tablet / small-laptop (≤991.98px) ----- */
@media (max-width: 991.98px) {
  .pitex-navbar .container { padding-left: 20px; padding-right: 20px; }
}

/* ----- General mobile (≤767.98px) ----- */
@media (max-width: 767.98px) {
  .hero { padding-top: 88px; }
  .hero-badge { font-size: 0.74rem; padding: 7px 16px; }
  .hero-tagline { margin-bottom: 20px; }
  .hero-location { gap: 12px 20px; margin-bottom: 26px; font-size: 0.95rem; }
  .hero .d-flex.flex-wrap.gap-3 { gap: 12px !important; }
  .btn-hero-primary, .btn-hero-secondary { padding: 13px 24px; font-size: 0.92rem; }
  .hero-stats { gap: 20px 16px; margin-top: 36px; padding-top: 24px; }

  .countdown-wrap { gap: 8px; }
  .countdown-item { min-width: 66px; padding: 10px 6px; }
  .countdown-item .num { font-size: clamp(1.3rem, 5vw, 1.8rem); }
  .countdown-sep { font-size: 1.2rem; }
  .countdown-note { padding: 0 6px; }

  .about-badge-float { right: -8px; bottom: -12px; padding: 12px 14px; gap: 10px; }
  .about-badge-float .num { font-size: 1rem; }

  .sector-card { height: auto; min-height: 130px; padding: 16px; }
  .sector-card i { font-size: 1.35rem; top: 14px; right: 14px; }
  .sector-card span { font-size: 0.92rem; }

  .gallery-item { height: 190px; }

  .rate-table thead th, .rate-table tbody td { padding: 11px 10px; font-size: 0.85rem; }

  .venue-map-wrap iframe { height: 300px; }

  .partner-card.featured .ribbon { right: -38px; font-size: 0.65rem; padding: 5px 42px; }

  .floating-cta { right: 16px; bottom: 16px; }
  
  .mini-list {
    padding: 0px 10px !important;
}
.footer-bottom {
    display: grid !important;
      font-size: 11px !important;
          margin-top: 10px !important;
}
.col-lg-6.col-md-4.col-12.bottom {
    text-align: center !important;
}
.col-lg-6.col-md-4.col-12.bottom-end {
    text-align: center !important;
}
.designed-content {
    font-size: 11px;
}
.designed-by {
    padding: 10px 0px !important;
}
.peer-logo img {
  width: 130px;
  height: auto;
  display: block;
}
}

/* ----- Small phones (≤575.98px) ----- */
@media (max-width: 575.98px) {
  .pitex-navbar { padding: 14px 0; }
  .pitex-navbar .navbar-brand img { height: 50px; }
  .pitex-navbar.scrolled .navbar-brand img { height: 50px; }

  .hero .hero-mega { font-size: clamp(2.4rem, 13vw, 3.4rem); margin-bottom: 10px; }
  .hero h1 { font-size: 1.4rem; letter-spacing: 0.5px; margin: 18px 0 6px; line-height: 1.3; }
  .hero-tagline { font-size: 1rem; }
  .hero-location { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero .d-flex.flex-wrap.gap-3 { flex-direction: column; align-items: stretch; }
  .btn-hero-primary, .btn-hero-secondary { text-align: center; }

  .hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 14px; margin-top: 30px; padding-top: 22px; }
  .hero-stats .stat-num { font-size: 1.5rem; }

  .stat-card { padding: 24px 14px; }

  .sector-card { min-height: 118px; }

  .gallery-item { height: 160px; }

  .venue-map-wrap iframe { height: 260px; }
}

/* ----- Extra-small phones (≤414px, incl. 390 / 375) ----- */
@media (max-width: 414.98px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .hero-mega, .hero h1 { overflow-wrap: break-word; word-break: break-word; }
  .section-title { font-size: 1.55rem; }
  .section-sub { font-size: 0.96rem; }
  .partner-card .partner-head .price { font-size: 1.7rem; }
}

/* ----- Smallest phones (≤359.98px, e.g. 320px) ----- */
@media (max-width: 359.98px) {
  .hero .hero-mega { font-size: 2.1rem; }
  .hero h1 { font-size: 1.2rem; }
  .hero-location { font-size: 0.88rem; }
  .countdown-item { min-width: 58px; padding: 8px 4px; }
  .countdown-item .num { font-size: 1.15rem; }
  .countdown-item .lbl { font-size: 0.62rem; }
  .hero-stats { gap: 18px 10px; }
  .hero-stats .stat-num { font-size: 1.3rem; }
}
