/* =====================================================================
   SJC IMPORTS — sections ported from reference site
   Loaded LAST so its rules win the cascade. All classes are sjc-*
   namespaced and won't conflict with the rest of your site.
   ===================================================================== */

:root {
  /* Reference site brand vars (option A — exact match) */
  --sjc-blue:        #1B2E73;
  --sjc-blue-2:      #142156;
  --sjc-blue-3:      #4257A0;
  --sjc-blue-bg:     #EBEEF8;
  --sjc-yellow:      #F2A01C;
  --sjc-yellow-2:    #DB8C12;
  --sjc-yellow-soft: #F8B23E;
  --sjc-yellow-bg:   #FEF4E0;
  --sjc-paper:       #FFFFFF;
  --sjc-bg-soft:     #F5F7FB;
  --sjc-bg-grey:     #EAEEF5;
  --sjc-line:        #E4E8F0;
  --sjc-line-strong: #CFD6E2;
  --sjc-ink:    #14203A;
  --sjc-ink-2:  #3C4862;
  --sjc-ink-3:  #6A7488;
  --sjc-ink-4:  #9AA2B2;
  --sjc-footer: #14203A;
  --sjc-r-sm: 2px;
  --sjc-r-md: 4px;
  --sjc-r-lg: 6px;
  --sjc-r-xl: 10px;
  --sjc-shell-max:  1320px;
  --sjc-shell-pad-d: 40px;
  --sjc-shell-pad-m: 20px;
}

/* ============================================
   HELPERS — shell, eyebrow, section titles, buttons, view-all
   ============================================ */
.sjc-shell {
  width: 100%;
  max-width: var(--sjc-shell-max);
  margin: 0 auto;
  padding-left: var(--sjc-shell-pad-d);
  padding-right: var(--sjc-shell-pad-d);
  box-sizing: border-box;
}
@media (max-width: 720px) {
  .sjc-shell { padding-left: var(--sjc-shell-pad-m); padding-right: var(--sjc-shell-pad-m); }
}

.sjc-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 14.5px; font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sjc-yellow);
  padding: 0;
}
.sjc-eyebrow::before {
  content: ''; width: 36px; height: 3px;
  background: var(--sjc-yellow);
  display: inline-block;
  border-radius: 2px;
}

.sjc-section-head { text-align: center; margin-bottom: 56px; }
.sjc-section-head .sjc-eyebrow { justify-content: center; }
.sjc-section-title {
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--sjc-ink);
  margin: 16px 0 0;
}
.sjc-section-lead {
  font-size: 16.5px; line-height: 1.7;
  color: var(--sjc-ink-2);
  margin: 18px auto 0;
  max-width: 62ch;
}

.sjc-mark, .sjc-yc { color: var(--sjc-yellow); }

.sjc-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 26px;
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.01em;
  border: 0; cursor: pointer; text-decoration: none;
  border-radius: 9px;
  transition: background .22s, color .22s, transform .22s, box-shadow .22s;
  line-height: 1;
  white-space: nowrap;
}
.sjc-btn svg { width: 15px; height: 15px; transition: transform .25s; }
.sjc-btn:hover svg { transform: translateX(4px); }
.sjc-btn-primary { background: var(--sjc-blue); color: #fff; }
.sjc-btn-primary svg { color: var(--sjc-yellow-soft); }
.sjc-btn-primary:hover {
  background: var(--sjc-blue-2); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(20,32,58,0.30);
}
.sjc-btn-ghost-light {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.45);
}
.sjc-btn-ghost-light:hover {
  background: #fff; color: var(--sjc-blue);
  border-color: #fff;
}

.sjc-view-all {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 0;
  font-size: 14px; font-weight: 500;
  color: var(--sjc-ink);
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid var(--sjc-ink);
  border-radius: 0;
  transition: color .25s, border-color .25s, gap .25s;
  text-decoration: none;
}
.sjc-view-all svg { width: 14px; height: 14px; transition: transform .25s; }
.sjc-view-all:hover {
  color: var(--sjc-yellow);
  border-bottom-color: var(--sjc-yellow);
  gap: 14px;
}
.sjc-view-all:hover svg { transform: translateX(3px); }

.sjc-section { position: relative; padding: 80px 0; }
.sjc-section-cream { background: var(--sjc-bg-soft); }
.sjc-section-foot { text-align: center; margin-top: 44px; }

/* ============================================
   HERO TEXT — modern centered banner (v53)
   Yellow pill eyebrow, big bold title with gold underline accent,
   refined white subtitle, navy pill CTA. Entry animations per slide
   so text fades in smoothly when the slide becomes active.
   ============================================ */
.sjc-hero-text-on .container {
  display: flex !important;
  justify-content: center !important;
}
.sjc-hero-text-on .hero-content-v3 {
  position: relative; z-index: 3;
  height: 100%;
  display: flex !important; flex-direction: column !important;
  justify-content: center !important; align-items: center !important;
  text-align: center !important;
  max-width: 880px;
  margin: 0 auto !important;
  padding: 0 16px !important;
  color: #fff;
}

/* Eyebrow — yellow pill with inner white dot */
.sjc-hero-text-on .hero-eyebrow-v3 {
  display: inline-flex !important; align-items: center !important; gap: 9px !important;
  font-size: 12px !important; font-weight: 800 !important;
  letter-spacing: 0.18em !important; text-transform: uppercase !important;
  color: #ffffff !important;
  background: var(--sjc-yellow) !important;
  padding: 9px 20px !important;
  border-radius: 999px !important;
  margin: 0 0 28px !important;
  box-shadow: 0 8px 22px rgba(242,160,28,0.45), 0 1px 0 rgba(255,255,255,0.18) inset !important;
  width: auto;
  max-width: max-content;
  align-self: center !important;
  text-shadow: none !important;
  backdrop-filter: none !important;
  /* Entry animation */
  opacity: 0;
  transform: translateY(20px);
  animation: sjcHeroEyebrowIn 0.7s cubic-bezier(.22,.61,.36,1) 0.15s both;
}
.sjc-hero-text-on .hero-eyebrow-v3::before {
  content: '' !important;
  display: inline-block !important;
  position: static !important;
  width: 7px !important; height: 7px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.25) !important;
  margin: 0 !important;
  transform: none !important; top: auto !important; left: auto !important;
}

/* Title — big bold ALL-CAPS white, with gold underline accent below */
.sjc-hero-text-on .hero-title-v3 {
  position: relative !important;
  display: block !important;
  font-size: clamp(34px, 5.4vw, 64px) !important;
  font-weight: 900 !important;
  line-height: 1.12 !important;
  letter-spacing: 0.01em !important;
  text-transform: uppercase !important;
  margin: 0 0 12px !important;
  padding-bottom: 22px !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  -webkit-text-stroke: 0 !important;
  paint-order: normal !important;
  text-shadow: 0 4px 22px rgba(0,0,0,0.55), 0 2px 6px rgba(0,0,0,0.40) !important;
  background: none !important;
  filter: none !important;
  max-width: 18ch !important;
  opacity: 0;
  transform: translateY(24px);
  animation: sjcHeroTitleIn 0.85s cubic-bezier(.22,.61,.36,1) 0.30s both;
}
.sjc-hero-text-on .hero-title-v3::before,
.sjc-hero-text-on .hero-title-v3::after { content: none !important; display: none !important; }
/* Gold underline below the title */
.sjc-hero-text-on .hero-title-v3::after {
  content: '' !important;
  display: block !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 50% !important;
  width: 60px !important;
  height: 4px !important;
  background: var(--sjc-yellow) !important;
  border-radius: 2px !important;
  transform: translateX(-50%) scaleX(0) !important;
  transform-origin: center !important;
  animation: sjcHeroUnderlineIn 0.6s cubic-bezier(.22,.61,.36,1) 0.85s both !important;
  box-shadow: 0 4px 14px rgba(242,160,28,0.55) !important;
}

/* Subtitle 2 — refined tagline (second subtitle field) */
.sjc-hero-text-on .hero-subtitle2-v3 {
  display: block !important;
  margin: 22px 0 0 !important;
  gap: 0 !important;
  opacity: 0;
  transform: translateY(18px);
  animation: sjcHeroSubIn 0.7s cubic-bezier(.22,.61,.36,1) 0.55s both;
}
.sjc-hero-text-on .hero-subtitle2-v3::before { display: none !important; }
.sjc-hero-text-on .hero-subtitle2-text {
  display: block !important;
  font-size: clamp(16px, 1.45vw, 22px) !important;
  line-height: 1.55 !important;
  font-weight: 500 !important;
  color: #ffffff !important;
  text-shadow: 0 2px 14px rgba(0,0,0,0.60), 0 1px 4px rgba(0,0,0,0.45) !important;
  background: none !important;
  padding: 0 !important;
  max-width: 56ch !important;
  margin: 0 auto !important;
  letter-spacing: 0.005em !important;
}

/* Description */
.sjc-hero-text-on .hero-desc-v3 {
  font-size: clamp(13.5px, 1vw, 16px) !important;
  line-height: 1.7 !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,0.92) !important;
  margin: 16px auto 0 !important;
  max-width: 60ch !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55) !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-align: center !important;
  opacity: 0;
  transform: translateY(16px);
  animation: sjcHeroDescIn 0.7s cubic-bezier(.22,.61,.36,1) 0.75s both;
}

/* CTA — clean rounded navy pill */
.sjc-hero-text-on .btn-hero-v3 {
  display: inline-flex !important; align-items: center !important; gap: 10px !important;
  background: var(--sjc-blue) !important;
  border: 0 !important;
  color: #ffffff !important;
  padding: 14px 34px !important;
  font-size: 14px !important; font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  border-radius: 999px !important;
  margin: 34px auto 0 !important;
  box-shadow: 0 10px 26px rgba(20,32,58,0.40), 0 1px 0 rgba(255,255,255,0.10) inset !important;
  text-decoration: none !important;
  transition: background .22s, transform .22s, box-shadow .22s !important;
  opacity: 0;
  transform: translateY(16px);
  animation: sjcHeroCtaIn 0.7s cubic-bezier(.22,.61,.36,1) 0.95s both;
}
.sjc-hero-text-on .btn-hero-v3 i {
  color: var(--sjc-yellow-soft) !important;
  font-size: 12px !important;
  transition: transform .25s !important;
}
.sjc-hero-text-on .btn-hero-v3:hover {
  background: var(--sjc-blue-2) !important;
  color: #ffffff !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 14px 32px rgba(20,32,58,0.50) !important;
}
.sjc-hero-text-on .btn-hero-v3:hover i { transform: translateX(4px) !important; }

/* Animations — only fire on the active slide (Swiper sets .swiper-slide-active) */
@keyframes sjcHeroEyebrowIn { to { opacity: 1; transform: translateY(0); } }
@keyframes sjcHeroTitleIn   { to { opacity: 1; transform: translateY(0); } }
@keyframes sjcHeroUnderlineIn { to { transform: translateX(-50%) scaleX(1); } }
@keyframes sjcHeroSubIn     { to { opacity: 1; transform: translateY(0); } }
@keyframes sjcHeroDescIn    { to { opacity: 1; transform: translateY(0); } }
@keyframes sjcHeroCtaIn     { to { opacity: 1; transform: translateY(0); } }

/* On non-active slides, hide the animated elements so they don't peek through during transitions */
.swiper-slide:not(.swiper-slide-active).sjc-hero-text-on .hero-eyebrow-v3,
.swiper-slide:not(.swiper-slide-active).sjc-hero-text-on .hero-title-v3,
.swiper-slide:not(.swiper-slide-active).sjc-hero-text-on .hero-subtitle2-v3,
.swiper-slide:not(.swiper-slide-active).sjc-hero-text-on .hero-desc-v3,
.swiper-slide:not(.swiper-slide-active).sjc-hero-text-on .btn-hero-v3 {
  animation-play-state: paused !important;
  opacity: 0 !important;
}

/* Mobile */
@media (max-width: 768px) {
  .sjc-hero-text-on .hero-content-v3 { padding: 0 18px !important; }
  .sjc-hero-text-on .hero-eyebrow-v3 {
    font-size: 10.5px !important;
    padding: 7px 16px !important;
    margin-bottom: 20px !important;
    gap: 7px !important;
    letter-spacing: 0.14em !important;
  }
  .sjc-hero-text-on .hero-eyebrow-v3::before { width: 6px !important; height: 6px !important; }
  .sjc-hero-text-on .hero-title-v3 {
    font-size: clamp(24px, 7vw, 36px) !important;
    line-height: 1.16 !important;
    letter-spacing: 0.005em !important;
    max-width: 18ch !important;
    padding-bottom: 18px !important;
    margin-bottom: 8px !important;
  }
  .sjc-hero-text-on .hero-title-v3::after {
    width: 48px !important;
    height: 3px !important;
  }
  .sjc-hero-text-on .hero-subtitle2-v3 { margin-top: 16px !important; }
  .sjc-hero-text-on .hero-subtitle2-text { font-size: 14.5px !important; line-height: 1.55 !important; }
  .sjc-hero-text-on .hero-desc-v3 {
    font-size: 12.5px !important; line-height: 1.6 !important;
    margin-top: 12px !important;
    -webkit-line-clamp: 3 !important;
  }
  .sjc-hero-text-on .btn-hero-v3 {
    margin-top: 24px !important; padding: 12px 26px !important;
    font-size: 12.5px !important; letter-spacing: 0.05em !important;
  }
}

/* ============================================
   NEWS SECTION — ported from reference
   ============================================ */
.sjc-news-sec { padding: 80px 0; background: var(--sjc-bg-soft); }
.sjc-news-sec .sjc-section-head { text-align: center; margin-bottom: 56px; }
.sjc-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.sjc-news-card {
  background: #fff;
  border: 1px solid var(--sjc-line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s;
  display: flex; flex-direction: column;
  box-shadow: 0 10px 30px rgba(20,32,58,0.10);
  text-decoration: none; color: inherit;
}
.sjc-news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(20,32,58,0.18);
}
.sjc-news-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--sjc-bg-grey);
}
.sjc-news-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .7s cubic-bezier(.22,.61,.36,1);
}
.sjc-news-card:hover .sjc-news-img img { transform: scale(1.05); }
.sjc-news-noimg {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--sjc-bg-grey), var(--sjc-bg-soft));
  color: var(--sjc-ink-4);
  font-size: 40px;
}
.sjc-news-cat {
  position: absolute;
  top: 14px; left: 14px;
  padding: 7px 14px;
  background: var(--sjc-yellow);
  color: #fff;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-radius: 6px;
}
.sjc-news-body {
  position: relative;
  padding: 22px 76px 24px 24px;
  background: #fff;
  display: flex; flex-direction: column;
  flex: 1;
}
.sjc-news-date {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--sjc-ink-3);
  margin-bottom: 11px;
}
.sjc-news-date::before {
  content: '';
  width: 18px; height: 2px;
  background: var(--sjc-yellow);
  border-radius: 2px;
}
.sjc-news-title {
  font-size: 18.5px; font-weight: 800;
  color: var(--sjc-ink);
  margin: 0 0 10px;
  line-height: 1.42;
  letter-spacing: -0.005em;
  transition: color .25s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sjc-news-card:hover .sjc-news-title { color: var(--sjc-blue); }
.sjc-news-excerpt {
  font-size: 14px;
  color: var(--sjc-ink-2);
  line-height: 1.7;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sjc-news-go {
  position: absolute;
  right: 20px; bottom: 20px;
  width: 44px; height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--sjc-blue);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(20,32,58,0.32);
  transition: background .2s;
}
.sjc-news-go svg { width: 17px; height: 17px; }
.sjc-news-card:hover .sjc-news-go { background: var(--sjc-blue-2); }

/* ============================================
   IR SECTION — ported from reference
   ============================================ */
.sjc-ir-sec { padding: 80px 0; background: #fff; }
.sjc-ir-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px;
  margin-bottom: 44px;
  text-align: left;
}
.sjc-ir-head-text { max-width: 760px; }
.sjc-ir-head .sjc-eyebrow { justify-content: flex-start; }
.sjc-ir-head .sjc-section-title { text-align: left; }
.sjc-ir-head .sjc-section-lead { margin: 18px 0 0; }

.sjc-stock-card {
  background: #fff;
  border: 1px solid var(--sjc-line);
  color: var(--sjc-ink);
  padding: 36px 40px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(20,32,58,0.04);
}
.sjc-stock-card::before {
  content: '';
  position: absolute;
  right: -50px; bottom: -50px;
  width: 240px; height: 240px;
  border: 30px solid rgba(242,160,28,0.16);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.sjc-stock-head { margin-bottom: 18px; position: relative; z-index: 2; }
.sjc-stock-label {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: #ffffff;
  padding: 8px 16px;
  background: var(--sjc-blue);
  border: 1px solid var(--sjc-blue);
  border-radius: 6px;
}
.sjc-stock-main {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative; z-index: 2;
}
.sjc-stock-name { display: flex; flex-direction: column; gap: 4px; }
.sjc-stock-symbol {
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--sjc-ink-3);
}
.sjc-stock-name strong {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  color: var(--sjc-ink);
  letter-spacing: -0.01em;
}
.sjc-stock-updated { font-size: 12.5px; color: var(--sjc-ink-3); margin-top: 4px; }
.sjc-stock-price {
  display: inline-flex; align-items: flex-end; gap: 6px;
  line-height: 1;
  position: relative;
  z-index: 3;
}
.sjc-stock-currency {
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 600;
  color: var(--sjc-yellow);
  margin-bottom: 8px;
}
.sjc-stock-val {
  font-size: clamp(44px, 5.4vw, 72px);
  font-weight: 800;
  color: var(--sjc-ink);
  letter-spacing: -0.025em;
}
.sjc-stock-foot {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--sjc-line);
  display: flex; flex-wrap: wrap; gap: 12px 60px;
  position: relative; z-index: 2;
}
.sjc-stock-row { display: flex; flex-direction: column; gap: 4px; }
.sjc-stock-row span { font-size: 12.5px; color: var(--sjc-ink-3); }
.sjc-stock-row strong { font-size: 17px; font-weight: 700; color: var(--sjc-ink); }
.sjc-stock-row strong.is-down { color: #dc3545; }
.sjc-stock-row strong.is-up { color: #28a745; }

.sjc-ir-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.sjc-ir-card {
  background: #fff;
  border: 1px solid var(--sjc-line);
  padding: 22px 22px;
  display: flex; align-items: center; gap: 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(20,32,58,0.04);
  transition: transform .25s cubic-bezier(.22,.61,.36,1), box-shadow .25s, border-color .25s;
  text-decoration: none;
  color: inherit;
}
.sjc-ir-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(14,20,32,0.12);
  border-color: transparent;
}
.sjc-ir-ic {
  flex-shrink: 0;
  width: 56px; height: 56px;
  background: var(--sjc-blue);
  color: #ffffff;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(20,32,58,0.22);
  transition: background .25s;
}
.sjc-ir-ic i { font-size: 22px; }
.sjc-ir-ic svg { width: 28px; height: 28px; }
.sjc-ir-card:hover .sjc-ir-ic { background: var(--sjc-blue-2); }
.sjc-ir-label {
  flex: 1;
  font-size: 14.5px; font-weight: 500;
  color: var(--sjc-ink);
  line-height: 1.35;
}
.sjc-ir-arrow {
  flex-shrink: 0;
  color: var(--sjc-ink-3);
  display: inline-flex; align-items: center;
  transition: color .25s, transform .25s;
}
.sjc-ir-arrow svg { width: 14px; height: 14px; }
.sjc-ir-card:hover .sjc-ir-arrow { color: var(--sjc-blue); transform: translateX(4px); }

/* ============================================
   FOOTER — ported from reference (dark navy)
   ============================================ */
.site-footer.footer-v3 {
  background: linear-gradient(160deg, var(--sjc-blue) 0%, var(--sjc-blue-2) 60%, #0E1838 100%);
  color: rgba(255,255,255,0.78);
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
.site-footer.footer-v3::before,
.site-footer.footer-v3::after { content: none; }

.sjc-ftr-body { padding: 72px 0 52px; position: relative; z-index: 2; }
.sjc-ftr-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 44px;
}
.sjc-ftr-logo {
  display: inline-block;
  background: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  margin-bottom: 22px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.sjc-ftr-logo img { height: 44px; width: auto; display: block; }
.sjc-ftr-blurb {
  font-size: 14px; line-height: 1.7;
  color: rgba(255,255,255,0.78);
  margin: 0 0 22px;
  max-width: 36ch;
}
.sjc-ftr-socials { display: flex; gap: 10px; }
.sjc-ftr-socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background .25s, color .25s, transform .25s;
}
.sjc-ftr-socials a:hover {
  background: var(--sjc-yellow); color: var(--sjc-ink);
  transform: translateY(-2px);
}
.sjc-ftr-h {
  font-size: 15px; font-weight: 700;
  color: #fff;
  margin: 4px 0 18px;
  padding-bottom: 12px;
  position: relative;
}
.sjc-ftr-h::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 30px; height: 2px;
  background: var(--sjc-yellow);
}
.sjc-ftr-col ul { list-style: none; padding: 0; margin: 0; }
.sjc-ftr-col li { margin-bottom: 10px; }
.sjc-ftr-col li a {
  color: rgba(255,255,255,0.80);
  font-size: 14px; font-weight: 500;
  transition: color .2s, padding-left .2s;
  display: inline-block;
  text-decoration: none;
}
.sjc-ftr-col li a:hover { color: var(--sjc-yellow); padding-left: 4px; }
.sjc-ftr-contact li {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 16px;
}
.sjc-ftr-contact li i {
  flex-shrink: 0;
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: background .2s, border-color .2s;
}
.sjc-ftr-contact li:hover i {
  background: var(--sjc-yellow);
  border-color: var(--sjc-yellow);
  color: var(--sjc-ink);
}
.sjc-ftr-contact li span {
  display: block;
  font-size: 11.5px;
  color: rgba(255,255,255,0.62);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.sjc-ftr-contact li a,
.sjc-ftr-contact li strong,
.sjc-ftr-contact li p {
  color: #fff;
  font-size: 14.5px; font-weight: 600;
  margin: 0; line-height: 1.5;
  text-decoration: none;
}
.sjc-ftr-contact li p { font-weight: 500; color: rgba(255,255,255,0.88); }
.sjc-ftr-contact li a:hover { color: var(--sjc-yellow); }

.sjc-ftr-bottom {
  background: rgba(0,0,0,0.30);
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative; z-index: 2;
}
.sjc-ftr-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  gap: 18px;
  flex-wrap: wrap;
}
.sjc-ftr-legal { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.sjc-ftr-legal a { color: rgba(255,255,255,0.78); transition: color .2s; text-decoration: none; }
.sjc-ftr-legal a:hover { color: var(--sjc-yellow); }
.sjc-ftr-dot { color: rgba(255,255,255,0.3); }

/* ============================================
   MOBILE DRAWER — ported from reference
   ============================================ */
.sjc-drawer { position: fixed; inset: 0; z-index: 9999; visibility: hidden; pointer-events: none; }
.sjc-drawer.is-open { visibility: visible; pointer-events: auto; }
.sjc-drawer-backdrop {
  position: absolute; inset: 0;
  background: rgba(26,36,56,0.55);
  opacity: 0; transition: opacity .3s;
}
.sjc-drawer.is-open .sjc-drawer-backdrop { opacity: 1; }
.sjc-drawer-panel {
  position: absolute; top: 0; right: 0; height: 100%;
  width: 86vw; max-width: 380px;
  background: #fff;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.22,.61,.36,1);
  display: flex; flex-direction: column;
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}
.sjc-drawer.is-open .sjc-drawer-panel { transform: translateX(0); }
.sjc-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--sjc-line);
}
.sjc-drawer-logo img { height: 38px; }
.sjc-drawer-close {
  width: 40px; height: 40px;
  background: var(--sjc-bg-soft); border: 0;
  color: var(--sjc-ink); font-size: 17px;
  border-radius: var(--sjc-r-sm);
  cursor: pointer;
}
.sjc-drawer-close:hover { background: var(--sjc-bg-grey); }
.sjc-drawer-nav { flex: 1; overflow-y: auto; padding: 14px 0; }
.sjc-drawer-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  font-size: 15px; font-weight: 600;
  color: var(--sjc-ink);
  border-left: 3px solid transparent;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.sjc-drawer-link i { color: var(--sjc-ink-3); font-size: 12px; transition: color .2s, transform .2s; }
.sjc-drawer-link:hover { background: var(--sjc-bg-soft); }
.sjc-drawer-link:hover i { color: var(--sjc-yellow-2); transform: translateX(3px); }
.sjc-drawer-link.is-active {
  background: var(--sjc-yellow-bg);
  color: var(--sjc-blue);
  border-left-color: var(--sjc-yellow);
}
.sjc-drawer-foot {
  padding: 18px 22px 22px;
  border-top: 1px solid var(--sjc-line);
  display: flex; flex-direction: column; gap: 12px;
}
.sjc-drawer-phone {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: var(--sjc-bg-soft);
  border-radius: var(--sjc-r-md);
  color: var(--sjc-ink);
  text-decoration: none;
}
.sjc-drawer-phone i {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--sjc-blue); color: #fff;
  border-radius: 50%; font-size: 14px;
}
.sjc-drawer-phone span {
  display: block; font-size: 11px;
  color: var(--sjc-ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sjc-drawer-phone strong { font-size: 17px; color: var(--sjc-blue); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .sjc-news-grid { grid-template-columns: repeat(2, 1fr); }
  .sjc-ir-grid   { grid-template-columns: repeat(2, 1fr); }
  .sjc-ir-head   { flex-direction: column; align-items: flex-start; gap: 20px; }
  .sjc-ftr-grid  { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  .sjc-section,
  .sjc-news-sec,
  .sjc-ir-sec { padding: 54px 0; }
  .sjc-section-head { margin-bottom: 36px; }
  .sjc-eyebrow { font-size: 11.5px; letter-spacing: 0.16em; gap: 9px; }
  .sjc-eyebrow::before { width: 24px; }
  .sjc-section-title { font-size: 26px; line-height: 1.25; }
  .sjc-section-lead  { font-size: 14.5px; line-height: 1.65; }
  /* News: 2 per row on mobile, refined card visuals (v53b) */
  .sjc-news-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; align-items: stretch; }
  .sjc-news-card {
    height: 100%;
    border-radius: 14px !important;
    border: 1px solid #eef0f5 !important;
    box-shadow: 0 4px 14px rgba(20,32,58,0.06) !important;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
  }
  .sjc-news-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(20,32,58,0.12) !important;
  }
  .sjc-news-img { aspect-ratio: 4 / 3; }            /* shorter image so card has more body room */
  .sjc-news-body {
    padding: 14px 14px 52px;                         /* bottom space reserved for arrow button */
    min-height: 0;
  }
  /* Category badge — small, rounded, on top of image */
  .sjc-news-cat {
    font-size: 9.5px !important;
    font-weight: 800 !important;
    padding: 5px 10px !important;
    letter-spacing: 0.06em !important;
    top: 10px !important;
    left: 10px !important;
    border-radius: 999px !important;
    box-shadow: 0 4px 10px rgba(242,160,28,0.35) !important;
  }
  /* Date — small with gold accent dash */
  .sjc-news-date {
    font-size: 10.5px !important;
    margin-bottom: 8px !important;
    gap: 6px !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
  }
  .sjc-news-date::before { width: 14px !important; height: 2px !important; }
  /* Title: FIXED 2 lines, height locked so all cards line up */
  .sjc-news-title {
    font-size: 13.5px;
    line-height: 1.35;
    font-weight: 700;
    margin: 0 0 8px;
    -webkit-line-clamp: 2;
    min-height: calc(1.35em * 2);                    /* lock 2-line height even if shorter */
    overflow: hidden;
    color: #1B2E73;
  }
  /* Excerpt: FIXED 2 lines, lighter color */
  .sjc-news-excerpt {
    font-size: 11.5px;
    line-height: 1.55;
    color: #6A7488;
    -webkit-line-clamp: 2;
    min-height: calc(1.55em * 2);
    flex: 0 0 auto;
    overflow: hidden;
  }
  /* Arrow button — bigger, more prominent */
  .sjc-news-go {
    width: 34px !important;
    height: 34px !important;
    right: 12px !important;
    bottom: 12px !important;
    box-shadow: 0 4px 12px rgba(20,32,58,0.30) !important;
  }
  .sjc-news-go svg { width: 13px; height: 13px; }
  .sjc-ir-grid { grid-template-columns: 1fr; gap: 12px; }
  .sjc-ir-card { padding: 18px 18px; }
  .sjc-ir-ic { width: 48px; height: 48px; border-radius: 12px; }
  .sjc-ir-ic i { font-size: 19px; }
  .sjc-stock-card { padding: 26px 24px; }
  .sjc-stock-main { gap: 12px; }
  .sjc-stock-foot { gap: 12px 28px; }
  .sjc-ftr-body { padding: 44px 0 30px; }
  .sjc-ftr-grid { grid-template-columns: 1fr; gap: 32px; }
  .sjc-ftr-brand { text-align: center; }
  .sjc-ftr-logo { margin-bottom: 18px; }
  .sjc-ftr-blurb { max-width: 100%; font-size: 13.5px; margin-bottom: 18px; }
  .sjc-ftr-socials { justify-content: center; }
  .sjc-ftr-h { font-size: 14.5px; margin-bottom: 14px; }
  .sjc-ftr-col li { margin-bottom: 9px; }
  .sjc-ftr-col li a { font-size: 13.5px; }
  .sjc-ftr-contact li { margin-bottom: 14px; }
  .sjc-ftr-bottom-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 16px 0;
  }
}

/* ============================================
   FOOTER — top border (gold)
   ============================================ */
.site-footer.footer-v3 {
  border-top: 3px solid var(--sjc-yellow) !important;
}

/* ============================================
   ABOUT THE COMPANY (corphub) — restyled to match
   the screenshot: gold dash eyebrow, big navy title,
   clean dark text, navy rounded pill CTA with gold arrow.
   ============================================ */
.corphub-eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 14px !important;
  font-size: 13.5px !important;
  font-weight: 800 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: var(--sjc-yellow) !important;
  margin: 0 0 22px !important;
}
.corphub-eyebrow span {
  width: 36px !important;
  height: 3px !important;
  background: var(--sjc-yellow) !important;
  border-radius: 2px !important;
  display: inline-block !important;
  flex-shrink: 0;
}

.corphub-title {
  font-size: clamp(30px, 3.8vw, 46px) !important;
  font-weight: 800 !important;
  line-height: 1.18 !important;
  letter-spacing: -0.015em !important;
  color: var(--sjc-blue) !important;
  margin: 0 0 22px !important;
}

.corphub-text {
  font-size: 15.5px !important;
  line-height: 1.85 !important;
  color: var(--sjc-ink-2) !important;
  margin: 0 0 32px !important;
  max-width: 56ch;
}

.corphub-cta {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: var(--sjc-blue) !important;
  color: #ffffff !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  padding: 13px 28px !important;
  border-radius: 999px !important;
  text-decoration: none !important;
  box-shadow: 0 8px 22px rgba(20, 32, 58, 0.30) !important;
  transition: background 0.22s, transform 0.22s, box-shadow 0.22s !important;
}
.corphub-cta i {
  color: var(--sjc-yellow-soft) !important;
  font-size: 13px !important;
  transition: transform 0.25s !important;
}
.corphub-cta:hover {
  background: var(--sjc-blue-2) !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 26px rgba(20, 32, 58, 0.40) !important;
  gap: 10px !important;
}
.corphub-cta:hover i { transform: translateX(4px) !important; }

@media (max-width: 720px) {
  .corphub-eyebrow { font-size: 11.5px !important; gap: 10px !important; margin-bottom: 16px !important; }
  .corphub-eyebrow span { width: 28px !important; }
  .corphub-title { font-size: clamp(24px, 6.4vw, 32px) !important; line-height: 1.22 !important; margin-bottom: 16px !important; }
  .corphub-text { font-size: 13.5px !important; line-height: 1.7 !important; margin-bottom: 24px !important; }
  .corphub-cta { padding: 11px 22px !important; font-size: 13.5px !important; }
}

/* ============================================
   ABOUT — gold vertical bar next to intro
   ============================================ */
.corphub-intro.corphub-intro-barred {
  position: relative;
  padding-left: 24px;
}
.corphub-intro.corphub-intro-barred::before {
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 4px;
  height: calc(100% - 8px);
  background: var(--sjc-yellow);
  border-radius: 4px;
}

/* ============================================
   ABOUT — stats row under corphub
   ============================================ */
.corphub-stats-wrap {
  position: relative;
  z-index: 2;
  padding-top: 56px;
  margin-top: 56px;
  border-top: 1px solid var(--sjc-line);
}
.corphub-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.corphub-stat {
  position: relative;
  padding-left: 18px;
}
.corphub-stat::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 3px;
  height: calc(100% - 12px);
  background: var(--sjc-yellow);
  border-radius: 2px;
}
.corphub-stat strong {
  display: block;
  font-size: clamp(34px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--sjc-blue);
  margin: 0 0 6px;
}
.corphub-stat span {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--sjc-ink-3);
}

@media (max-width: 720px) {
  .corphub-intro.corphub-intro-barred { padding-left: 18px; }
  .corphub-intro.corphub-intro-barred::before { width: 3px; }
  .corphub-stats-wrap { padding-top: 36px; margin-top: 36px; }
  .corphub-stats { grid-template-columns: repeat(2, 1fr); gap: 22px 16px; }
  .corphub-stat { padding-left: 12px; }
  .corphub-stat strong { font-size: 28px; margin-bottom: 4px; }
  .corphub-stat span { font-size: 12px; }
}

/* ============================================
   HERO SLIDER — anti-flash safety net (v53d)
   Multiple layers of dark navy background so there is
   no possible code path where a white frame can show
   between slide transitions on mobile.
   ============================================ */
.hero-v3,
.hero-v3 .hero-swiper,
.hero-v3 .swiper-wrapper {
  background: #14203A !important;
}
.hero-v3 .swiper-slide {
  background-color: #14203A;
}
/* In fade mode, Swiper layers slides on top of each other.
   Make sure each slide has the navy bg even before its image paints. */
.hero-v3 .swiper-slide.hero-slide-v3 {
  background-size: cover !important;
  background-position: center !important;
}

/* ============================================
   TOPBAR + HEADER — borders off, slow 1s delayed graceful entry,
   reappear-on-scroll-up behavior (v53k).
   Header + topbar BACKGROUND COLORS are controlled by the admin
   via the Hero Text CSS editor on Admin → Sliders.
   ============================================ */

/* Main header — NO borders, NO box-shadow tricks (background managed by admin CSS) */
.site-header,
.site-header.header-v3,
.header-v3 {
  border: 0 !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}
/* Soft shadow only when sticky (no border) */
.site-header.scrolled,
.header-v3.scrolled {
  box-shadow: 0 6px 24px rgba(20, 32, 58, 0.06) !important;
  border: 0 !important;
}

/* Topbar — NO borders. Background defaults to mint but admin can override. */
.topbar.topbar-v3,
.topbar-v3,
.topbar {
  background: #F0FCF9;
  border: 0 !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}
.topbar.topbar-v3 {
  overflow: hidden !important;
  max-height: 0 !important;
  opacity: 0 !important;
  transform: translateY(-30px) !important;
  transition:
    transform 1.6s cubic-bezier(.19, 1, .22, 1),
    opacity 1.4s cubic-bezier(.25, .1, .25, 1) 0.2s,
    max-height 1.6s cubic-bezier(.19, 1, .22, 1) !important;
}

.topbar.topbar-v3.topbar-revealed {
  max-height: 80px !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.topbar.topbar-v3.topbar-hidden {
  max-height: 0 !important;
  opacity: 0 !important;
  transform: translateY(-100%) !important;
  transition:
    transform 0.45s cubic-bezier(.4, 0, 1, 1),
    opacity 0.35s ease-in,
    max-height 0.45s cubic-bezier(.4, 0, 1, 1) !important;
}

/* ============================================
   HERO SLIDER — Prompt font (v53l)
   Applies to: eyebrow, title, subtitle 2, description, CTA button.
   Admin can override per-element via the Custom CSS editor.
   ============================================ */
.sjc-hero-text-on .hero-eyebrow-v3,
.sjc-hero-text-on .hero-title-v3,
.sjc-hero-text-on .hero-subtitle2-text,
.sjc-hero-text-on .hero-subtitle2-v3,
.sjc-hero-text-on .hero-desc-v3,
.sjc-hero-text-on .btn-hero-v3 {
  font-family: 'Prompt', 'Sarabun', sans-serif !important;
}

/* =============================================================
   SJC HEADER + TOPBAR v54c — Built from scratch to match screenshots
   ============================================================= */

/* ============ DESKTOP TOPBAR (>= 769px) — Dark Navy ============ */
.sjc-topbar {
  background: #1B2E73 !important;
  width: 100% !important;
  border: 0 !important;
  box-shadow: none !important;
  font-family: 'Prompt', 'Sarabun', sans-serif !important;
  position: relative !important;
  z-index: 100 !important;
}
.sjc-topbar-inner {
  max-width: 1320px !important;
  margin: 0 auto !important;
  padding: 0 32px !important;
  height: 54px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
}
.sjc-topbar-left {
  display: flex !important;
  align-items: center !important;
  gap: 24px !important;
}
.sjc-topbar-right {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
}

/* Phone / email / address — white text, GOLD icon */
.sjc-tb-item {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  font-family: 'Prompt', 'Sarabun', sans-serif !important;
  line-height: 1 !important;
}
.sjc-tb-item i {
  color: #F89F1B !important;
  font-size: 14px !important;
  width: 18px !important;
  text-align: center !important;
}
.sjc-tb-item:hover { color: #ffffff !important; opacity: 0.85 !important; }
.sjc-tb-item:hover i { color: #F89F1B !important; }
.sjc-tb-item span { line-height: 1 !important; }

/* Vertical separator between items */
.sjc-tb-sep {
  width: 1px !important;
  height: 16px !important;
  background: rgba(255, 255, 255, 0.20) !important;
}

/* "ติดตามเรา" label */
.sjc-tb-follow {
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  font-family: 'Prompt', 'Sarabun', sans-serif !important;
  margin-right: 4px !important;
}

/* Social icons — plain white, no circles */
.sjc-tb-social {
  display: inline-flex !important;
  align-items: center !important;
  gap: 18px !important;
}
.sjc-tb-social a {
  color: #ffffff !important;
  font-size: 15px !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  background: transparent !important;
  border: 0 !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  border-radius: 0 !important;
  transition: opacity .2s !important;
}
.sjc-tb-social a:hover { color: #ffffff !important; opacity: 0.65 !important; background: transparent !important; }

/* Hide mobile-only items on desktop */
.sjc-topbar-lang-mobile { display: none !important; }
.sjc-tb-mobile-phone { display: none !important; }

/* ============ MAIN HEADER (Desktop) — clean white ============ */
.header-v3.site-header,
.site-header.header-v3 {
  background: #FFFFFF !important;
  border: 0 !important;
  border-bottom: 0 !important;
  box-shadow: 0 4px 16px rgba(20, 32, 58, 0.06) !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 90 !important;
}
.header-v3 .header-inner-v3 {
  max-width: 1320px !important;
  margin: 0 auto !important;
  padding: 0 32px !important;
  height: 90px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
}
.header-v3 .logo {
  flex-shrink: 0 !important;
  text-decoration: none !important;
}
.header-v3 .logo img {
  height: 56px !important;
  max-width: 220px !important;
  width: auto !important;
  display: block !important;
}

/* Desktop nav — centered */
.header-v3 .desktop-nav,
.header-v3 .main-nav-v3-desktop {
  flex: 1 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}
.header-v3 .nav-list {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.header-v3 .nav-list .nav-item { list-style: none !important; }
.header-v3 .nav-link {
  color: #2c3e50 !important;
  font-family: 'Prompt', 'Sarabun', sans-serif !important;
  font-weight: 500 !important;
  font-size: 15.5px !important;
  padding: 14px 22px !important;
  text-decoration: none !important;
  position: relative !important;
  transition: color .2s !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}
.header-v3 .nav-link:hover { color: #F89F1B !important; }
.header-v3 .nav-link.active {
  color: #F89F1B !important;
  font-weight: 600 !important;
}
.header-v3 .nav-link.active::after {
  content: '' !important;
  position: absolute !important;
  bottom: 4px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 28px !important;
  height: 3px !important;
  background: #F89F1B !important;
  border-radius: 2px !important;
}

/* Orange contact pill button */
.header-contact-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 9px !important;
  background: #F89F1B !important;
  color: #ffffff !important;
  padding: 14px 28px !important;
  border-radius: 999px !important;
  font-family: 'Prompt', 'Sarabun', sans-serif !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  text-decoration: none !important;
  box-shadow: 0 6px 18px rgba(248, 159, 27, 0.35) !important;
  border: 0 !important;
  transition: transform .2s, box-shadow .2s, background .2s !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}
.header-contact-btn:hover {
  background: #E68F0F !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 24px rgba(248, 159, 27, 0.50) !important;
}
.header-contact-btn i { font-size: 14px !important; }

/* Header actions container */
.header-v3 .header-actions {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex-shrink: 0 !important;
}

/* Hide search + hamburger on desktop */
@media (min-width: 769px) {
  .header-v3 .search-toggle,
  .header-v3 .nav-toggle,
  .header-mobile-lang { display: none !important; }
}

/* ============ MOBILE (<= 768px) ============ */
@media (max-width: 768px) {

  /* ===== MOBILE TOPBAR — floating navy rounded card ===== */
  .sjc-topbar {
    background: transparent !important;
    padding: 10px 12px 4px !important;
  }
  .sjc-topbar-inner {
    background: #1B2E73 !important;
    border-radius: 14px !important;
    box-shadow: 0 6px 18px rgba(20, 32, 58, 0.18) !important;
    padding: 0 18px !important;
    height: 50px !important;
    max-width: 100% !important;
    gap: 8px !important;
    justify-content: space-between !important;
    display: flex !important;
    align-items: center !important;
  }

  /* Hide desktop-only contact items + follow label + social on mobile */
  .sjc-tb-phone,
  .sjc-tb-email,
  .sjc-tb-address,
  .sjc-tb-sep,
  .sjc-tb-follow,
  .sjc-tb-social {
    display: none !important;
  }

  /* Show mobile language switcher on left */
  .sjc-topbar-lang-mobile {
    display: block !important;
  }
  .sjc-topbar-lang-mobile .sjc-lang-toggle {
    background: transparent !important;
    border: 0 !important;
    color: #ffffff !important;
    padding: 0 !important;
    font-family: 'Prompt', 'Sarabun', sans-serif !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    cursor: pointer !important;
  }
  .sjc-lang-globe {
    width: 26px !important;
    height: 26px !important;
    background: rgba(255, 255, 255, 0.14) !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .sjc-lang-globe i {
    color: #ffffff !important;
    font-size: 13px !important;
  }
  .sjc-lang-code {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    letter-spacing: 0.5px !important;
  }
  .sjc-lang-chev {
    color: #ffffff !important;
    font-size: 10px !important;
    opacity: 0.8 !important;
    margin-left: -2px !important;
  }

  /* Show mobile phone on right (gold icon + white number) */
  .sjc-tb-mobile-phone {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-family: 'Prompt', 'Sarabun', sans-serif !important;
    font-weight: 600 !important;
    font-size: 15px !important;
  }
  .sjc-tb-mobile-phone i {
    color: #F89F1B !important;
    font-size: 16px !important;
  }

  /* ===== MOBILE MAIN HEADER — white card ===== */
  .header-v3.site-header,
  .site-header.header-v3 {
    background: transparent !important;
    box-shadow: none !important;
    padding: 6px 12px 12px !important;
  }
  .header-v3 .header-inner-v3 {
    background: #ffffff !important;
    border-radius: 14px !important;
    box-shadow: 0 6px 18px rgba(20, 32, 58, 0.08) !important;
    height: 68px !important;
    padding: 0 20px !important;
    max-width: 100% !important;
  }
  .header-v3 .logo img {
    height: 40px !important;
    max-width: 150px !important;
  }
  /* Hide desktop nav + contact button on mobile */
  .header-v3 .desktop-nav,
  .header-v3 .main-nav-v3-desktop,
  .header-contact-btn,
  .header-mobile-lang {
    display: none !important;
  }
  /* Show search + hamburger on mobile */
  .header-v3 .header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }
  .header-v3 .search-toggle {
    display: inline-flex !important;
    width: 42px !important;
    height: 42px !important;
    background: transparent !important;
    border: 0 !important;
    color: #2c3e50 !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    cursor: pointer !important;
  }
  .header-v3 .search-toggle i {
    font-size: 18px !important;
    color: #2c3e50 !important;
  }
  .header-v3 .nav-toggle {
    display: inline-flex !important;
    width: 42px !important;
    height: 42px !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    border: 0 !important;
    cursor: pointer !important;
    padding: 0 !important;
  }
}

@media (max-width: 480px) {
  .header-v3 .header-inner-v3 { height: 64px !important; padding: 0 16px !important; }
  .header-v3 .logo img { height: 36px !important; max-width: 140px !important; }
  .sjc-topbar-inner { height: 48px !important; padding: 0 14px !important; }
}
