/* ==========================================================
   SINGAWA GROUP - Premium Executive Corporate B2B Styling
   Colors: Executive Deep Navy (#0A192F, #0F172A), Warm Champagne Gold (#C5A059, #B88E1C),
   Crisp Architectural White (#FFFFFF), Modern Slate (#334155, #64748B, #F8FAFC)
   Typography: Modern Geometric (Outfit + Plus Jakarta Sans + Noto Sans JP)
   ========================================================== */

:root {
  /* Brand DNA: Official Logo Palette */
  --singawa-red: #C70F13;
  --singawa-red-dark: #9B0B0F;
  --singawa-red-gradient: linear-gradient(135deg, #E52D27 0%, #C70F13 50%, #8E0A0D 100%);
  --singawa-red-glow: rgba(199, 15, 19, 0.28);

  --singawa-blue: #003F8C;
  --singawa-blue-dark: #00285C;
  --singawa-blue-gradient: linear-gradient(135deg, #0056B3 0%, #003F8C 50%, #002456 100%);
  --singawa-blue-glow: rgba(0, 63, 140, 0.28);

  --singawa-silver: #D6D4D3;
  --singawa-silver-border: #CBD5E1;
  --singawa-navy: #000B23;

  --navy-primary: #000B23;
  --navy-dark: #070D18;
  --navy-light: #002D62;
  --navy-card: #0D1B2A;
  --navy-slate: #1E293B;
  
  /* Noble Champagne Gold Accent */
  --gold-primary: #D4AF37;
  --gold-dark: #A27B31;
  --gold-hover: #B88E1C;
  --gold-light: #FBF6EB;
  --gold-subtle: rgba(212, 175, 55, 0.12);
  --gold-gradient: linear-gradient(135deg, #F3D382 0%, #D4AF37 50%, #B88E1C 100%);
  
  --white-clean: #FFFFFF;
  --bg-light: #F8FAFC;
  --bg-subtle: #F1F5F9;
  --bg-card: #FFFFFF;
  
  --text-dark: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --text-light: #F8FAFC;
  --text-subtle: #94A3B8;
  
  --border-subtle: #E2E8F0;
  --border-card: #CBD5E1;
  --border-dark: rgba(197, 160, 89, 0.25);
  
  --font-heading: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Noto Serif JP", "Noto Serif", Georgia, serif;
  --font-body: 'Noto Sans JP', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --font-japanese: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', "Yu Gothic", Meiryo, sans-serif;
  
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05), 0 1px 2px rgba(15, 23, 42, 0.03);
  --shadow-md: 0 4px 16px -2px rgba(15, 23, 42, 0.06), 0 2px 6px -1px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 28px -4px rgba(15, 23, 42, 0.08), 0 4px 12px -2px rgba(15, 23, 42, 0.05);
  --shadow-xl: 0 20px 40px -8px rgba(15, 23, 42, 0.12);
  
  --radius-xl: 18px;
  --radius-lg: 14px;
  --radius-md: 10px;
}

html {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--white-clean);
  line-height: 1.75;
  letter-spacing: 0.015em;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, .brand-font {
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
  font-weight: 600;
  color: var(--navy-primary);
  line-height: 1.35;
}

/* Custom Text & Background Classes */
.text-navy { color: var(--navy-primary) !important; }
.bg-navy { background-color: var(--navy-primary) !important; }
.bg-navy-dark { background-color: var(--navy-dark) !important; }
.bg-navy-light { background-color: var(--navy-light) !important; }
.bg-navy-card { background-color: var(--navy-card) !important; }

/* Singawa Brand DNA Colors */
.text-singawa-red { color: var(--singawa-red) !important; }
.bg-singawa-red { background-color: var(--singawa-red) !important; }
.border-singawa-red { border-color: var(--singawa-red) !important; }

.text-singawa-blue { color: var(--singawa-blue) !important; }
.bg-singawa-blue { background-color: var(--singawa-blue) !important; }
.border-singawa-blue { border-color: var(--singawa-blue) !important; }

.badge-singawa-red {
  background: rgba(199, 15, 19, 0.12) !important;
  color: var(--singawa-red) !important;
  border: 1px solid rgba(199, 15, 19, 0.3) !important;
}

.badge-singawa-blue {
  background: rgba(0, 63, 140, 0.12) !important;
  color: var(--singawa-blue) !important;
  border: 1px solid rgba(0, 63, 140, 0.3) !important;
}

.text-gold { color: var(--gold-primary) !important; }
.text-gold-dark { color: var(--gold-dark) !important; }
.bg-gold { background-color: var(--gold-primary) !important; }
.bg-gold-subtle { background-color: var(--gold-subtle) !important; }
.border-gold { border-color: var(--gold-primary) !important; }
.border-gold-subtle { border-color: rgba(212, 175, 55, 0.28) !important; }

/* Section Badges */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-subtle);
  border: 1px solid rgba(197, 160, 89, 0.25);
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.15rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

@media (max-width: 768px) {
  .section-title { font-size: 1.65rem; }
}

.section-subtitle {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* Buttons */
.btn-gold {
  background: var(--gold-gradient);
  color: #070F24 !important;
  font-weight: 700;
  border: none;
  padding: 11px 26px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 14px rgba(197, 160, 89, 0.25);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-gold:hover {
  background: var(--gold-dark);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(197, 160, 89, 0.35);
}

.btn-outline-gold {
  border: 1.5px solid var(--gold-primary);
  color: var(--gold-primary) !important;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: var(--radius-md);
  background: transparent;
  transition: all 0.25s ease;
}

.btn-outline-gold:hover {
  background: var(--gold-primary);
  color: #070F24 !important;
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

.btn-singawa-red {
  background: var(--singawa-red-gradient);
  color: #FFFFFF !important;
  font-weight: 700;
  border: none;
  padding: 11px 26px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px var(--singawa-red-glow);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-singawa-red:hover {
  background: var(--singawa-red-dark);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(199, 15, 19, 0.45);
}

.btn-singawa-blue {
  background: var(--singawa-blue-gradient);
  color: #FFFFFF !important;
  font-weight: 700;
  border: none;
  padding: 11px 26px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px var(--singawa-blue-glow);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-singawa-blue:hover {
  background: var(--singawa-blue-dark);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 63, 140, 0.45);
}

.btn-outline-navy {
  border: 1.5px solid #CBD5E1;
  color: var(--navy-primary);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
  background: #FFFFFF;
}

.btn-outline-navy:hover, .btn-outline-navy.active {
  background: var(--navy-primary);
  color: #FFFFFF !important;
  border-color: var(--navy-primary);
}

/* Top Legal Bar (Midnight Navy Luxury Marquee Bar) */
.top-legal-bar {
  background: #040814;
  color: #94A3B8;
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  padding: 5px 0;
  overflow: hidden;
}
.top-legal-bar a {
  color: #E2E8F0;
  transition: all 0.2s ease;
}
.top-legal-bar a:hover {
  color: #D4AF37;
}
.top-legal-bar marquee {
  vertical-align: middle;
  line-height: 1.5;
}
.top-legal-bar marquee:hover {
  color: #FFFFFF;
}
.live-pulse-dot {
  width: 6px;
  height: 6px;
  background: #10B981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseLiveGreen 2s infinite;
}
@keyframes pulseLiveGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Navbar - Proportional Luminous Executive White Corporate Styling */
.navbar-custom {
  position: sticky !important;
  top: 0 !important;
  z-index: 1050 !important;
  width: 100%;
  background: #FFFFFF !important;
  box-shadow: 0 4px 18px -4px rgba(10, 25, 47, 0.07);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 8px 0;
}

.navbar-scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(16px);
  padding: 6px 0;
  box-shadow: 0 6px 24px -4px rgba(10, 25, 47, 0.12) !important;
  border-bottom-color: rgba(212, 175, 55, 0.35) !important;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar-brand img {
  max-height: 38px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.navbar-brand:hover img {
  transform: scale(1.04);
}

.navbar-brand .brand-title {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-size: 1.25rem;
  font-weight: 800 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.05;
  text-transform: none !important;
  white-space: nowrap !important;
  color: var(--navy-primary) !important;
}

.navbar-brand .brand-subtitle {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-size: 0.44rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
  white-space: nowrap !important;
  color: #B88E1C !important;
  line-height: 1.15;
  margin-top: 1px;
}

.admin-brand-title {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  white-space: nowrap !important;
  color: var(--navy-primary) !important;
}

.admin-brand-sub {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  font-size: 0.48rem !important;
  text-transform: none !important;
  white-space: nowrap !important;
  color: #B88E1C !important;
}

.navbar-brand .brand-logo-icon {
  width: 34px;
  height: 34px;
  background: var(--gold-gradient);
  color: var(--navy-dark);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.05rem;
  box-shadow: 0 3px 10px rgba(212, 175, 55, 0.28);
}

/* Executive Navigation Links */
.nav-link-custom {
  position: relative;
  color: #334155 !important;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: -0.01em;
  padding: 6px 12px !important;
  border-radius: 6px;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #D4AF37 0%, #B88E1C 100%);
  border-radius: 4px;
  transform: translateX(-50%);
  transition: width 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link-custom:hover {
  color: #0A192F !important;
  background: rgba(10, 25, 47, 0.04);
  transform: translateY(-1px);
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  width: calc(100% - 18px);
}

.nav-link-custom.active {
  color: #000B23 !important;
  font-weight: 700;
  background: rgba(212, 175, 55, 0.07);
}

/* Floating Executive Mega-Card Dropdown */
.dropdown-menu-executive {
  min-width: 375px;
  background: #FFFFFF !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 45px -10px rgba(10, 25, 47, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.02) !important;
  padding: 12px !important;
  margin-top: 10px !important;
  animation: dropdownFadeSlide 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes dropdownFadeSlide {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.dropdown-item-executive {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
}
.dropdown-item-executive:hover {
  background: #F8FAFC;
  border-color: rgba(212, 175, 55, 0.25);
  transform: translateX(4px);
}
.dropdown-item-executive.active {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.35);
}

.dropdown-item-executive .item-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}
.dropdown-item-executive:hover .item-icon {
  transform: scale(1.08);
}
.dropdown-item-executive .item-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #0A192F;
  line-height: 1.25;
}
.dropdown-item-executive .item-desc {
  font-size: 0.74rem;
  color: #64748B;
  margin-top: 2px;
  line-height: 1.35;
}
.dropdown-item-executive .item-arrow {
  margin-left: auto;
  color: #CBD5E1;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}
.dropdown-item-executive:hover .item-arrow {
  color: #B88E1C;
  transform: translateX(3px);
}

/* Modern Language Pill Selector */
.btn-lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 50px;
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  color: #0A192F;
  font-weight: 700;
  font-size: 0.82rem;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.btn-lang-pill:hover,
.btn-lang-pill:focus,
.btn-lang-pill[aria-expanded="true"] {
  border-color: #D4AF37;
  background: #FFFFFF;
  box-shadow: 0 3px 10px rgba(212, 175, 55, 0.2);
  color: #0A192F;
  transform: translateY(-1px);
}

/* Executive Corporate CTA Button in Navbar (JAC Group Standard) */
.btn-gold-executive {
  background: #0A192F !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  font-size: 0.84rem !important;
  letter-spacing: 0.02em;
  padding: 8px 18px !important;
  border-radius: 4px !important;
  border: 1px solid #0A192F !important;
  box-shadow: 0 2px 8px rgba(10, 25, 47, 0.12) !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: all 0.25s ease !important;
}
.btn-gold-executive:hover {
  background: #B8860B !important;
  border-color: #B8860B !important;
  color: #FFFFFF !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(184, 134, 11, 0.25) !important;
}

/* Top Reading Scroll Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gold-gradient);
  width: 0%;
  z-index: 9999;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.8);
}

/* Floating Back to Top Button (Placed Directly Above WhatsApp Button) */
.back-to-top-btn {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-dark);
  color: var(--gold-primary);
  border: 2px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1040;
  box-shadow: 0 6px 20px rgba(10, 25, 47, 0.35);
}

.back-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  background: var(--gold-gradient);
  color: var(--navy-dark);
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.45);
}

/* ==========================================================
   JAC GROUP PREMIER JAPANESE CORPORATE DESIGN SYSTEM
   (Authentic Japanese Corporate • JAC Indonesia Reference)
   ========================================================== */

/* 1. JAC Panoramic Hero Section (Full Satu Layar Awal - Exact 100vh First Screen) */
.jac-panoramic-hero {
  position: relative;
  background: 
    linear-gradient(90deg, rgba(7, 18, 38, 0.90) 0%, rgba(7, 18, 38, 0.76) 50%, rgba(7, 18, 38, 0.45) 100%),
    url('/img/hero/corporate-skyline.jpg') center center / cover no-repeat;
  padding: 34px 0 28px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.jac-panoramic-hero.jac-fullscreen-hero {
  min-height: calc(100vh - 96px);
  min-height: calc(100dvh - 96px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  background: 
    linear-gradient(90deg, rgba(7, 18, 38, 0.92) 0%, rgba(7, 18, 38, 0.78) 50%, rgba(7, 18, 38, 0.50) 100%),
    url('/img/hero/corporate-skyline.jpg') center center / cover no-repeat;
}

.jac-hero-content-wrapper {
  flex: 1 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0 10px;
}

.jac-hero-content-wrapper .container {
  width: 100%;
}


.jac-tri-cards-dock {
  flex-shrink: 0;
  width: 100%;
  padding: 8px 0 14px;
  background: linear-gradient(180deg, rgba(6, 13, 23, 0) 0%, rgba(6, 13, 23, 0.85) 30%, rgba(6, 13, 23, 0.98) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 991.98px) {
  .jac-panoramic-hero {
    padding: 32px 0 32px;
    background: 
      linear-gradient(180deg, rgba(7, 18, 38, 0.94) 0%, rgba(7, 18, 38, 0.88) 100%),
      url('/img/hero/corporate-skyline.jpg') center center / cover no-repeat;
  }
  .jac-panoramic-hero.jac-fullscreen-hero {
    min-height: calc(100vh - 64px);
    min-height: calc(100dvh - 64px);
  }
}

/* JAC 3-Line Punchy Statement - Compact & Authoritative */
.jac-hero-punchline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.40rem, 6.2vw, 2.45rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: #FFFFFF !important;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  word-break: break-word;
}

.jac-hero-punchline span {
  display: block;
}

.jac-hero-punchline span:nth-child(2) {
  color: #F8FAFC;
}

.jac-hero-punchline span:nth-child(3) {
  color: #E2E8F0;
}

.jac-hero-lead-white {
  font-size: 0.90rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  max-width: 680px;
  margin-bottom: 16px;
  font-weight: 400;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* JAC Action Buttons - Compact */
.btn-jac-orange {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: #E67E22;
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.84rem;
  border-radius: 4px;
  border: 1px solid #E67E22;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}
.btn-jac-orange:hover {
  background: #D35400;
  border-color: #D35400;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(211, 84, 0, 0.4);
}

.btn-jac-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.84rem;
  border-radius: 4px;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-jac-outline-light:hover {
  background: #FFFFFF;
  color: #0A192F !important;
  border-color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* JAC Floating Quick Inquiry Card - Compact */
.jac-floating-search-card {
  background: #0A192F;
  border-radius: 8px;
  padding: 14px 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(212, 175, 55, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
}

.jac-floating-search-card h3 {
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.jac-search-input-group {
  margin-bottom: 7px;
}

.jac-search-select,
.jac-search-input {
  width: 100%;
  padding: 6px 10px;
  background: #FFFFFF;
  color: #0F172A;
  font-size: 0.80rem;
  border-radius: 4px;
  border: 1px solid #CBD5E1;
  outline: none;
  transition: border-color 0.2s ease;
}
.jac-search-select:focus,
.jac-search-input:focus {
  border-color: #0088CC;
  box-shadow: 0 0 0 2px rgba(0, 136, 204, 0.2);
}

.btn-jac-search-submit {
  width: 100%;
  padding: 8px 12px;
  background: #0088CC;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.84rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 136, 204, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.btn-jac-search-submit:hover {
  background: #0070A8;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 136, 204, 0.45);
}

/* 2. 3 Horizontal Photographic Cards Directly Below Hero (JAC Core Strip - Compact & Informative) */
.jac-tri-cards-section {
  background: #060D17;
  padding: 14px 0 16px;
  border-bottom: 1px solid #CBD5E1;
}

.jac-tri-card {
  position: relative;
  min-height: 205px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  text-decoration: none;
  background: #0A192F;
  border-radius: 10px;
  padding: 14px 16px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.jac-tri-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.75);
}

/* Distinct Hover Colors & Accents for 3 Core Businesses */

/* --- Core 1: Singawa Consulting (Corporate Sapphire Blue) --- */
.jac-tri-card-consulting {
  border: 1.5px solid rgba(0, 136, 204, 0.45);
}
.jac-tri-card-consulting .jac-tri-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 20, 48, 0.72) 0%, rgba(4, 15, 36, 0.94) 100%);
  transition: all 0.35s ease;
}
.jac-tri-card-consulting:hover {
  border-color: #38BDF8;
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 136, 204, 0.35);
}
.jac-tri-card-consulting:hover .jac-tri-card-overlay {
  background: linear-gradient(180deg, rgba(0, 68, 160, 0.80) 0%, rgba(0, 28, 75, 0.96) 100%);
}
.jac-tri-card-consulting .jac-tri-badge {
  background: rgba(0, 136, 204, 0.2);
  color: #60C5FF;
  border: 1px solid rgba(0, 136, 204, 0.45);
}
.jac-tri-card-consulting:hover .jac-tri-card-title {
  color: #7DD3FC;
}

/* --- Core 2: Singawa Outsourcing (Prestigious Imperial Gold) --- */
.jac-tri-card-outsourcing {
  border: 1.5px solid rgba(212, 175, 55, 0.45);
}
.jac-tri-card-outsourcing .jac-tri-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(38, 28, 8, 0.72) 0%, rgba(22, 16, 4, 0.94) 100%);
  transition: all 0.35s ease;
}
.jac-tri-card-outsourcing:hover {
  border-color: #FBBF24;
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(212, 175, 55, 0.35);
}
.jac-tri-card-outsourcing:hover .jac-tri-card-overlay {
  background: linear-gradient(180deg, rgba(135, 96, 12, 0.80) 0%, rgba(55, 38, 4, 0.96) 100%);
}
.jac-tri-card-outsourcing .jac-tri-badge {
  background: rgba(212, 175, 55, 0.2);
  color: #FDE047;
  border: 1px solid rgba(212, 175, 55, 0.45);
}
.jac-tri-card-outsourcing:hover .jac-tri-card-title {
  color: #FEF08A;
}

/* --- Core 3: Singawa Recruitment (Executive Crimson Shield) --- */
.jac-tri-card-recruitment {
  border: 1.5px solid rgba(229, 45, 39, 0.45);
}
.jac-tri-card-recruitment .jac-tri-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42, 10, 14, 0.72) 0%, rgba(24, 5, 8, 0.94) 100%);
  transition: all 0.35s ease;
}
.jac-tri-card-recruitment:hover {
  border-color: #F87171;
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(229, 45, 39, 0.35);
}
.jac-tri-card-recruitment:hover .jac-tri-card-overlay {
  background: linear-gradient(180deg, rgba(150, 22, 28, 0.80) 0%, rgba(65, 8, 12, 0.96) 100%);
}
.jac-tri-card-recruitment .jac-tri-badge {
  background: rgba(229, 45, 39, 0.2);
  color: #FCA5A5;
  border: 1px solid rgba(229, 45, 39, 0.45);
}
.jac-tri-card-recruitment:hover .jac-tri-card-title {
  color: #FECACA;
}

.jac-tri-card:hover .jac-tri-card-img {
  transform: scale(1.06);
}

.jac-tri-card-header {
  position: relative;
  z-index: 2;
}

.jac-tri-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.jac-tri-card-title {
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  transition: color 0.25s ease;
}

.jac-tri-card-body {
  position: relative;
  z-index: 2;
  margin: 6px 0;
}

.jac-tri-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jac-tri-card-features li {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.74rem;
  line-height: 1.45;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 3px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.jac-tri-card-features li i {
  font-size: 0.68rem;
  opacity: 0.9;
}

.jac-tri-card-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.jac-tri-link-text {
  color: #FFFFFF;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s ease;
}
.jac-tri-card:hover .jac-tri-link-text {
  gap: 8px;
}

/* 3. JAC Spotlight & Video Section (Connecting Professionals...) - Executive Dark */
.jac-spotlight-section {
  padding: 75px 0;
  background: #070D18;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.jac-spotlight-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.7vw, 2.4rem);
  font-weight: 700;
  color: #FFFFFF !important;
  line-height: 1.32;
  margin-bottom: 22px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.jac-spotlight-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 18px;
}

.jac-spotlight-text {
  font-size: 0.92rem;
  line-height: 1.8;
  color: #94A3B8;
  margin-bottom: 24px;
}

.jac-video-box {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.35);
  height: 320px;
  background: #0A192F;
}

.jac-video-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.80);
}

.jac-video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: #E67E22;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.4rem;
  box-shadow: 0 8px 24px rgba(230, 126, 34, 0.45);
  transition: transform 0.25s ease, background 0.25s ease;
  cursor: pointer;
  z-index: 3;
}
.jac-video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: #D35400;
}

.jac-video-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  color: #FFFFFF;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.jac-video-badge-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.15;
  color: #FFFFFF;
}

.jac-video-badge-sub {
  font-size: 0.85rem;
  color: #CBD5E1;
}

/* Navy Pill Buttons under Video & Spotlight */
.btn-jac-pill-navy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  background: rgba(10, 25, 47, 0.85);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.btn-jac-pill-navy:hover {
  background: #0056B3;
  border-color: #38BDF8;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 86, 179, 0.35);
}

.badge-jac-pill-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 15px;
  background: rgba(255, 255, 255, 0.06);
  color: #CBD5E1 !important;
  font-size: 0.80rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.badge-jac-pill-filter:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: #D4AF37;
  color: #FDE047 !important;
}

/* 4. JAC Section Headers (with Orange Pill on Right) */
.jac-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 35px;
}

.jac-blue-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
  font-weight: 700;
  color: #FFFFFF !important;
  margin-bottom: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.btn-jac-pill-orange {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 24px;
  background: #E67E22;
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}
.btn-jac-pill-orange:hover {
  background: #D35400;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(211, 84, 0, 0.4);
}

/* 5. Grid of 8 Service Cards (Executive Dark Glassmorphic Style) */
.jac-grid-card {
  background: rgba(10, 25, 47, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.jac-grid-card:hover {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45), 0 0 15px rgba(212, 175, 55, 0.15);
  transform: translateY(-4px);
}

.jac-grid-card-title {
  color: #FFFFFF !important;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.35;
}

.jac-grid-card-meta {
  color: #D4AF37 !important;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.jac-grid-card-desc {
  color: #94A3B8 !important;
  font-size: 0.85rem;
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 18px;
}

.jac-grid-card-link {
  color: #38BDF8 !important;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(56, 189, 248, 0.5);
  padding-bottom: 2px;
  width: fit-content;
  display: inline-block;
  transition: all 0.2s ease;
}
.jac-grid-card-link:hover {
  color: #D4AF37 !important;
  border-color: #D4AF37;
  padding-left: 4px;
}

/* 6. Circular Features (Executive Dark Glass Style) */
.jac-circle-feature-item {
  text-align: center;
  padding: 10px;
}

.jac-circle-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(10, 25, 47, 0.85);
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.75rem;
  color: #D4AF37;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.jac-circle-feature-item:hover .jac-circle-icon {
  background: #0A192F;
  border-color: #D4AF37;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.25);
}

.jac-circle-title {
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.98rem;
  margin-bottom: 6px;
}

.jac-circle-desc {
  color: #94A3B8 !important;
  font-size: 0.82rem;
  line-height: 1.55;
  max-width: 220px;
  margin: 0 auto;
}

/* 7. 4-Column Tall Photographic Insight Cards */
.jac-insight-card {
  position: relative;
  height: 380px;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  background: #0A192F;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.jac-insight-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55), 0 0 15px rgba(212, 175, 55, 0.2);
}

.jac-insight-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.75);
}

.jac-insight-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.9);
}

.jac-insight-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 18, 38, 0.1) 0%, rgba(7, 18, 38, 0.5) 45%, rgba(7, 18, 38, 0.94) 100%);
  transition: background 0.3s ease;
}

.jac-insight-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 18px;
  z-index: 2;
}

.jac-insight-card-title {
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.42;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  transition: color 0.25s ease;
}

.jac-insight-card-text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.jac-insight-card:hover .jac-insight-card-img {
  transform: scale(1.08);
}

.jac-insight-card:hover .jac-insight-card-overlay {
  background: linear-gradient(180deg, rgba(7, 18, 38, 0.05) 0%, rgba(7, 18, 38, 0.4) 40%, rgba(7, 18, 38, 0.98) 100%);
}

.jac-insight-card:hover .jac-insight-card-title {
  color: #F8D068;
}

/* 8. Deep Navy Bottom CTA Banner */
.jac-bottom-navy-banner {
  background: #0A192F;
  padding: 42px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-jac-bottom-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 44px;
  background: #E67E22;
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}
.btn-jac-bottom-cta:hover {
  background: #D35400;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(211, 84, 0, 0.5);
}

/* ==========================================================
   2. JAC PAGE HEADER (Unified Executive Panoramic Standard)
   ========================================================== */
.jac-page-header {
  position: relative;
  background: 
    linear-gradient(90deg, rgba(6, 13, 23, 0.94) 0%, rgba(7, 18, 38, 0.86) 55%, rgba(6, 13, 23, 0.96) 100%),
    url('/img/hero/corporate-skyline.jpg') center center / cover no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  padding: 30px 0 26px !important;
  color: #FFFFFF;
}

.jac-breadcrumb {
  margin-bottom: 10px;
}
.jac-breadcrumb .breadcrumb-item {
  font-size: 0.80rem;
  font-weight: 500;
}
.jac-breadcrumb .breadcrumb-item a {
  color: #D4AF37 !important;
  text-decoration: none;
  transition: color 0.2s ease;
}
.jac-breadcrumb .breadcrumb-item a:hover {
  color: #FFFFFF !important;
}
.jac-breadcrumb .breadcrumb-item.active {
  color: #FFFFFF !important;
  font-weight: 600;
}

.jac-page-title {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem) !important;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: #FFFFFF !important;
  margin-bottom: 8px !important;
  font-family: var(--font-heading);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.jac-page-lead {
  font-size: 0.95rem !important;
  line-height: 1.62 !important;
  color: #94A3B8 !important;
  max-width: 820px;
  margin-bottom: 14px !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.jac-page-header-visual {
  display: none !important;
}

.jac-page-header-visual-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: rgba(6, 13, 23, 0.90);
  backdrop-filter: blur(12px);
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  font-size: 0.78rem;
  font-weight: 600;
  color: #FFFFFF;
}

.btn-jac-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: #E67E22;
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(230, 126, 34, 0.35);
  border: 1px solid #E67E22;
}
.btn-jac-primary:hover {
  background: #D35400;
  border-color: #D35400;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(211, 84, 0, 0.45);
}

.btn-jac-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF !important;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 4px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-jac-outline:hover {
  background: #FFFFFF;
  color: #0A192F !important;
  border-color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.jac-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(10, 25, 47, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #F8FAFC;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

/* ==========================================================
   3. JAC SERVICE BRANDS CARDS (3 Core Businesses)
   ========================================================== */
.jac-brand-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(10, 25, 47, 0.04);
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}

.jac-brand-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 20px 42px -10px rgba(10, 25, 47, 0.12);
}

.jac-brand-card-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: #0A192F;
}

.jac-brand-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.jac-brand-card:hover .jac-brand-card-img {
  transform: scale(1.05);
}

.jac-brand-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #FFFFFF;
  color: #0A192F;
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.jac-brand-card-body {
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.jac-brand-card-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #0A192F;
  margin-bottom: 8px;
  font-family: var(--font-heading);
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.jac-brand-card-desc {
  font-size: 0.90rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 20px;
}

.jac-brand-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.jac-brand-card-features li {
  font-size: 0.82rem;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 8px;
}
.jac-brand-card-features li i {
  color: #B8860B;
  font-size: 0.85rem;
}

.jac-brand-card-link {
  font-size: 0.90rem;
  font-weight: 700;
  color: #0A192F;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  padding-top: 14px;
  border-top: 1px solid #F1F5F9;
}
.jac-brand-card:hover .jac-brand-card-link {
  color: #B8860B;
  gap: 12px;
}

/* ==========================================================
   4. JAC NEWS & INSIGHTS LIST (Clean Horizontal Style)
   ========================================================== */
.jac-news-item {
  display: flex;
  align-items: center;
  padding: 16px 14px;
  border-bottom: 1px solid #E2E8F0;
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: 6px;
}
.jac-news-item:hover {
  background: #F8FAFC;
  transform: translateX(4px);
}

.jac-news-date {
  font-size: 0.82rem;
  font-weight: 600;
  color: #64748B;
  width: 120px;
  flex-shrink: 0;
}

.jac-news-category {
  padding: 3px 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 4px;
  text-transform: uppercase;
  margin-right: 18px;
  flex-shrink: 0;
  background: #EFF6FF;
  color: #0056B3;
  border: 1px solid rgba(0, 86, 179, 0.15);
}

.jac-news-title {
  font-size: 0.98rem;
  font-weight: 600;
  color: #0A192F;
  flex-grow: 1;
  line-height: 1.45;
  transition: color 0.2s ease;
}
.jac-news-item:hover .jac-news-title {
  color: #B8860B;
}

.jac-news-arrow {
  color: #94A3B8;
  font-size: 0.88rem;
  margin-left: 18px;
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}
.jac-news-item:hover .jac-news-arrow {
  color: #B8860B;
  transform: translateX(3px);
}

@media (max-width: 767.98px) {
  .jac-news-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .jac-news-date {
    width: auto;
  }
}

/* Scroll-Driven Reveal Micro-Animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger Delays for Grid Cards */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Interactive Elevated Hover Styles */
.dark-luxury-card,
.corporate-card,
.triangle-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.dark-luxury-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.6) !important;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), 0 0 20px rgba(212, 175, 55, 0.15) !important;
}

.corporate-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary) !important;
  box-shadow: 0 16px 32px rgba(10, 25, 47, 0.12), 0 0 15px rgba(212, 175, 55, 0.12) !important;
}

.triangle-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary) !important;
  box-shadow: 0 12px 28px rgba(10, 25, 47, 0.1) !important;
}

.service-icon-box {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, color 0.3s ease;
}

.dark-luxury-card:hover .service-icon-box,
.corporate-card:hover .service-icon-box {
  transform: scale(1.1);
  background: var(--gold-gradient);
  color: var(--navy-dark);
}

.hero-slider-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-lg);
  transform: none !important;
  transition: all 0.3s ease;
}

.hero-slider-img {
  height: 300px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--gold-primary);
  opacity: 0.5;
  margin: 0 4px;
}

.carousel-indicators .active {
  opacity: 1;
  width: 24px;
  border-radius: 5px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-primary);
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 2.85rem;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 16px;
  color: #FFFFFF !important;
}

.hero-title span {
  color: #FFFFFF !important;
}

.hero-title span.text-gold,
.hero-title .text-gold,
.hero-title span.text-gold-gradient {
  color: var(--gold-primary) !important;
}

.hero-subtitle {
  font-size: 1.02rem;
  color: #CBD5E1 !important;
  max-width: 620px;
  line-height: 1.6;
}

.hero-btn-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

/* Force crisp white heading on all dark backgrounds */
.hero-section h1, .hero-section h2, .hero-section h3, .hero-section h4, .hero-section h5, .hero-section h6,
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4, .bg-navy h5, .bg-navy h6,
.bg-navy-dark h1, .bg-navy-dark h2, .bg-navy-dark h3, .bg-navy-dark h4, .bg-navy-dark h5, .bg-navy-dark h6,
.dark-luxury-card h1, .dark-luxury-card h2, .dark-luxury-card h3, .dark-luxury-card h4, .dark-luxury-card h5, .dark-luxury-card h6 {
  color: #FFFFFF !important;
}

/* Section Header Typography */
.section-badge {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* Alternating Card Styles */
.corporate-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.corporate-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-primary);
}

/* Dark Luxury Card (for dark sections) */
.dark-luxury-card {
  background: var(--navy-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  color: #FFFFFF;
}

.dark-luxury-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  box-shadow: 0 14px 36px rgba(212, 175, 55, 0.15);
}

.service-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.corporate-card:hover .service-icon-box,
.dark-luxury-card:hover .service-icon-box {
  background: var(--gold-primary);
  color: var(--navy-dark);
  transform: scale(1.08);
}

/* Triangle Cards (Segitiga Bahagia) */
.triangle-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.triangle-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Floating WhatsApp Action */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  color: #FFFFFF;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
}

/* ==========================================================================
   SINGAWA FLOATING BACKGROUND MUSIC PLAYER (BOTTOM LEFT)
   ========================================================================== */
.singawa-music-player-wrap {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

.singawa-music-btn-group {
  position: relative;
  display: flex;
  align-items: center;
}

/* Main Floating Music Disc Button */
.floating-music-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #0B132B;
  border: 2px solid rgba(212, 175, 55, 0.6);
  padding: 0;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(11, 19, 43, 0.35);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  outline: none;
}

.floating-music-btn:hover {
  transform: scale(1.08);
  border-color: #D4AF37;
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.3);
}

/* Vinyl Disc Graphic */
.music-vinyl-disc {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle, #1C2A4A 0%, #0B132B 65%, #050814 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.8);
}

.vinyl-groove-outer {
  position: absolute;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px dashed rgba(212, 175, 55, 0.25);
  pointer-events: none;
}

.vinyl-groove-inner {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.15);
  pointer-events: none;
}

.vinyl-center-label {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #D4AF37;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.6);
  z-index: 2;
}

.vinyl-center-label .play-icon {
  font-size: 9px;
  color: #0B132B;
  margin-left: 1px;
  transition: transform 0.2s ease;
}

.vinyl-center-label .play-icon.fa-pause {
  margin-left: 0;
}

/* Rotating Vinyl Animation */
@keyframes spinVinyl {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.music-vinyl-disc.is-playing {
  animation: spinVinyl 5s linear infinite;
}

/* Equalizer Bars Indicator */
.music-sound-bars {
  position: absolute;
  bottom: 4px;
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 10px;
  z-index: 3;
}

.music-sound-bars .bar {
  width: 2.5px;
  background: #D4AF37;
  border-radius: 2px;
  height: 3px;
  transition: height 0.2s ease;
}

@keyframes bounceBar1 { 0%, 100% { height: 3px; } 50% { height: 10px; } }
@keyframes bounceBar2 { 0%, 100% { height: 8px; } 50% { height: 3px; } }
@keyframes bounceBar3 { 0%, 100% { height: 4px; } 50% { height: 11px; } }
@keyframes bounceBar4 { 0%, 100% { height: 10px; } 50% { height: 4px; } }

.music-sound-bars.is-playing .bar-1 { animation: bounceBar1 0.8s ease-in-out infinite; }
.music-sound-bars.is-playing .bar-2 { animation: bounceBar2 0.7s ease-in-out infinite 0.15s; }
.music-sound-bars.is-playing .bar-3 { animation: bounceBar3 0.9s ease-in-out infinite 0.1s; }
.music-sound-bars.is-playing .bar-4 { animation: bounceBar4 0.75s ease-in-out infinite 0.2s; }

/* Mini Toggle Pill for Volume Slider */
.floating-music-toggle-pill {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #1C2A4A;
  border: 1.5px solid #D4AF37;
  color: #D4AF37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 4;
}

.floating-music-toggle-pill:hover {
  transform: scale(1.15);
  background: #D4AF37;
  color: #0B132B;
}

/* Flyout Control Panel */
.singawa-music-flyout {
  position: absolute;
  bottom: 74px;
  left: 0;
  min-width: 270px;
  background: rgba(11, 19, 43, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 14px;
  padding: 14px 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.95);
  transform-origin: bottom left;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

/* Flyout hover & show state */
.singawa-music-player-wrap:hover .singawa-music-flyout,
.singawa-music-flyout.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.singawa-music-info {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.singawa-music-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.singawa-music-meta {
  flex: 1;
  min-width: 0;
}

.singawa-music-title {
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.01em;
}

.singawa-music-status {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.69rem;
}

.singawa-music-status .status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6C757D;
  transition: background 0.3s ease;
}

.singawa-music-player-wrap.playing .status-dot {
  background: #25D366;
  box-shadow: 0 0 6px rgba(37, 211, 102, 0.6);
}

.singawa-music-flyout-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  cursor: pointer;
  padding: 4px;
}

.singawa-music-flyout-close:hover {
  color: #FFFFFF;
}

/* Volume Row */
.singawa-music-volume-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.singawa-music-mute-btn {
  background: none;
  border: none;
  color: #D4AF37;
  font-size: 14px;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.singawa-music-mute-btn:hover {
  transform: scale(1.15);
}

.singawa-volume-slider-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
}

/* Custom Range Slider */
.singawa-volume-range {
  -webkit-appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
  outline: none;
  cursor: pointer;
}

.singawa-volume-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #D4AF37;
  cursor: pointer;
  box-shadow: 0 0 4px rgba(212, 175, 55, 0.6);
  border: 1.5px solid #FFFFFF;
  transition: transform 0.15s ease;
}

.singawa-volume-range::-webkit-slider-thumb:hover {
  transform: scale(1.25);
}

.singawa-volume-range::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #D4AF37;
  cursor: pointer;
  box-shadow: 0 0 4px rgba(212, 175, 55, 0.6);
  border: 1.5px solid #FFFFFF;
  transition: transform 0.15s ease;
}

.singawa-volume-pct {
  color: #D4AF37;
  font-size: 0.72rem;
  font-weight: 700;
  min-width: 32px;
  text-align: right;
}

/* Responsive adjustment for Mobile */
@media (max-width: 576px) {
  .singawa-music-player-wrap {
    bottom: 18px;
    left: 16px;
  }
  .floating-music-btn {
    width: 50px;
    height: 50px;
  }
  .music-vinyl-disc {
    width: 40px;
    height: 40px;
  }
  .vinyl-groove-outer {
    width: 30px;
    height: 30px;
  }
  .vinyl-groove-inner {
    width: 22px;
    height: 22px;
  }
  .vinyl-center-label {
    width: 16px;
    height: 16px;
  }
  .vinyl-center-label .play-icon {
    font-size: 8px;
  }
  .singawa-music-flyout {
    bottom: 64px;
    left: 0;
    min-width: 250px;
  }
}

/* Global Dark Section & Footer Links - Pure Crisp White */
footer a,
.footer-link,
.bg-navy-dark a:not(.btn),
.bg-navy a:not(.btn),
.bg-navy-card a:not(.btn),
.bg-navy-light a:not(.btn),
.dark-luxury-card a:not(.btn) {
  color: #FFFFFF !important;
  text-decoration: none;
  transition: all 0.25s ease;
}

footer a:hover,
.footer-link:hover,
.hover-gold:hover,
.bg-navy-dark a:not(.btn):hover,
.bg-navy a:not(.btn):hover,
.bg-navy-card a:not(.btn):hover,
.bg-navy-light a:not(.btn):hover,
.dark-luxury-card a:not(.btn):hover {
  color: var(--gold-primary) !important;
}

.text-light-subtle {
  color: #CBD5E1 !important;
}

/* Multi-Page Enterprise UI Utilities */
.btn-navy {
  background-color: var(--navy-primary, #0A192F);
  color: #FFFFFF !important;
  border: 1px solid rgba(197, 168, 105, 0.3);
  font-weight: 600;
  transition: all 0.25s ease;
}
.btn-navy:hover {
  background-color: var(--gold-primary, #C5A869);
  color: #070D18 !important;
  border-color: var(--gold-primary, #C5A869);
  box-shadow: 0 6px 16px rgba(197, 168, 105, 0.25);
}

.btn-outline-navy {
  background-color: transparent;
  color: var(--navy-primary, #0A192F);
  border: 1.5px solid var(--navy-primary, #0A192F);
  font-weight: 600;
  transition: all 0.25s ease;
}
.btn-outline-navy:hover {
  background-color: var(--navy-primary, #0A192F);
  color: #FFFFFF !important;
}

.hover-shadow {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hover-shadow:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(10, 25, 47, 0.12) !important;
}

.bg-navy-hover:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(197, 168, 105, 0.6) !important;
}

.max-w-600 { max-width: 600px; }
.max-w-700 { max-width: 700px; }
.max-w-750 { max-width: 750px; }
.w-fit { width: fit-content; }


/* ==========================================================
   ENTERPRISE RESPONSIVE SYSTEM (SMARTPHONES & TABLETS)
   Tailored for 320px (SE/Fold), 375-430px (iOS/Android), 
   768-834px (iPad/Tablet Portrait), 992-1024px (Tablet Landscape)
   ========================================================== */

html {
  overflow-x: clip;
  width: 100%;
}
body {
  overflow-x: clip;
  width: 100%;
  max-width: 100vw;
}

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

/* 2. Responsive Typography (Fluid Heading Scaling) */
@media (max-width: 991.98px) {
  h1.display-4, .display-4 {
    font-size: clamp(2rem, 5.5vw, 2.75rem) !important;
    line-height: 1.2 !important;
  }
  h1.display-5, .display-5 {
    font-size: clamp(1.75rem, 4.5vw, 2.35rem) !important;
    line-height: 1.25 !important;
  }
  h2.display-6, .display-6 {
    font-size: clamp(1.45rem, 3.8vw, 1.95rem) !important;
    line-height: 1.3 !important;
  }
  .hero-subtitle, .lead {
    font-size: 1.05rem !important;
    line-height: 1.75 !important;
  }
  .hero-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 575.98px) {
  h1.display-4, .display-4 {
    font-size: clamp(1.65rem, 6.8vw, 2.15rem) !important;
    line-height: 1.22 !important;
  }
  h1.display-5, .display-5 {
    font-size: clamp(1.45rem, 5.8vw, 1.85rem) !important;
    line-height: 1.25 !important;
  }
  h2.display-6, .display-6 {
    font-size: clamp(1.25rem, 5vw, 1.55rem) !important;
    line-height: 1.3 !important;
  }
  .hero-subtitle, .lead {
    font-size: 0.95rem !important;
    line-height: 1.65 !important;
  }
  .hero-title {
    font-size: 1.85rem;
  }
}

/* 3. Navbar & Mobile Drawer Refinements */
@media (max-width: 991.98px) {
  .navbar-custom {
    padding: 10px 0;
  }
  .navbar-collapse {
    background: #FFFFFF;
    padding: 16px 18px;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(10, 25, 47, 0.12);
    margin-top: 12px;
    border: 1px solid #E2E8F0;
  }
  .navbar-nav .nav-item {
    border-bottom: 1px solid #F1F5F9;
  }
  .navbar-nav .nav-link-custom {
    padding: 11px 8px !important;
    font-size: 0.98rem;
  }
  .navbar-nav .dropdown-menu {
    background: #F8FAFC !important;
    border: 1px solid #E2E8F0 !important;
    box-shadow: none !important;
    padding: 8px 12px !important;
    margin-top: 4px;
    margin-bottom: 8px;
    border-radius: 10px !important;
  }
  .navbar-nav .dropdown-item {
    padding: 9px 12px;
    border-radius: 8px;
  }
  .nav-action-wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch !important;
    gap: 12px !important;
    width: 100%;
  }
  .nav-action-wrapper .dropdown,
  .nav-action-wrapper .dropdown button {
    width: 100%;
    justify-content: center;
  }
  .nav-action-wrapper .btn-gold {
    width: 100%;
    justify-content: center;
    padding: 11px 16px;
    font-size: 0.95rem;
  }
}

@media (max-width: 991.98px) {
  .navbar-brand img {
    max-height: 40px;
  }
  .navbar-brand .brand-title {
    font-size: 1.15rem !important;
    text-transform: none !important;
    white-space: nowrap !important;
  }
  .navbar-brand .brand-subtitle {
    font-size: 0.42rem !important;
    letter-spacing: 0.03em !important;
    text-transform: none !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 420px) {
  .navbar-brand img {
    max-height: 34px;
  }
  .navbar-brand .brand-title {
    font-size: 1.05rem !important;
    text-transform: none !important;
    white-space: nowrap !important;
  }
  .navbar-brand .brand-subtitle {
    font-size: 0.38rem !important;
    letter-spacing: 0.02em !important;
    text-transform: none !important;
    white-space: nowrap !important;
  }
  .navbar-brand .brand-logo-icon {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }
}

/* 4. Touch Targets & Form Optimizations (No iOS Auto-Zoom) */
@media (max-width: 767.98px) {
  .form-control,
  .form-select,
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  select,
  textarea {
    font-size: 16px !important; /* Disables unwanted iOS zoom */
    min-height: 48px;
    border-radius: 8px;
  }
  textarea.form-control {
    min-height: 110px;
  }
  .btn {
    min-height: 44px; /* Minimum touch target for accessibility */
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* 5. Metrics & Trust Bar Responsive Grid Dividers */
@media (min-width: 768px) {
  .border-md-end { border-right: 1px solid rgba(255, 255, 255, 0.15) !important; }
  .border-md-bottom-0 { border-bottom: 0 !important; }
}
@media (max-width: 767.98px) {
  .border-sm-bottom { border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important; }
  .border-sm-end { border-right: 1px solid rgba(255, 255, 255, 0.15) !important; }
}

/* 6. Mobile Floating Action Buttons (Avoid Content Obscurity) */
@media (max-width: 576px) {
  .floating-whatsapp {
    bottom: 18px;
    right: 16px;
    width: 50px;
    height: 50px;
    font-size: 26px;
  }
  .back-to-top-btn {
    bottom: 76px;
    right: 19px;
    width: 44px;
    height: 44px;
    font-size: 0.9rem;
  }
  .a11y-floating-trigger {
    bottom: 18px;
    left: 16px;
    width: 46px;
    height: 46px;
    font-size: 20px;
  }
  /* Ensure footer has clearance so floating buttons don't block footer links */
  footer {
    padding-bottom: 80px !important;
  }
}

/* 7. Card Padding on Ultra-Small Devices (e.g. 320px - 360px) */
@media (max-width: 380px) {
  .p-4 {
    padding: 1rem !important;
  }
  .p-md-5 {
    padding: 1.25rem !important;
  }
  .badge {
    white-space: normal; /* Avoid badge clipping on narrow screens */
    text-align: left;
  }
}

/* ==========================================================
   TIER-1 MNC LUXURY GLASSMORPHISM, BENTO & INTERACTIVE SYSTEM
   ========================================================== */

/* Glassmorphism & Depth Utilities */
.glass-card-dark {
  background: rgba(10, 20, 36, 0.78) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(197, 168, 105, 0.3) !important;
  box-shadow: 0 24px 55px rgba(4, 9, 18, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.glass-card-light {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 232, 240, 0.85) !important;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

.border-gold-hairline {
  border: 1px solid rgba(197, 168, 105, 0.35) !important;
}

.text-gold-gradient {
  background: linear-gradient(135deg, #ECC875 0%, #D4AF37 50%, #B88E1C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

/* Live Status Pulsing Indicator */
.status-pulse-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.status-pulse-dot {
  width: 9px;
  height: 9px;
  background-color: #10B981;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-shadow: 0 0 10px #10B981;
  animation: pulseGlow 2s infinite ease-in-out;
}
@keyframes pulseGlow {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Hero Command Deck Interactive Tabs */
.command-deck-tabs {
  background: rgba(255, 255, 255, 0.04);
  padding: 5px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.command-deck-tabs .nav-link {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 9px 15px;
  border-radius: 8px;
  border: none;
  transition: all 0.25s ease;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 6px;
}
.command-deck-tabs .nav-link:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}
.command-deck-tabs .nav-link.active {
  color: #070F24 !important;
  background: var(--gold-gradient) !important;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(197, 160, 89, 0.35);
}

@media (max-width: 575.98px) {
  .command-deck-tabs .nav-link {
    font-size: 0.72rem;
    padding: 7px 6px;
    gap: 4px;
    letter-spacing: -0.01em;
  }
  .nav-step-header {
    padding: 16px 18px;
  }
}

/* Interactive Corporate Solution Navigator Widget */
.navigator-container {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(10, 25, 47, 0.08);
  border: 1px solid rgba(197, 168, 105, 0.28);
  overflow: hidden;
}
.nav-step-header {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
  color: #0A192F;
  padding: 24px 30px;
  border-bottom: 1.5px solid #E2E8F0;
}
.nav-choice-card {
  border: 1.5px solid #E2E8F0;
  border-radius: 14px;
  padding: 16px 18px;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  background: #F8FAFC;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.nav-choice-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.15);
  background: #FFFFFF;
}
.nav-choice-card.selected {
  border-color: var(--gold-primary);
  background: #FFFDF8;
  box-shadow: 0 0 0 2.5px rgba(197, 160, 89, 0.25), 0 10px 24px rgba(197, 160, 89, 0.15);
}

/* The SINGAWA Advantage Head-to-Head Comparison Table */
.advantage-table-wrapper {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(10, 25, 47, 0.07);
  border: 1px solid rgba(197, 168, 105, 0.25);
  background: #FFFFFF;
}
.table-advantage {
  margin-bottom: 0;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.table-advantage thead th {
  padding: 18px 22px;
  font-weight: 700;
  font-size: 0.95rem;
  border-bottom: 2px solid #E2E8F0;
}
.table-advantage tbody td {
  padding: 18px 22px;
  vertical-align: middle;
  font-size: 0.92rem;
  border-bottom: 1px solid #EDF2F7;
}
.table-advantage .singawa-col {
  background: rgba(197, 160, 89, 0.05);
  border-left: 2px solid rgba(197, 160, 89, 0.35);
  border-right: 2px solid rgba(197, 160, 89, 0.35);
}
.table-advantage thead .singawa-col {
  background: var(--navy-dark) !important;
  color: var(--gold-primary) !important;
  border-top: 3px solid var(--gold-primary);
}

/* Industrial Corridors Badges */
.corridor-pill {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}
.corridor-pill:hover {
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(197, 160, 89, 0.15);
  background: #FFFDF9;
}

/* Bento Grid Architecture */
.bento-card {
  border-radius: 20px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(10, 25, 47, 0.12);
}

/* ==========================================================
   JAC GROUP SPECIFIC COMPONENTS: NEWS TICKER, STATEMENT, MAP
   ========================================================== */
.jac-news-ticker {
  background: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
  padding: 14px 0;
}
.jac-news-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #B8860B;
  text-transform: uppercase;
}
.jac-news-date {
  font-size: 0.82rem;
  color: #64748B;
  font-weight: 500;
}
.jac-news-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  background: #0A192F;
  color: #FFFFFF;
  letter-spacing: 0.05em;
}
.jac-news-title {
  font-size: 0.90rem;
  font-weight: 600;
  color: #0A192F;
  text-decoration: none;
  transition: color 0.2s ease;
}
.jac-news-title:hover {
  color: #B8860B;
}
.jac-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #0A192F;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: all 0.2s ease;
}
.jac-link-arrow:hover {
  color: #B8860B;
  transform: translateX(3px);
}

/* JAC Statement Section ("Empowering Your Business Growth") */
.jac-statement-section {
  padding: 85px 0;
  background: #FFFFFF;
  position: relative;
}
.jac-section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #B8860B;
  margin-bottom: 14px;
  display: block;
}
.jac-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 2.8vw, 2.5rem);
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: 0.02em;
  color: #0A192F;
  margin-bottom: 22px;
}
.jac-section-lead {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 20px;
  font-weight: 500;
}
.jac-section-text {
  font-size: 0.95rem;
  line-height: 1.85;
  color: #64748B;
  margin-bottom: 30px;
}

/* JAC Supporting Visual Frame */
.jac-supporting-frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #CBD5E1;
  box-shadow: 0 16px 36px -10px rgba(10, 25, 47, 0.10);
  background: #FFFFFF;
}
.jac-supporting-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.jac-supporting-frame:hover .jac-supporting-img {
  transform: scale(1.03);
}
.jac-supporting-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  padding: 14px 18px;
  border-radius: 6px;
  border: 1px solid rgba(197, 160, 89, 0.4);
  box-shadow: 0 8px 24px rgba(10, 25, 47, 0.12);
}

/* JAC Strategic Corridor Map Frame */
.jac-map-frame {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 32px -8px rgba(10, 25, 47, 0.08);
  padding: 10px;
}
.jac-map-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* ==========================================================================
   Clean Executive Corporate Footer (Matching User Reference media_1789938883357.png)
   ========================================================================== */
.singawa-clean-footer {
  background-color: #070D18;
  color: #FFFFFF;
  padding: 44px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-body);
}

.singawa-clean-footer .footer-brand-title {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-size: 1.30rem;
  font-weight: 800 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.1;
  text-transform: none !important;
  white-space: nowrap !important;
  color: #FFFFFF;
}

.singawa-clean-footer .footer-brand-sub {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-size: 0.46rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
  white-space: nowrap !important;
  color: #D4AF37;
  line-height: 1.2;
  margin-top: 2px;
}

.singawa-clean-footer .footer-about-text {
  font-size: 0.82rem;
  line-height: 1.55;
  color: #94A3B8;
  margin-bottom: 14px;
  max-width: 320px;
}

.footer-lang-heading {
  color: #D4AF37;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.footer-lang-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.footer-lang-pill {
  padding: 4px 12px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #CBD5E1 !important;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.footer-lang-pill:hover,
.footer-lang-pill.active {
  background: #D4AF37;
  color: #070D18 !important;
  border-color: #D4AF37;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #D4AF37 !important;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.footer-social-btn:hover {
  background: #D4AF37;
  color: #070D18 !important;
  border-color: #D4AF37;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
}

.singawa-clean-footer .footer-col-title {
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.footer-clean-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-clean-list li a {
  color: #94A3B8 !important;
  font-size: 0.82rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
}

.footer-clean-list li a:hover {
  color: #FFFFFF !important;
  transform: translateX(3px);
}

.footer-clean-list li a .nav-chevron {
  color: #D4AF37 !important;
  font-size: 0.72rem;
  margin-right: 8px;
  transition: transform 0.2s ease;
}

.footer-clean-list li a:hover .nav-chevron {
  transform: translateX(2px);
  color: #F3D382 !important;
}

.footer-clean-list li a .service-icon {
  color: #D4AF37 !important;
  font-size: 0.85rem;
  margin-right: 8px;
  width: 16px;
  text-align: center;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: #94A3B8;
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-contact-item .contact-icon {
  color: #D4AF37 !important;
  font-size: 0.88rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

.footer-contact-item a {
  color: #94A3B8 !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-item a:hover {
  color: #FFFFFF !important;
}

/* Footer Bottom Bar */
.footer-bottom-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 28px;
  padding-top: 18px;
}

.footer-bottom-text {
  font-size: 0.78rem;
  color: #64748B;
}

.footer-bottom-links a {
  color: #64748B !important;
  font-size: 0.78rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #D4AF37 !important;
}

/* ==========================================================
   MASTER EXECUTIVE DARK ARCHITECTURE (Unified with Hero Viewport)
   ========================================================== */

/* Universal Public Content Canvas */
body {
  background-color: #070D18 !important;
  color: #CBD5E1;
}

/* Transform standard Bootstrap bg-light & bg-white on public pages into dark executive panels */
section.bg-light,
div.bg-light {
  background-color: #070D18 !important;
  color: #CBD5E1;
}

/* Public Card Transformation to Executive Dark Glass */
body:not(.admin-login) section:not(.singawa-white-section):not(.contact-white-section) .card:not(.admin-card):not(.contact-white-card):not(.singawa-white-card),
.singawa-exec-card:not(.contact-white-card):not(.singawa-white-card) {
  background: rgba(10, 25, 47, 0.78) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #CBD5E1 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35) !important;
}

body:not(.admin-login) section:not(.singawa-white-section):not(.contact-white-section) .card:not(.admin-card):not(.contact-white-card):not(.singawa-white-card):hover,
.singawa-exec-card:not(.contact-white-card):not(.singawa-white-card):hover {
  border-color: rgba(212, 175, 55, 0.45) !important;
}

/* Headings in public sections */
body:not(.admin-login) section:not(.singawa-white-section):not(.contact-white-section) .card:not(.contact-white-card):not(.singawa-white-card) h1,
body:not(.admin-login) section:not(.singawa-white-section):not(.contact-white-section) .card:not(.contact-white-card):not(.singawa-white-card) h2,
body:not(.admin-login) section:not(.singawa-white-section):not(.contact-white-card):not(.singawa-white-card) h3,
body:not(.admin-login) section:not(.singawa-white-section):not(.contact-white-section) .card:not(.contact-white-card):not(.singawa-white-card) h4,
body:not(.admin-login) section:not(.singawa-white-section):not(.contact-white-section) .card:not(.contact-white-card):not(.singawa-white-card) h5,
body:not(.admin-login) section:not(.singawa-white-section):not(.contact-white-section) .card:not(.contact-white-card):not(.singawa-white-card) h6,
body:not(.admin-login) section:not(.singawa-white-section):not(.contact-white-section) h1,
body:not(.admin-login) section:not(.singawa-white-section):not(.contact-white-section) h2,
body:not(.admin-login) section:not(.singawa-white-section):not(.contact-white-section) h3,
body:not(.admin-login) section:not(.singawa-white-section):not(.contact-white-section) h4,
body:not(.admin-login) section:not(.singawa-white-section):not(.contact-white-section) h5,
body:not(.admin-login) section:not(.singawa-white-section):not(.contact-white-section) h6 {
  color: #FFFFFF !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

body:not(.admin-login) section:not(.singawa-white-section):not(.contact-white-section) .text-navy:not(.navbar-brand-title):not(.brand-title):not(.admin-brand-title):not(.badge):not(.badge *):not(.bg-gold *):not(.bg-warning *) {
  color: #FFFFFF !important;
}

/* Executive Gold Action Button */
.btn-gold-action {
  background: rgba(212, 175, 55, 0.12) !important;
  border: 1.5px solid #D4AF37 !important;
  color: #FBBF24 !important;
  font-weight: 700 !important;
  transition: all 0.25s ease !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.btn-gold-action:hover {
  background: #D4AF37 !important;
  border-color: #D4AF37 !important;
  color: #070D18 !important;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.4) !important;
  transform: translateY(-1px) !important;
}

/* Body & secondary text */
body:not(.admin-login) .text-secondary,
body:not(.admin-login) .text-muted {
  color: #94A3B8 !important;
}

/* Sub-containers inside cards */
body:not(.admin-login) .p-3.rounded-3.bg-light.border,
body:not(.admin-login) .p-3.bg-light.rounded-3.border,
body:not(.admin-login) .p-4.bg-light.rounded-3.border,
body:not(.admin-login) .border.rounded-4.p-4.bg-light,
.singawa-exec-subcard {
  background: rgba(6, 13, 23, 0.70) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  color: #CBD5E1 !important;
}

/* List group & border adjustments in dark theme */
body:not(.admin-login) .list-group-item {
  background-color: transparent !important;
  color: #CBD5E1 !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

body:not(.admin-login) .border-bottom,
body:not(.admin-login) .border-top {
  border-color: rgba(255, 255, 255, 0.08) !important;
}

/* Form inputs on public pages (Dark Executive Style with crisp readability) */
body:not(.admin-login) .form-control:not(.admin-input),
body:not(.admin-login) .form-select:not(.admin-select) {
  background-color: #FFFFFF;
  color: #0F172A;
  border: 1px solid #CBD5E1;
}

body:not(.admin-login) .form-control:focus,
body:not(.admin-login) .form-select:focus {
  border-color: #0088CC;
  box-shadow: 0 0 0 2px rgba(0, 136, 204, 0.25);
}

/* Accordion in dark theme (FAQ etc.) */
.accordion-item {
  background-color: rgba(10, 25, 47, 0.75) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #CBD5E1 !important;
}

.accordion-button {
  background-color: rgba(10, 25, 47, 0.90) !important;
  color: #FFFFFF !important;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(0, 86, 179, 0.25) !important;
  color: #38BDF8 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.accordion-body {
  color: #94A3B8 !important;
}

/* Service-specific Glass Accents */
.singawa-glass-consulting {
  border: 1px solid rgba(0, 114, 206, 0.3) !important;
}
.singawa-glass-consulting:hover {
  border-color: rgba(0, 114, 206, 0.7) !important;
  box-shadow: 0 12px 35px rgba(0, 114, 206, 0.22) !important;
}

.singawa-glass-outsourcing {
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
}
.singawa-glass-outsourcing:hover {
  border-color: rgba(212, 175, 55, 0.7) !important;
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.22) !important;
}

.singawa-glass-recruitment {
  border: 1px solid rgba(199, 15, 19, 0.3) !important;
}
.singawa-glass-recruitment:hover {
  border-color: rgba(199, 15, 19, 0.7) !important;
  box-shadow: 0 12px 35px rgba(199, 15, 19, 0.25) !important;
}

/* Tables in Dark Executive Theme */
body:not(.admin-login) .table {
  color: #CBD5E1 !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  background-color: transparent !important;
}
body:not(.admin-login) .table th,
body:not(.admin-login) .table td {
  border-color: rgba(255, 255, 255, 0.1) !important;
  background-color: transparent !important;
  color: #CBD5E1 !important;
}
body:not(.admin-login) .table thead.table-light th {
  background-color: rgba(15, 23, 42, 0.85) !important;
  color: #F8FAFC !important;
  border-bottom: 2px solid rgba(212, 175, 55, 0.4) !important;
}
body:not(.admin-login) .table tr:hover td {
  background-color: rgba(255, 255, 255, 0.03) !important;
}

/* ==========================================================
   Contact Page - White & Gold Executive Harmony
   ========================================================== */
/* ==========================================================
   Inner Pages - White & Gold Executive Architecture
   ========================================================== */
.singawa-white-section,
.contact-white-section {
  background-color: #FFFFFF !important;
  color: #0F172A;
}

.singawa-white-section .card,
.singawa-white-card,
.contact-white-card {
  background: #FFFFFF !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 1.5px solid #D4AF37 !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04) !important;
  color: #334155 !important;
  transition: all 0.25s ease !important;
}

.singawa-white-section .card:hover,
.singawa-white-card:hover,
.contact-white-card:hover {
  border-color: #B88E1C !important;
  box-shadow: 0 14px 35px rgba(212, 175, 55, 0.20), 0 4px 12px rgba(0, 0, 0, 0.06) !important;
}

.singawa-white-section h1,
.singawa-white-section h2,
.singawa-white-section h3,
.singawa-white-section h4,
.singawa-white-section h5,
.singawa-white-section h6,
.singawa-white-section .card h1,
.singawa-white-section .card h2,
.singawa-white-section .card h3,
.singawa-white-section .card h4,
.singawa-white-section .card h5,
.singawa-white-section .card h6,
.singawa-white-card h1,
.singawa-white-card h2,
.singawa-white-card h3,
.singawa-white-card h4,
.singawa-white-card h5,
.singawa-white-card h6,
.contact-white-section h1,
.contact-white-section h2,
.contact-white-section h3,
.contact-white-section h4,
.contact-white-section h5,
.contact-white-section h6,
.contact-white-card h1,
.contact-white-card h2,
.contact-white-card h3,
.contact-white-card h4,
.contact-white-card h5,
.contact-white-card h6 {
  color: #0F172A !important;
  text-shadow: none !important;
}

.singawa-white-section p,
.singawa-white-section .text-secondary {
  color: #475569 !important;
}

.singawa-white-section .text-muted {
  color: #64748B !important;
}

.singawa-white-section .text-white:not(.badge):not(.btn):not(.company-profile-header-banner):not(.company-profile-header-banner *) {
  color: #0F172A !important;
}

.singawa-white-section .singawa-exec-subcard,
.singawa-white-section .info-gold-item,
.contact-white-card .info-gold-item {
  background: #FCFAF5 !important;
  border: 1px solid rgba(212, 175, 55, 0.40) !important;
  border-radius: 12px !important;
  padding: 12px 14px;
  color: #334155 !important;
  transition: all 0.2s ease;
}

.singawa-white-section .singawa-exec-subcard:hover,
.singawa-white-section .info-gold-item:hover,
.contact-white-card .info-gold-item:hover {
  border-color: #D4AF37 !important;
  background: #FAF6ED !important;
  transform: translateY(-1px);
}

.singawa-white-section .singawa-exec-subcard .text-white {
  color: #0F172A !important;
}

.singawa-white-section .division-gold-btn,
.contact-white-card .division-gold-btn {
  background: #FFFFFF !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  border-radius: 10px;
  padding: 10px 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
}

.singawa-white-section .division-gold-btn:hover,
.contact-white-card .division-gold-btn:hover {
  background: #FCFAF5 !important;
  border-color: #D4AF37 !important;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
  transform: translateY(-1px);
}

.singawa-white-section .table {
  color: #0F172A !important;
  border-color: #E2E8F0 !important;
  background-color: #FFFFFF !important;
}

.singawa-white-section .table th,
.singawa-white-section .table td {
  color: #334155 !important;
  border-color: #E2E8F0 !important;
  background-color: transparent !important;
}

.singawa-white-section .table thead th,
.singawa-white-section .table thead.table-light th {
  background-color: #F8FAFC !important;
  color: #0F172A !important;
  border-bottom: 2px solid #D4AF37 !important;
}

.singawa-white-section .table tr:hover td {
  background-color: #F8FAFC !important;
}

.singawa-white-section .form-control,
.singawa-white-section .form-select,
.contact-white-card .form-control,
.contact-white-card .form-select {
  background-color: #FAFAFA !important;
  border: 1.5px solid #CBD5E1 !important;
  color: #0F172A !important;
  border-radius: 8px !important;
}

.singawa-white-section .form-control:focus,
.singawa-white-section .form-select:focus,
.contact-white-card .form-control:focus,
.contact-white-card .form-select:focus {
  background-color: #FFFFFF !important;
  border-color: #D4AF37 !important;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.22) !important;
  color: #0F172A !important;
}

.singawa-white-section .accordion-item {
  background-color: #FFFFFF !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  color: #334155 !important;
  border-radius: 12px !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.singawa-white-section .accordion-button {
  background-color: #FAF6ED !important;
  color: #0F172A !important;
  font-weight: 700;
}

.singawa-white-section .accordion-button:not(.collapsed) {
  background-color: #F3ECE0 !important;
  color: #B88E1C !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3) !important;
}

.btn-gold-submit,
.singawa-white-section .btn-gold-submit,
.contact-white-card .btn-gold-submit {
  background: #D4AF37 !important;
  color: #0A111E !important;
  font-weight: 800;
  border: 1px solid #C59B27;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.btn-gold-submit:hover,
.singawa-white-section .btn-gold-submit:hover,
.contact-white-card .btn-gold-submit:hover {
  background: #C59B27 !important;
  color: #000000 !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
}

/* ==========================================================
   STRICT INNER PAGE HEADER & CONTENT UNIFORMITY (CONTACT BENCHMARK)
   ========================================================== */
.jac-page-header {
  padding: 28px 0 24px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Containers follow standard Bootstrap container width to align with Section 1 Hero */

.jac-page-header .jac-tag,
.jac-page-header .btn,
.jac-page-header .badge {
  display: none !important;
}

/* ==========================================================
   SINGAWA CONSULTING - WHITE & GOLD THEME WITH IMAGERY & GLASS EFFECT
   ========================================================== */
.consulting-section {
  background: #FFFFFF !important;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}

/* Executive Overview Showcase Card */
.consulting-overview-card {
  position: relative;
  border-radius: 16px;
  background: #FFFFFF !important;
  border: 1.5px solid #D4AF37 !important;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04) !important;
  overflow: hidden;
  padding: 36px;
  transition: all 0.3s ease;
}

.consulting-overview-card:hover {
  border-color: #B88E1C !important;
  box-shadow: 0 14px 35px rgba(212, 175, 55, 0.20), 0 4px 12px rgba(0, 0, 0, 0.06) !important;
}

.consulting-overview-img-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  min-height: 240px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
  border: 1.5px solid #D4AF37;
}

.consulting-overview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92);
  transition: transform 0.6s ease;
}

.consulting-overview-card:hover .consulting-overview-img {
  transform: scale(1.04);
}

.consulting-overview-img-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #D4AF37 !important;
  border-radius: 8px;
  padding: 10px 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

/* 4 Capabilities Cards with Image Header & Glass Effect */
.consulting-white-card {
  position: relative;
  border-radius: 16px !important;
  overflow: hidden;
  background: #FFFFFF !important;
  border: 1.5px solid #D4AF37 !important;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04) !important;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease !important;
}

.consulting-white-card:hover {
  transform: translateY(-4px);
  border-color: #B88E1C !important;
  box-shadow: 0 16px 36px rgba(212, 175, 55, 0.22), 0 6px 16px rgba(0, 0, 0, 0.08) !important;
}

.consulting-card-img-wrap {
  position: relative;
  height: 175px;
  overflow: hidden;
  border-bottom: 1.5px solid rgba(212, 175, 55, 0.3);
}

.consulting-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.90);
}

.consulting-white-card:hover .consulting-card-img {
  transform: scale(1.06);
}

.consulting-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.10) 0%, rgba(15, 23, 42, 0.35) 100%);
}

.consulting-card-glass-pill {
  position: absolute;
  bottom: 12px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.90) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #B88E1C !important;
  border: 1px solid #D4AF37 !important;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.consulting-card-body-content {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.consulting-card-title-white {
  color: #0F172A !important;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}

.consulting-card-title-white .en-sub {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #B88E1C !important;
  margin-top: 4px;
}

.consulting-card-text-white {
  color: #334155 !important;
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 0;
  flex-grow: 1;
}

/* Reassurance Closing Card on White Canvas */
.consulting-reassurance-white-card {
  position: relative;
  border-radius: 16px !important;
  overflow: hidden;
  border: 1.5px solid #D4AF37 !important;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15), 0 2px 8px rgba(0, 0, 0, 0.04) !important;
  background: #FAF6ED !important;
  padding: 45px 30px;
}

.consulting-reassurance-white-card .reassurance-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  filter: grayscale(100%);
}

.consulting-reassurance-white-card .reassurance-glass-content {
  position: relative;
  z-index: 2;
}

/* Custom Utility Helpers for Fractional Spacing */
.gap-2\.5 {
  gap: 0.75rem !important;
}
.px-2\.5 {
  padding-left: 0.85rem !important;
  padding-right: 0.85rem !important;
}
.py-1\.5 {
  padding-top: 0.45rem !important;
  padding-bottom: 0.45rem !important;
}

/* Print Optimization for Company Profile & Documents */
@media print {
  .no-print,
  .jac-navbar,
  .jac-page-header,
  footer,
  .back-to-top-btn,
  .whatsapp-floating-btn,
  .scroll-progress-bar {
    display: none !important;
  }
  body {
    background: #FFFFFF !important;
    color: #000000 !important;
  }
  .singawa-white-section {
    padding: 0 !important;
  }
  .card {
    box-shadow: none !important;
    page-break-inside: avoid;
  }
}

/* ==========================================================
   PORTAL NARRATIVE TEXT JUSTIFICATION & ELEGANT TYPOGRAPHY
   Standardized for High-End Corporate Publications & Editorial Look
   ========================================================== */
body:not(.admin-body) p:not(.text-center):not(.text-center *):not(.text-end):not(.text-end *):not(.btn *):not(.alert *):not(.modal *),
body:not(.admin-body) .lead:not(.text-center),
body:not(.admin-body) .jac-page-lead:not(.text-center),
body:not(.admin-body) .jac-hero-lead-white,
body:not(.admin-body) .jac-brand-card-desc,
body:not(.admin-body) .consulting-card-text-white,
body:not(.admin-body) .singawa-white-section p:not(.text-center):not(.text-center *),
body:not(.admin-body) .contact-white-section p:not(.text-center):not(.text-center *),
body:not(.admin-body) .card-body p:not(.text-center):not(.text-center *),
body:not(.admin-body) .card p:not(.text-center):not(.text-center *),
body:not(.admin-body) .article-content,
body:not(.admin-body) .article-content p,
body:not(.admin-body) .article-content li,
body:not(.admin-body) .legal-content,
body:not(.admin-body) .legal-content p,
body:not(.admin-body) .legal-content li,
body:not(.admin-body) .news-excerpt,
body:not(.admin-body) .footer-about-text,
body:not(.admin-body) .info-gold-item p,
body:not(.admin-body) .text-justify-portal {
  text-align: justify !important;
  text-justify: inter-word !important;
  text-align-last: left !important;
  hyphens: auto;
  -webkit-hyphens: auto;
  word-break: normal;
  overflow-wrap: break-word;
}

/* Explicit preservation for centered elements */
.text-center,
.text-center p,
.text-center > p,
.text-center span,
.section-subtitle,
.section-header-centered p,
.max-w-750.text-center p,
.text-center.max-w-750 p,
.text-center.max-w-600 p,
.max-w-600.text-center p,
.footer-bottom-text {
  text-align: center !important;
  text-align-last: center !important;
}

.text-end,
.text-end p {
  text-align: right !important;
  text-align-last: right !important;
}

.text-start,
.text-start p {
  text-align: left !important;
  text-align-last: left !important;
}
