/* ============================================================
   CD Business Group - modern.css
   Styles for the 2026 redesign: Furniture catalogue, quote basket,
   homepage sections. Complements styles.css (nav/footer/base).
   ============================================================ */

:root {
  --mx: clamp(20px, 6vw, 90px);
  --shadow-sm: 0 4px 14px rgba(3, 6, 58, 0.08);
  --shadow-md: 0 12px 34px rgba(3, 6, 58, 0.12);
  --shadow-lg: 0 24px 60px rgba(3, 6, 58, 0.18);
  --radius: 14px;
  --wa: #25D366;
}

/* ---------- Generic helpers ---------- */
.mx-wrap { padding-left: var(--mx); padding-right: var(--mx); }
.eyebrow-dot {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--red);
}
.eyebrow-dot::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); flex: none;
}

/* ============================================================
   HOMEPAGE
   ============================================================ */

.hero2 {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 500px at 90% -10%, rgba(13, 21, 128, 0.08), transparent 60%),
    radial-gradient(700px 420px at -10% 110%, rgba(217, 11, 11, 0.07), transparent 60%),
    linear-gradient(135deg, #ffffff 0%, #f6f7fb 100%);
  padding: calc(70px + 4vh) var(--mx) 4vh;
  min-height: min(calc(100vh - 44px), 950px);
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(24px, 4vw, 70px); align-items: center;
}
.hero2::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(13, 21, 128, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(13, 21, 128, 0.035) 1px, transparent 1px);
  background-size: 44px 44px; opacity: 0.55;
}
.hero2__copy { position: relative; z-index: 2; }
.hero2__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 5.2vw, 4.3rem);
  font-weight: 700; line-height: 1.02; color: var(--navy-deep);
  margin: 18px 0 0; text-wrap: balance;
}
.hero2__title em { font-style: normal; color: var(--red); }
.hero2__lead {
  margin-top: 22px; max-width: 54ch; font-size: 1.06rem;
  line-height: 1.8; color: rgba(3, 6, 58, 0.72);
}
.hero2__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.btn2 {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 34px; border-radius: 8px; border: 2px solid transparent;
  font-weight: 800; font-size: 0.85rem; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none; cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s, color 0.25s;
  font-family: 'Barlow', sans-serif;
}
.btn2--red { background: var(--red); color: #fff; box-shadow: 0 10px 30px rgba(217, 11, 11, 0.3); }
.btn2--red:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(217, 11, 11, 0.38); }
.btn2--ghost { border-color: var(--navy-deep); color: var(--navy-deep); background: transparent; }
.btn2--ghost:hover { background: var(--navy-deep); color: #fff; transform: translateY(-2px); }
.btn2--wa { background: var(--wa); color: #fff; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.32); }
.btn2--wa:hover { transform: translateY(-2px); }
.btn2--navy { background: var(--navy); color: #fff; box-shadow: 0 10px 30px rgba(6, 11, 94, 0.3); }
.btn2--navy:hover { transform: translateY(-2px); }

.hero2__stats {
  display: grid; grid-template-columns: repeat(4, auto); gap: clamp(18px, 3vw, 46px);
  margin-top: 44px; width: fit-content;
}
.hero2__stat { min-width: 86px; }
.hero2__stat b {
  display: block; font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem; font-weight: 900; color: var(--navy-deep); line-height: 1;
}
.hero2__stat b span { color: var(--red); }
.hero2__stat small {
  display: block; margin-top: 5px; font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: rgba(3, 6, 58, 0.55);
}

.hero2__visual { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: minmax(120px, auto); gap: 16px; }
.hero2__card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid rgba(3, 6, 58, 0.06);
  position: relative;
}
.hero2__card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero2__card--tall { grid-row: span 2; }
.hero2__card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 16px 12px; color: #fff; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: linear-gradient(transparent, rgba(3, 6, 58, 0.82));
}

/* ---------- Category tiles ---------- */
.cats { padding: clamp(56px, 9vh, 100px) var(--mx); background: #fff; }
.cats__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  gap: 18px; margin-top: 40px;
}
.cat-tile {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 240px; border-radius: var(--radius); overflow: hidden;
  text-decoration: none; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(3, 6, 58, 0.07); background: #f7f8fc;
  transition: transform 0.3s, box-shadow 0.3s;
}
.cat-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.cat-tile img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; object-position: center 35%; padding: 14px 14px 74px;
  transition: transform 0.4s;
}
.cat-tile:hover img { transform: scale(1.05); }
.cat-tile--cover img { object-fit: cover; padding: 0; }
.cat-tile__label {
  position: relative; z-index: 2; padding: 14px 16px;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.95) 30%);
}
.cat-tile--cover .cat-tile__label { background: linear-gradient(transparent, rgba(3, 6, 58, 0.88) 40%); }
.cat-tile__label b {
  display: block; font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem; font-weight: 700; color: var(--navy-deep); line-height: 1.1;
}
.cat-tile--cover .cat-tile__label b { color: #fff; }
.cat-tile__label small { font-size: 0.75rem; font-weight: 600; color: var(--red); letter-spacing: 0.08em; text-transform: uppercase; }

/* ---------- Featured products strip ---------- */
.featured { padding: clamp(56px, 9vh, 100px) var(--mx); background: var(--off-white); }
.featured__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px; margin-top: 40px;
}

/* ---------- How it works ---------- */
.how { padding: clamp(56px, 9vh, 100px) var(--mx); background: var(--navy-deep); color: #fff; position: relative; overflow: hidden; }
.how::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
}
.how__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; margin-top: 44px; position: relative; }
.how-step {
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius); padding: 26px 22px;
}
.how-step__num {
  font-family: 'Barlow Condensed', sans-serif; font-size: 2.6rem; font-weight: 900;
  color: var(--red-light); line-height: 1;
}
.how-step h3 { margin: 12px 0 8px; font-size: 1.05rem; font-weight: 800; letter-spacing: 0.02em; }
.how-step p { font-size: 0.9rem; line-height: 1.7; color: rgba(255, 255, 255, 0.72); }

/* ---------- Value props ---------- */
.props { padding: clamp(56px, 9vh, 100px) var(--mx); background: #fff; }
.props__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; margin-top: 40px; }
.prop-card {
  border: 1px solid rgba(3, 6, 58, 0.09); border-left: 4px solid var(--red);
  border-radius: 10px; padding: 24px 22px; background: #fff; box-shadow: var(--shadow-sm);
}
.prop-card h3 { font-size: 1rem; font-weight: 800; color: var(--navy-deep); margin-bottom: 8px; }
.prop-card p { font-size: 0.9rem; line-height: 1.7; color: rgba(3, 6, 58, 0.65); }

/* ---------- Booth showcase ---------- */
.booths { padding: clamp(56px, 9vh, 100px) var(--mx); background: var(--off-white); }
.booths__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 60px); align-items: center; margin-top: 34px; }
.booths__img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.booths__img img { width: 100%; display: block; }
.booths__sizes { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 28px; }
.size-chip {
  padding: 9px 16px; border-radius: 100px; background: #fff;
  border: 1.5px solid rgba(6, 11, 94, 0.25); font-weight: 700; font-size: 0.85rem;
  color: var(--navy-deep);
}
.booths__note { font-size: 0.85rem; color: rgba(3, 6, 58, 0.6); margin-top: 14px; }

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */

.cat-hero {
  background: linear-gradient(120deg, var(--navy-deep) 0%, var(--navy) 70%, #101a9a 100%);
  color: #fff; padding: calc(70px + min(7vh, 64px)) var(--mx) min(7vh, 64px);
  position: relative; overflow: hidden;
}
.cat-hero::after {
  content: "CD"; position: absolute; right: -1.5vw; bottom: -9vh;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: clamp(12rem, 26vw, 24rem); line-height: 1; color: rgba(255, 255, 255, 0.045);
  pointer-events: none;
}
.cat-hero h1 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: clamp(2.2rem, 4.6vw, 3.8rem); line-height: 1.03; margin: 16px 0 0;
}
.cat-hero p { margin-top: 16px; max-width: 62ch; font-size: 1.02rem; line-height: 1.8; color: rgba(255, 255, 255, 0.78); }
.cat-hero__meta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.meta-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px;
  border-radius: 100px; background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.04em; color: rgba(255, 255, 255, 0.92);
}
.meta-pill b { color: #fff; }

/* ---------- Toolbar ---------- */
.toolbar {
  position: sticky; top: 70px; z-index: 60; background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px); border-bottom: 1px solid rgba(3, 6, 58, 0.08);
  padding: 14px var(--mx); display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
}
.toolbar__chips { display: flex; flex-wrap: wrap; gap: 8px; flex: 1 1 auto; }
.chip {
  padding: 8px 15px; border-radius: 100px; border: 1.5px solid rgba(6, 11, 94, 0.22);
  background: #fff; color: var(--navy-deep); font-weight: 700; font-size: 0.8rem;
  cursor: pointer; transition: all 0.2s; font-family: 'Barlow', sans-serif; white-space: nowrap;
}
.chip:hover { border-color: var(--navy); background: rgba(6, 11, 94, 0.05); }
.chip.active { background: var(--navy-deep); border-color: var(--navy-deep); color: #fff; }
.toolbar__search { position: relative; flex: 0 1 260px; min-width: 180px; }
.toolbar__search input {
  width: 100%; padding: 10px 14px 10px 38px; border-radius: 100px;
  border: 1.5px solid rgba(6, 11, 94, 0.22); font-family: 'Barlow', sans-serif;
  font-size: 0.9rem; outline: none; transition: border 0.2s; background: #fff; color: var(--navy-deep);
}
.toolbar__search input:focus { border-color: var(--navy); }
.toolbar__search svg { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; stroke: rgba(3, 6, 58, 0.45); }
.toolbar__count { font-size: 0.8rem; font-weight: 600; color: rgba(3, 6, 58, 0.55); white-space: nowrap; }

/* ---------- Product grid ---------- */
.pgrid-wrap { padding: 34px var(--mx) 80px; background: var(--off-white); min-height: 50vh; }
.pgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }
.pcard {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(3, 6, 58, 0.07); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; transition: transform 0.28s, box-shadow 0.28s;
}
.pcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.pcard__img {
  position: relative; aspect-ratio: 4 / 3.4; background: #fff;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  border-bottom: 1px solid rgba(3, 6, 58, 0.06); overflow: hidden;
}
.pcard__img img { max-width: 88%; max-height: 88%; object-fit: contain; transition: transform 0.35s; }
.pcard:hover .pcard__img img { transform: scale(1.06); }
.pcard__code {
  position: absolute; top: 12px; left: 12px; background: var(--navy-deep); color: #fff;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; padding: 5px 10px; border-radius: 6px;
}
.pcard__body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pcard__name { font-size: 1.02rem; font-weight: 800; color: var(--navy-deep); line-height: 1.25; }
.pcard__size { font-size: 0.8rem; color: rgba(3, 6, 58, 0.55); font-weight: 600; }
.pcard__colors { display: flex; gap: 5px; align-items: center; }
.dot { width: 13px; height: 13px; border-radius: 50%; border: 1px solid rgba(3, 6, 58, 0.25); }
.pcard__actions { margin-top: auto; display: flex; gap: 8px; padding-top: 10px; }
.pcard__btn {
  flex: 1; padding: 11px 10px; border-radius: 8px; font-weight: 800; font-size: 0.76rem;
  letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; border: none;
  font-family: 'Barlow', sans-serif; transition: all 0.2s;
}
.pcard__btn--add { background: var(--navy); color: #fff; }
.pcard__btn--add:hover { background: var(--navy-deep); }
.pcard__btn--add.added { background: #0d7a3c; }
.pcard__btn--view { background: transparent; border: 1.5px solid rgba(6, 11, 94, 0.3); color: var(--navy-deep); flex: 0 0 auto; padding: 11px 14px; }
.pcard__btn--view:hover { background: var(--navy-deep); color: #fff; }
.pgrid__empty { text-align: center; padding: 70px 20px; color: rgba(3, 6, 58, 0.55); font-size: 1rem; grid-column: 1 / -1; }

/* ---------- Terms strip ---------- */
.terms-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px; padding: 26px var(--mx); background: #fff;
  border-top: 1px solid rgba(3, 6, 58, 0.07); border-bottom: 1px solid rgba(3, 6, 58, 0.07);
}
.term { display: flex; gap: 12px; align-items: flex-start; }
.term__ic {
  flex: none; width: 38px; height: 38px; border-radius: 10px; background: rgba(217, 11, 11, 0.09);
  color: var(--red); display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.term b { display: block; font-size: 0.88rem; color: var(--navy-deep); }
.term small { font-size: 0.78rem; color: rgba(3, 6, 58, 0.58); line-height: 1.5; }

/* ============================================================
   PRODUCT MODAL
   ============================================================ */
.pmodal {
  position: fixed; inset: 0; z-index: 300; display: none;
  align-items: center; justify-content: center; padding: 20px;
}
.pmodal.open { display: flex; }
.pmodal__backdrop { position: absolute; inset: 0; background: rgba(3, 6, 58, 0.55); backdrop-filter: blur(4px); }
.pmodal__panel {
  position: relative; background: #fff; border-radius: 18px; max-width: 860px; width: 100%;
  max-height: 90vh; overflow: auto; box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.pmodal__close {
  position: absolute; top: 12px; right: 12px; z-index: 5; width: 38px; height: 38px;
  border-radius: 50%; border: none; background: var(--navy-deep); color: #fff;
  font-size: 1.1rem; cursor: pointer; line-height: 1;
}
.pmodal__gallery { padding: 26px; display: flex; flex-direction: column; gap: 12px; background: #fafbfe; }
.pmodal__main {
  aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center;
  background: #fff; border-radius: 12px; border: 1px solid rgba(3, 6, 58, 0.07); overflow: hidden;
}
.pmodal__main img { max-width: 92%; max-height: 92%; object-fit: contain; }
.pmodal__thumbs { display: flex; gap: 8px; }
.pmodal__thumbs button {
  width: 64px; height: 64px; border-radius: 8px; border: 2px solid rgba(3, 6, 58, 0.12);
  background: #fff; cursor: pointer; overflow: hidden; padding: 4px;
}
.pmodal__thumbs button.active { border-color: var(--red); }
.pmodal__thumbs img { width: 100%; height: 100%; object-fit: contain; }
.pmodal__info { padding: 30px 28px; }
.pmodal__info h2 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.9rem; font-weight: 700;
  color: var(--navy-deep); line-height: 1.1; margin: 10px 0 12px;
}
.pmodal__desc { font-size: 0.94rem; line-height: 1.75; color: rgba(3, 6, 58, 0.7); margin-bottom: 18px; }
.spec-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.spec-table td { padding: 8px 0; border-bottom: 1px solid rgba(3, 6, 58, 0.08); font-size: 0.86rem; vertical-align: top; }
.spec-table td:first-child { font-weight: 700; color: var(--navy-deep); width: 38%; }
.spec-table td:last-child { color: rgba(3, 6, 58, 0.68); }
.pmodal__qty { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.pmodal__qty label { font-weight: 700; font-size: 0.85rem; color: var(--navy-deep); }
.qty-ctrl { display: inline-flex; align-items: center; border: 1.5px solid rgba(6, 11, 94, 0.25); border-radius: 8px; overflow: hidden; }
.qty-ctrl button { width: 36px; height: 36px; border: none; background: #f2f3f9; font-size: 1.1rem; cursor: pointer; color: var(--navy-deep); font-weight: 700; }
.qty-ctrl input { width: 52px; height: 36px; border: none; text-align: center; font-weight: 700; font-family: 'Barlow', sans-serif; color: var(--navy-deep); outline: none; }
.pmodal__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.pmodal__note { margin-top: 14px; font-size: 0.78rem; color: rgba(3, 6, 58, 0.55); }

/* ============================================================
   QUOTE BASKET (floating button + drawer) - all pages
   ============================================================ */
.qfab {
  position: fixed; right: 24px; bottom: 96px; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--navy-deep); color: #fff; box-shadow: 0 12px 30px rgba(3, 6, 58, 0.4);
  display: flex; align-items: center; justify-content: center; transition: transform 0.25s;
}
.qfab:hover { transform: scale(1.08); }
.qfab svg { width: 25px; height: 25px; }
.qfab__count {
  position: absolute; top: -4px; right: -4px; min-width: 22px; height: 22px;
  border-radius: 100px; background: var(--red); color: #fff; font-size: 0.72rem;
  font-weight: 800; display: flex; align-items: center; justify-content: center; padding: 0 5px;
  border: 2px solid #fff;
}
.qdrawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 400; width: min(430px, 100vw);
  background: #fff; box-shadow: -18px 0 50px rgba(3, 6, 58, 0.25);
  transform: translateX(105%); transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
}
.qdrawer.open { transform: none; }
.qdrawer__backdrop { position: fixed; inset: 0; z-index: 390; background: rgba(3, 6, 58, 0.45); opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.qdrawer__backdrop.open { opacity: 1; pointer-events: auto; }
.qdrawer__head {
  padding: 20px 22px; background: var(--navy-deep); color: #fff;
  display: flex; align-items: center; justify-content: space-between;
}
.qdrawer__head h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; font-weight: 700; letter-spacing: 0.03em; }
.qdrawer__head button { background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; line-height: 1; }
.qdrawer__items { flex: 1; overflow: auto; padding: 16px 22px; }
.qitem { display: flex; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(3, 6, 58, 0.08); }
.qitem__img { flex: none; width: 58px; height: 58px; border-radius: 8px; border: 1px solid rgba(3, 6, 58, 0.1); background: #fff; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.qitem__img img { max-width: 90%; max-height: 90%; object-fit: contain; }
.qitem__info { flex: 1; min-width: 0; }
.qitem__info b { display: block; font-size: 0.88rem; color: var(--navy-deep); line-height: 1.25; }
.qitem__info small { font-size: 0.72rem; color: rgba(3, 6, 58, 0.5); font-weight: 700; letter-spacing: 0.06em; }
.qitem__qty { display: flex; align-items: center; gap: 6px; }
.qitem__qty button {
  width: 26px; height: 26px; border-radius: 6px; border: 1px solid rgba(6, 11, 94, 0.25);
  background: #fff; cursor: pointer; font-weight: 800; color: var(--navy-deep); line-height: 1;
}
.qitem__qty span { min-width: 24px; text-align: center; font-weight: 800; font-size: 0.9rem; color: var(--navy-deep); }
.qitem__rm { background: none; border: none; color: rgba(217, 11, 11, 0.8); cursor: pointer; font-size: 1rem; padding: 4px; }
.qdrawer__empty { text-align: center; color: rgba(3, 6, 58, 0.5); padding: 46px 18px; font-size: 0.94rem; line-height: 1.7; }
.qdrawer__form { padding: 14px 22px 0; border-top: 1px solid rgba(3, 6, 58, 0.08); }
.qdrawer__form input,
.qdrawer__form select {
  width: 100%; margin-bottom: 9px; padding: 11px 13px; border-radius: 8px;
  border: 1.5px solid rgba(6, 11, 94, 0.2); font-family: 'Barlow', sans-serif; font-size: 0.88rem;
  outline: none; color: var(--navy-deep); background: #fff;
}
.qdrawer__form input:focus,
.qdrawer__form select:focus { border-color: var(--navy); }
.qdrawer__foot { padding: 12px 22px 20px; display: grid; gap: 9px; }
.qdrawer__hint { font-size: 0.72rem; color: rgba(3, 6, 58, 0.5); text-align: center; line-height: 1.5; }

/* WhatsApp float (shared) */
.whatsapp-float2 {
  position: fixed; right: 24px; bottom: 24px; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--wa); color: #fff; box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  display: flex; align-items: center; justify-content: center; transition: transform 0.25s;
}
.whatsapp-float2:hover { transform: scale(1.08); }
.whatsapp-float2 svg { width: 30px; height: 30px; fill: #fff; }

/* toast */
.toast {
  position: fixed; left: 50%; bottom: 30px; transform: translate(-50%, 80px);
  z-index: 500; background: var(--navy-deep); color: #fff; padding: 13px 26px;
  border-radius: 100px; font-weight: 700; font-size: 0.88rem; box-shadow: var(--shadow-lg);
  transition: transform 0.35s; pointer-events: none; white-space: nowrap;
}
.toast.show { transform: translate(-50%, 0); }

/* ---------- Section headers (reused) ---------- */
.sec-head { max-width: 720px; }
.sec-head--center { margin: 0 auto; text-align: center; }
.sec-head h2 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem); color: var(--navy-deep); line-height: 1.08;
  margin: 14px 0 0;
}
.how .sec-head h2 { color: #fff; }
.sec-head p { margin-top: 14px; font-size: 0.98rem; line-height: 1.75; color: rgba(3, 6, 58, 0.65); }
.how .sec-head p { color: rgba(255, 255, 255, 0.72); }
.sec-head--center .sec-line { margin: 18px auto 0; }
.sec-line { width: 74px; height: 4px; background: linear-gradient(90deg, var(--red), transparent); margin-top: 18px; }

/* ---------- CTA banner v2 ---------- */
.cta2 {
  margin: clamp(40px, 8vh, 90px) var(--mx); border-radius: 20px; overflow: hidden;
  background: linear-gradient(120deg, var(--red) 0%, #a30808 100%);
  color: #fff; padding: clamp(36px, 6vw, 64px);
  display: flex; flex-wrap: wrap; gap: 26px; align-items: center; justify-content: space-between;
  box-shadow: 0 24px 60px rgba(217, 11, 11, 0.35);
}
.cta2 h2 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(1.8rem, 3.6vw, 2.8rem); font-weight: 700; line-height: 1.1; }
.cta2 p { margin-top: 10px; font-size: 0.98rem; color: rgba(255, 255, 255, 0.85); }
.cta2__btns { display: flex; flex-wrap: wrap; gap: 12px; }
.cta2 .btn2--ghost { border-color: #fff; color: #fff; }
.cta2 .btn2--ghost:hover { background: #fff; color: var(--red); }
.cta2 .btn2--white { background: #fff; color: var(--red); }

/* ============================================================
   ABOUT / CLIENTS / CONTACT (2026 redesign)
   ============================================================ */

/* --- shared page sections --- */
.page-sec { padding: clamp(56px, 9vh, 100px) var(--mx); }
.page-sec--white { background: #fff; }
.page-sec--tint { background: var(--off-white); }

/* --- split section: copy + imagery --- */
.split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(28px, 5vw, 80px); align-items: center; }
.split--flip { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); }
.split__copy p { font-size: 0.98rem; line-height: 1.85; color: rgba(3, 6, 58, 0.7); margin-top: 16px; }
.split__copy p b { color: var(--navy-deep); }
.split__imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.split__imgs figure {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md);
  border: 1px solid rgba(3, 6, 58, 0.06); background: #fff; margin: 0;
}
.split__imgs figure.wide { grid-column: 1 / -1; }
.split__imgs img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 16 / 10; }
.split__imgs figure.sq img { aspect-ratio: 1 / 1; }

/* --- stat band --- */
.stat-band {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #071062 100%);
  color: #fff; position: relative; overflow: hidden;
  padding: clamp(48px, 8vh, 76px) var(--mx);
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 38px 18px; align-items: start;
}
.stat-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 120% at 50% 0%, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
}
.stat-band__item { position: relative; text-align: center; }
.stat-band__item:not(:first-child)::before {
  content: ""; position: absolute; left: -9px; top: 50%; transform: translateY(-50%);
  width: 1px; height: 52px; background: rgba(255, 255, 255, 0.12);
}
.stat-band__item b {
  display: block; font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 4.2vw, 3.4rem); font-weight: 900; line-height: 1;
  letter-spacing: 0.02em; font-variant-numeric: tabular-nums;
}
.stat-band__item b span { color: var(--gold); font-size: 0.62em; margin-left: 2px; }
.stat-band__item b::after {
  content: ""; display: block; width: 24px; height: 3px; border-radius: 2px;
  background: var(--gold); margin: 14px auto 0; opacity: 0.9;
}
.stat-band__item small {
  display: block; margin-top: 12px; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255, 255, 255, 0.55);
  line-height: 1.5; max-width: 170px; margin-left: auto; margin-right: auto;
}
@media (max-width: 1020px) {
  .stat-band { grid-template-columns: repeat(3, 1fr); gap: 34px 16px; }
  .stat-band__item::before { display: none !important; }
}
@media (max-width: 560px) {
  .stat-band { grid-template-columns: repeat(2, 1fr); gap: 30px 12px; }
  .stat-band__item:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .stat-band__item b { font-size: 2.2rem; }
  .stat-band__item small { font-size: 0.64rem; letter-spacing: 0.14em; }
}

/* --- numbered value cards --- */
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 40px; }
.value-card {
  background: #fff; border: 1px solid rgba(3, 6, 58, 0.08); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
}
.value-card::after {
  content: attr(data-num); position: absolute; right: 14px; top: 4px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 3.4rem; font-weight: 900;
  color: rgba(6, 11, 94, 0.07); line-height: 1;
}
.value-card h3 { font-size: 1.02rem; font-weight: 800; color: var(--navy-deep); margin: 10px 0 8px; }
.value-card p { font-size: 0.9rem; line-height: 1.7; color: rgba(3, 6, 58, 0.62); }
.value-card__ic {
  width: 42px; height: 42px; border-radius: 11px; display: flex; align-items: center;
  justify-content: center; font-size: 1.25rem; background: rgba(217, 11, 11, 0.09); color: var(--red);
}

/* --- coverage chips --- */
.coverage-band { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.coverage-band .size-chip { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.3); color: #fff; }

/* --- logo wall --- */
.logo-wall { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 16px; margin-top: 40px; }
.logo-card {
  background: #fff; border: 1px solid rgba(3, 6, 58, 0.08); border-radius: 12px;
  box-shadow: var(--shadow-sm); padding: 18px 14px 14px; text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.logo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.logo-card__img {
  height: 78px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
}
.logo-card__img img { max-height: 100%; max-width: 82%; object-fit: contain; }
.logo-card b { display: block; font-size: 0.8rem; font-weight: 700; color: var(--navy-deep); line-height: 1.3; }
.logo-card small { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(3, 6, 58, 0.45); }

/* --- contact page --- */
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; margin-top: -46px; position: relative; z-index: 5; padding: 0 var(--mx); }
.ccard {
  background: #fff; border-radius: var(--radius); border: 1px solid rgba(3, 6, 58, 0.08);
  box-shadow: var(--shadow-md); padding: 24px 22px; display: flex; flex-direction: column; gap: 6px;
}
.ccard__ic {
  width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 8px;
  background: rgba(6, 11, 94, 0.07); color: var(--navy-deep);
}
.ccard__ic svg { width: 20px; height: 20px; }
.ccard--wa .ccard__ic { background: rgba(37, 211, 102, 0.12); color: #128C4B; }
.ccard--gold .ccard__ic { background: rgba(201, 168, 76, 0.16); color: #8F6F1E; }
.ccard small { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(3, 6, 58, 0.45); }
.ccard b { font-size: 1.05rem; color: var(--navy-deep); }
.ccard a.ccard__link { font-weight: 800; color: var(--navy-deep); text-decoration: none; font-size: 1.02rem; }
.ccard a.ccard__link:hover { color: #8F6F1E; }
.ccard p { font-size: 0.82rem; line-height: 1.6; color: rgba(3, 6, 58, 0.58); }

.contact-layout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: clamp(26px, 4vw, 60px); align-items: start; }
.cform-card {
  background: #fff; border-radius: var(--radius); border: 1px solid rgba(3, 6, 58, 0.08);
  box-shadow: var(--shadow-md); padding: clamp(24px, 4vw, 40px);
}
.cform-card h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.9rem; font-weight: 700; color: var(--navy-deep); margin: 10px 0 8px; }
.cform-card > p { font-size: 0.92rem; line-height: 1.7; color: rgba(3, 6, 58, 0.62); margin-bottom: 22px; }
.cform { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cform .full { grid-column: 1 / -1; }
.cform label { display: block; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy-deep); margin-bottom: 6px; }
.cform input, .cform select, .cform textarea {
  width: 100%; padding: 12px 14px; border-radius: 9px; border: 1.5px solid rgba(6, 11, 94, 0.2);
  font-family: 'Barlow', sans-serif; font-size: 0.92rem; color: var(--navy-deep);
  background: #fff; outline: none; transition: border 0.2s;
}
.cform input:focus, .cform select:focus, .cform textarea:focus { border-color: var(--navy); }
.cform textarea { resize: vertical; min-height: 120px; }
.cform__actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.cform__note { grid-column: 1 / -1; font-size: 0.78rem; color: rgba(3, 6, 58, 0.5); line-height: 1.6; }

.info-stack { display: grid; gap: 16px; }
.info-card {
  background: #fff; border-radius: var(--radius); border: 1px solid rgba(3, 6, 58, 0.08);
  box-shadow: var(--shadow-sm); padding: 22px;
}
.info-card--navy { background: var(--navy-deep); color: #fff; border: none; }
.info-card h3 { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.info-card--navy h3 { color: #ff8080; }
.info-row { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px solid rgba(3, 6, 58, 0.07); font-size: 0.88rem; }
.info-card--navy .info-row { border-color: rgba(255, 255, 255, 0.12); }
.info-row:last-child { border-bottom: none; }
.info-row span { color: rgba(3, 6, 58, 0.55); font-weight: 600; }
.info-card--navy .info-row span { color: rgba(255, 255, 255, 0.6); }
.info-row b { color: var(--navy-deep); text-align: right; }
.info-card--navy .info-row b { color: #fff; }
.info-card ol { margin: 0; padding-left: 18px; display: grid; gap: 10px; }
.info-card ol li { font-size: 0.88rem; line-height: 1.6; color: rgba(255, 255, 255, 0.85); }
.info-card ol li b { color: #fff; }

@media (max-width: 1020px) {
  .split, .split--flip, .contact-layout { grid-template-columns: 1fr; }
  .contact-cards { margin-top: 24px; }
}
@media (max-width: 700px) {
  .cform { grid-template-columns: 1fr; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1020px) {
  .hero2 { grid-template-columns: 1fr; min-height: 0; padding-top: calc(70px + 5vh); }
  .hero2__visual { max-width: 640px; }
  .booths__grid { grid-template-columns: 1fr; }
  .toolbar { top: 62px; }
}
@media (max-width: 700px) {
  .pmodal { padding: 0; align-items: flex-end; }
  .pmodal__panel { grid-template-columns: 1fr; max-height: 94vh; border-radius: 18px 18px 0 0; }
  .pmodal__gallery { padding: 18px 18px 4px; }
  .pmodal__info { padding: 20px 18px 30px; }
  .hero2__stats { grid-template-columns: repeat(2, 1fr); width: 100%; }
  .toolbar { padding: 10px 14px; }
  .toolbar__chips { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
  .toolbar__search { flex: 1 1 100%; }
  .qfab { right: 16px; bottom: 88px; }
  .whatsapp-float2 { right: 16px; bottom: 18px; }
  .cta2 { margin-left: 14px; margin-right: 14px; }
}

/* ============================================================
   HOME 2026 - Video hero, quote modal, gold accents
   ============================================================ */

/* Transparent nav over the video, solid once scrolled */
nav.nav--clear:not(.scrolled) {
  background: linear-gradient(180deg, rgba(3, 6, 58, 0.55), rgba(3, 6, 58, 0));
  box-shadow: none;
}
nav.nav--clear.scrolled { background: var(--navy-deep); }

/* ---------- Video hero ---------- */
.vhero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
}
.vhero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vhero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(3, 6, 58, 0.9) 0%, rgba(3, 6, 58, 0.62) 52%, rgba(3, 6, 58, 0.3) 100%);
}
.vhero__content {
  position: relative;
  z-index: 2;
  padding: 130px var(--mx) 90px;
  max-width: 1080px;
}
.vhero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.vhero__eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--gold);
  flex: none;
}
.vhero__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 8.5vw, 6.6rem);
  line-height: 0.98;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.01em;
  margin: 22px 0 26px;
}
.vhero__title em {
  font-style: italic;
  color: var(--gold);
}
.vhero__lead {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 40px;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: var(--navy-deep);
  border: none;
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 18px 38px;
  border-radius: 999px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}
.btn-hero svg { width: 18px; height: 18px; transition: transform 0.25s; }
.btn-hero:hover {
  background: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.4);
}
.btn-hero:hover svg { transform: translateX(4px); }
/* Floating "CD Business" side tab (home page only) */
.cd-side-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1500;
  writing-mode: vertical-rl;
  background: linear-gradient(180deg, var(--red) 0%, #B00909 100%);
  color: var(--white);
  border: none;
  border-radius: 12px 0 0 12px;
  padding: 20px 11px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: -6px 0 24px rgba(3, 6, 58, 0.28);
  animation: cdSidePulse 2.4s ease-in-out infinite;
  transition: background 0.25s, padding-right 0.25s;
}
.cd-side-btn:hover {
  background: var(--navy-deep);
  color: var(--white);
  padding-right: 16px;
  animation: none;
}
@keyframes cdSidePulse {
  0%, 100% { box-shadow: -6px 0 24px rgba(3, 6, 58, 0.28), 0 0 0 0 rgba(217, 11, 11, 0.5); }
  50% { box-shadow: -6px 0 24px rgba(3, 6, 58, 0.28), 0 0 0 12px rgba(217, 11, 11, 0); }
}
@media (max-width: 700px) {
  .cd-side-btn { padding: 15px 9px; font-size: 0.68rem; }
}

/* Email-sent success popup */
.mailpop {
  position: fixed;
  inset: 0;
  z-index: 2700;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.mailpop.open { display: flex; }
.mailpop__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 58, 0.55);
  backdrop-filter: blur(3px);
  animation: qmFade 0.22s ease;
}
.mailpop__panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 400px;
  background: #fff;
  border-radius: 18px;
  padding: 34px 30px 30px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: qmRise 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.mailpop__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.14);
  color: #0d7a3c;
  margin-bottom: 14px;
}
.mailpop__check svg { width: 30px; height: 30px; }
.mailpop__panel h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy-deep);
  margin-bottom: 8px;
}
.mailpop__panel p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(3, 6, 58, 0.65);
  margin-bottom: 20px;
}

/* Full-image modal (company profile) */
.imodal {
  position: fixed;
  inset: 0;
  z-index: 2600;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 26px;
}
.imodal.open { display: flex; }
.imodal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 58, 0.8);
  backdrop-filter: blur(5px);
  animation: qmFade 0.25s ease;
}
.imodal__img {
  position: relative;
  z-index: 2;
  max-width: min(1200px, 94vw);
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  animation: qmRise 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.imodal__close {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}
.imodal__close:hover { background: rgba(255, 255, 255, 0.28); }

.vhero__scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.vhero__scroll span {
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.35);
  position: relative;
  overflow: hidden;
}
.vhero__scroll span::after {
  content: "";
  position: absolute;
  left: 0;
  top: -50%;
  width: 100%;
  height: 50%;
  background: var(--gold);
  animation: vheroScroll 2.2s ease-in-out infinite;
}
@keyframes vheroScroll {
  0% { top: -50%; }
  60%, 100% { top: 110%; }
}

/* De-emphasize red on the home clients section */
.home-clients-preview .eyebrow-dot { color: var(--navy); }
.home-clients-preview .eyebrow-dot::before { background: var(--gold); }
.home-clients-preview .sec-line { background: linear-gradient(90deg, var(--gold), transparent); }

/* ---------- Exhibition stand designs portfolio ---------- */
.stands {
  background: #fff;
  padding: 90px 0 84px;
}
.stands__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding: 0 var(--mx) 38px;
}
.stands .eyebrow-dot { color: var(--navy); }
.stands .eyebrow-dot::before { background: var(--gold); }
.stands__head h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy-deep);
  margin-top: 10px;
}
.stands__sub {
  max-width: 560px;
  margin-top: 12px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(3, 6, 58, 0.65);
}
.stands__nav { display: flex; gap: 10px; flex: none; }
.stands__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(3, 6, 58, 0.18);
  background: #fff;
  color: var(--navy-deep);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.stands__arrow svg { width: 20px; height: 20px; }
.stands__arrow:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: var(--gold);
}
.stands__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px var(--mx) 26px;
  scrollbar-width: none;
}
.stands__track::-webkit-scrollbar { display: none; }
.stand-card {
  flex: 0 0 clamp(260px, 26vw, 340px);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid rgba(3, 6, 58, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.stand-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.stand-card__img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #F2F5F9;
}
.stand-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.stand-card:hover .stand-card__img img { transform: scale(1.05); }
.stand-card__num {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--navy-deep);
  background: var(--gold);
  border-radius: 6px;
  padding: 3px 10px;
}
.stand-card__body { padding: 18px 20px 22px; }
.stand-card__size {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(6, 11, 94, 0.06);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 10px;
}
.stand-card__body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy-deep);
  margin-bottom: 6px;
}
.stand-card__body p {
  font-size: 0.86rem;
  line-height: 1.65;
  color: rgba(3, 6, 58, 0.62);
}
.stands__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 12px var(--mx) 0;
}

/* ---------- Our work gallery ---------- */
.work {
  background: var(--navy-deep);
  padding: 90px var(--mx) 96px;
}
.work__head { padding: 0 0 40px; max-width: 720px; margin: 0 auto; }
.work .eyebrow-dot { color: var(--gold); justify-content: center; }
.work .eyebrow-dot::before { background: var(--gold); }
.work__head h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin-top: 10px;
}
.work__sub {
  margin-top: 12px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
}
.work__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1280px;
  margin: 0 auto;
}
.work-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--navy);
}
.work-tile--wide { grid-column: span 2; aspect-ratio: auto; }
.work-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s;
}
.work-tile:hover img { transform: scale(1.06); }
.work-tile figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 18px 16px;
  background: linear-gradient(180deg, rgba(3, 6, 58, 0) 0%, rgba(3, 6, 58, 0.85) 100%);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.work-tile figcaption small {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.work-tile figcaption b {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.03em;
}
.work-tile figcaption p {
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 4px;
  max-width: 480px;
}

@media (max-width: 900px) {
  .stands { padding: 66px 0 60px; }
  .stands__head { flex-direction: column; align-items: flex-start; gap: 18px; padding-bottom: 26px; }
  .work { padding: 66px var(--mx) 70px; }
  .work__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 560px) {
  .work__grid { grid-template-columns: 1fr; }
  .work-tile--wide { grid-column: auto; aspect-ratio: 4 / 3; }
}

/* ============================================================
   PLAN & ORDER FLOW - nav CTA, steps, event bar, packages
   ============================================================ */

/* Nav call-to-action (GES "Find Your Show & Order" analog) */
.nav-cta {
  margin-left: 10px;
  background: linear-gradient(180deg, var(--red) 0%, #B00909 100%);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 10px 20px;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.22s, transform 0.22s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--navy-deep); color: var(--white); transform: translateY(-1px); }

@media (max-width: 900px) {
  .nav-cta { margin: 10px 0 0; }
}

/* ---------- Products: table sub-categories ---------- */
.subbar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px var(--mx) 12px;
  background: #fff;
  border-bottom: 1px solid rgba(3, 6, 58, 0.07);
}
.subbar[hidden] { display: none; }
.chip--sub {
  font-size: 0.76rem;
  padding: 7px 15px;
  border-width: 1.5px;
}
.chip--sub.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}

/* ---------- Blog ---------- */
.blogs {
  background: #fff;
  padding: 84px var(--mx) 80px;
}
.blogs__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1080px;
  margin: 0 auto 30px;
}
.blogs .eyebrow-dot { color: var(--navy); }
.blogs .eyebrow-dot::before { background: var(--gold); }
.blogs__head h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy-deep);
  margin-top: 10px;
}
.blogs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}
.blogs__grid--page { margin-top: 10px; }
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(3, 6, 58, 0.09);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-card__img {
  position: relative;
  aspect-ratio: 16 / 8;
  overflow: hidden;
  background: #F2F5F9;
}
.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.blog-card__body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.blog-card__date {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(3, 6, 58, 0.45);
}
.blog-card__body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--navy-deep);
}
.blog-card__body p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(3, 6, 58, 0.62);
  flex: 1;
}
.blog-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}
.blog-card__more svg { width: 15px; height: 15px; transition: transform 0.25s; }
.blog-card:hover .blog-card__more { color: #8F6F1E; }
.blog-card:hover .blog-card__more svg { transform: translateX(4px); }
@media (max-width: 780px) {
  .blogs { padding: 60px var(--mx) 56px; }
  .blogs__grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- Blog article ---------- */
.post {
  padding: 130px 0 70px;
}
.post__hero {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--mx);
}
.post__back {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(3, 6, 58, 0.55);
  text-decoration: none;
  margin-bottom: 18px;
}
.post__back:hover { color: var(--navy-deep); }
.post__hero .blog-card__tag { position: static; display: inline-block; }
.post__hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--navy-deep);
  margin: 14px 0 12px;
}
.post__meta {
  font-size: 0.8rem;
  color: rgba(3, 6, 58, 0.5);
  font-weight: 600;
}
.post__cover {
  max-width: 980px;
  margin: 30px auto 0;
  padding: 0 var(--mx);
}
.post__cover img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 16 / 7;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.post__body {
  max-width: 760px;
  margin: 36px auto 0;
  padding: 0 var(--mx);
}
.post__body p {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(3, 6, 58, 0.78);
  margin-bottom: 18px;
}
.post__body b { color: var(--navy-deep); }
.post__body h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.55rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy-deep);
  margin: 34px 0 12px;
}
.post__body h2::after {
  content: "";
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--gold);
  margin-top: 8px;
}
.post__fig { margin: 28px 0; }
.post__fig img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}
.post__fig figcaption {
  margin-top: 10px;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(3, 6, 58, 0.55);
  padding-left: 12px;
  border-left: 3px solid var(--gold);
}

.post__cta {
  max-width: 760px;
  margin: 44px auto 0;
  padding: 26px 28px;
  background: #F6F8FB;
  border: 1px solid rgba(3, 6, 58, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.post__cta > b {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy-deep);
}
.post__cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 900px) {
  .post { padding: 110px 0 56px; }
  .post__cta { margin-left: var(--mx); margin-right: var(--mx); }
}

/* ---------- Client sector cards ---------- */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 26px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.sector-card {
  background: var(--navy-deep);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s, box-shadow 0.3s;
}
.sector-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.sector-card__img {
  aspect-ratio: 16 / 6;
  overflow: hidden;
  background: var(--navy);
}
.sector-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.sector-card:hover .sector-card__img img { transform: scale(1.05); }
.sector-card__body { padding: 14px 16px 18px; flex: 1; }
.sector-card__body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
}
.sector-card__body h3::after {
  content: "";
  display: block;
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: var(--gold);
  margin-top: 7px;
}
.sector-card__body ul {
  list-style: none;
  margin: 11px 0 0;
  padding: 0;
  display: grid;
  gap: 7px;
}
.sector-card__body li {
  position: relative;
  padding-left: 17px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}
.sector-card__body li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: -1px;
  font-weight: 800;
  color: var(--gold);
}
.sector-hidden { display: none; }
.sector-card { position: relative; }
.sector-card__more {
  margin-top: 12px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  border-radius: 999px;
  padding: 6px 14px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.sector-card__more:hover { border-color: var(--gold); color: var(--gold); }
.sector-pop {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 5;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 16px 18px 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.sector-pop.open { opacity: 1; transform: none; pointer-events: auto; }
.sector-pop__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.sector-pop__head b {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gold);
}
.sector-pop__close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 2px 6px;
}
.sector-pop__close:hover { color: #fff; }
.sector-pop ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}
.sector-pop li {
  position: relative;
  padding-left: 20px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
}
.sector-pop li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: -1px;
  font-weight: 800;
  color: var(--gold);
}
@media (max-width: 1020px) {
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .sector-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* Image caption (About page sourcing photo) */
.img-cap {
  display: block;
  margin-top: 10px;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(3, 6, 58, 0.55);
  padding-left: 12px;
  border-left: 3px solid var(--gold);
}

/* ---------- Live service register ---------- */
.services-editorial-item.sv-live { cursor: pointer; transition: transform 0.25s, box-shadow 0.25s; }
.services-editorial-item.sv-live:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.sv-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.65;
  transition: opacity 0.2s, color 0.2s;
}
.sv-more::after { content: "+"; font-size: 0.9rem; font-weight: 800; color: var(--gold); }
.services-editorial-item.sv-live:hover .sv-more { opacity: 1; color: var(--navy-deep); }

.svmodal .qmodal__panel { max-width: 560px; }
.svmodal__img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
  background: #F2F5F9;
}
.svmodal__includes { margin-top: 6px; }
.svmodal__includes-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(3, 6, 58, 0.5);
  margin-bottom: 10px;
}
.svmodal__includes ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}
.svmodal__includes li {
  position: relative;
  padding-left: 24px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(3, 6, 58, 0.75);
}
.svmodal__includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  color: var(--gold);
}

/* ---------- Quote modal ---------- */
.qmodal {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.qmodal.open { display: flex; }
.qmodal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 58, 0.66);
  backdrop-filter: blur(4px);
  animation: qmFade 0.25s ease;
}
.qmodal__panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 660px;
  max-height: 92vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 20px;
  padding: 38px 40px 34px;
  box-shadow: var(--shadow-lg);
  animation: qmRise 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes qmFade { from { opacity: 0; } }
@keyframes qmRise { from { opacity: 0; transform: translateY(26px); } }
.qmodal__close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(3, 6, 58, 0.06);
  color: var(--navy-deep);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}
.qmodal__close:hover { background: rgba(3, 6, 58, 0.12); }
.qmodal__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--navy);
}
.qmodal__eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold);
  flex: none;
}
.qmodal__panel h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy-deep);
  margin: 10px 0 6px;
  text-transform: uppercase;
}
.qmodal__sub {
  font-size: 0.92rem;
  color: rgba(3, 6, 58, 0.65);
  margin-bottom: 24px;
  line-height: 1.6;
}
.qmodal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}
.qmodal label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(3, 6, 58, 0.6);
}
.qmodal__full { margin-top: 14px; }
.qmodal input,
.qmodal select,
.qmodal textarea {
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  color: var(--navy-deep);
  background: #F6F8FB;
  border: 1.5px solid rgba(3, 6, 58, 0.1);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.qmodal textarea { resize: vertical; }
.qmodal input:focus,
.qmodal select:focus,
.qmodal textarea:focus {
  border-color: var(--navy);
  background: #fff;
}
.qmodal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.qmodal__hint {
  margin-top: 16px;
  font-size: 0.78rem;
  color: rgba(3, 6, 58, 0.5);
}
@media (max-width: 620px) {
  .qmodal { padding: 0; align-items: flex-end; }
  .qmodal__panel {
    max-height: 94vh;
    border-radius: 20px 20px 0 0;
    padding: 30px 22px 28px;
  }
  .qmodal__grid { grid-template-columns: 1fr; }
}
