/* ════════════════════════════════
   RESET & VARIABLES
════════════════════════════════ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

:root {
  --orange: #C9A84C;
  --orange-light: #E0C06A;
  --navy: #0B2D5E;
  --navy-2: #0D3570;
  --navy-3: #1A4A8A;
  --navy-light: #E8EFF9;
  --gold: #C9A84C;
  --gold-light: #E0C06A;
  --gold-pale: #FBF5E6;
  --white: #FFFFFF;
  --off-white: #F7F8FC;
  --text: #1A1E2E;
  --text-mid: #4A5168;
  --text-muted: #8890A8;
  --border: #DDE2EE;
  --shadow: 0 4px 24px rgba(11, 45, 94, 0.10);
  --shadow-md: 0 8px 40px rgba(11, 45, 94, 0.14);
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--white);
  color: var(--text);
  font-family: 'Sora', sans-serif;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6
}

/* ════════════════════════════════
   TOPBAR
════════════════════════════════ */

/* ── TOPBAR ── */
.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  padding: 0.45rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: 0.03em
}

.topbar a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none
}

.topbar a:hover {
  color: #fff
}

.topbar-right {
  display: flex;
  gap: 2rem
}

/* ── NAVBAR ── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow)
}

.nav-inner {
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none
}

.nav-logo-mark {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Merriweather', serif;
  font-weight: 900;
  color: #fff;
  font-size: 18px;
  letter-spacing: -1px
}

.nav-logo-text {
  display: flex;
  flex-direction: column
}

.nav-logo-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
  line-height: 1.2
}

.nav-logo-sub {
  font-size: 0.62rem;
  color: var(--orange);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none
}

.nav-links>li {
  position: relative
}

.nav-links>li>a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 1.1rem;
  height: 70px;
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 3px solid transparent;
  transition: all 0.2s
}

.nav-links>li>a:hover,
.nav-links>li>a.active {
  color: var(--navy);
  border-bottom-color: var(--orange)
}

.nav-links>li>a .arrow {
  font-size: 0.6rem;
  transition: transform 0.2s
}

.nav-links>li:hover>a .arrow {
  transform: rotate(180deg)
}

/* Dropdowns */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  min-width: max-content;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s;
  z-index: 300
}

.nav-links>li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.dropdown a {
  display: block;
  padding: 0.65rem 1.2rem;
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 400;
  white-space: nowrap;
  border-bottom: 1px solid var(--border);
  transition: all 0.2s
}

.dropdown a:last-child {
  border-bottom: none
}

.dropdown a:hover {
  background: var(--off-white);
  color: var(--navy);
  padding-left: 1.5rem
}

.nav-cta {
  background: var(--orange);
  color: var(--navy);
  padding: 0.55rem 1.4rem;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s;
  white-space: nowrap
}

.nav-cta:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 190;
  overflow-y: auto;
  padding: 1rem 0;
  border-top: 1px solid var(--border)
}

.mobile-menu.open {
  display: block
}

.mob-link {
  display: block;
  padding: 0.9rem 2rem;
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border)
}

.mob-link:hover,
.mob-link.active {
  color: var(--navy);
  background: var(--navy-light)
}

.mob-sub {
  padding-left: 3rem;
  font-size: 0.82rem;
  background: var(--off-white)
}

.mob-cta {

  margin: 1.5rem 2rem;
  display: block;
  background: var(--gold);
  color: var(--navy);
  padding: 0.85rem;
  border-radius: 6px;
  text-align: center;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none
}

/* ════════════════════════════════
   PAGE HERO (BREADCRUMB STYLE)
════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 60%, var(--navy-3) 100%);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden
}

.page-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(0deg, #fff 0, #fff 1px, transparent 1px, transparent 60px), repeating-linear-gradient(90deg, #fff 0, #fff 1px, transparent 1px, transparent 60px)
}

.page-hero-glow {
  position: absolute;
  right: -100px;
  top: -100px;
  max-width: 500px; width: 100%;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 65%)
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.2rem;
  flex-wrap: wrap
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color .2s
}

.breadcrumb a:hover {
  color: var(--gold-light)
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.3)
}

.breadcrumb-current {
  color: var(--gold-light)
}

.page-hero h1 {
  font-family: 'Merriweather', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem
}

.page-hero h1 em {
  font-style: normal;
  color: var(--gold-light)
}

.page-hero-sub {
  font-size: clamp(0.88rem, 2vw, 1rem);
  color: rgba(255, 255, 255, 0.68);
  max-width: 580px;
  line-height: 1.85;
  font-weight: 300
}

.page-hero-stats {
  display: flex;
  gap: 0;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap
}

.phs-item {
  flex: 1;
  min-width: 110px;
  padding: 0 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1)
}

.phs-item:first-child {
  padding-left: 0
}

.phs-item:last-child {
  border-right: none
}

.phs-num {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 900;
  color: var(--gold-light)
}

.phs-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 3px
}

/* ════════════════════════════════
   SECTION BASE
════════════════════════════════ */
section {
  padding: 5rem 2rem
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto
}

.section-tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.8rem
}

.section-tag::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  flex-shrink: 0
}

.section-title {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 900;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 0.8rem
}

.section-sub {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 640px
}

/* ════════════════════════════════
   WHO WE ARE
════════════════════════════════ */
.who {
  background: var(--white)
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center
}

.who-visual {
  position: relative
}

.who-img {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  border-radius: 14px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden
}

.who-img-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.025) 0, rgba(255, 255, 255, 0.025) 1px, transparent 1px, transparent 22px)
}

.who-img-logo {
  font-family: 'Merriweather', serif;
  font-size: 6rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  user-select: none;
  letter-spacing: -4px
}

.who-img-pill {
  position: absolute;
  top: 1.2rem;
  right: -0.8rem;
  background: var(--gold);
  color: var(--navy);
  padding: 0.45rem 1rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(201, 168, 76, 0.4)
}

.who-stats-card {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 10px;
  padding: 1.1rem 1.3rem;
  box-shadow: 0 8px 30px rgba(11, 45, 94, 0.2);
  display: flex;
  justify-content: space-around
}

.wsc-item {
  text-align: center
}

.wsc-num {
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy)
}

.wsc-label {
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 2px
}

.who-text p {
  color: var(--text-mid);
  font-size: 0.93rem;
  line-height: 1.9;
  margin-bottom: 1rem
}

.who-text p:last-child {
  margin-bottom: 0
}

.highlight-box {
  background: var(--navy-light);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 1.1rem 1.4rem;
  margin-top: 1.8rem
}

.highlight-box p {
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.75;
  margin: 0
}

/* ════════════════════════════════
   TIMELINE / JOURNEY
════════════════════════════════ */
.journey {
  background: var(--off-white)
}

.journey-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start
}

.timeline {
  position: relative;
  padding-left: 2rem
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(201, 168, 76, 0.1))
}

.tl-item {
  position: relative;
  padding: 0 0 2.5rem 1.8rem
}

.tl-item:last-child {
  padding-bottom: 0
}

.tl-dot {
  position: absolute;
  left: -2.4rem;
  top: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold)
}

.tl-year {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.3rem
}

.tl-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem
}

.tl-text {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.75
}

.journey-values {
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.val-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all .25s
}

.val-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateX(4px)
}

.val-icon {
  width: 42px;
  height: 42px;
  background: var(--navy-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0
}

.val-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem
}

.val-text {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.7
}

/* ════════════════════════════════
   GROUP COMPANIES — PREMIUM CARDS
════════════════════════════════ */
.companies {
  background: var(--white)
}

.companies-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3.5rem;
  flex-wrap: wrap
}

/* Grid: 3 columns desktop, auto on mobile */
.co-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem
}

.co-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  transition: all .3s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  position: relative
}

.co-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 45, 94, 0.2)
}

.co-card-top {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  padding: 1.5rem;
  position: relative;
  overflow: hidden
}

.co-card-top-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 16px)
}

.co-card-num {
  font-family: 'Merriweather', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  position: absolute;
  top: 0.8rem;
  right: 1.2rem;
  line-height: 1
}

.co-card-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 0.28rem 0.75rem;
  border-radius: 20px;
  font-size: 0.64rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 1
}

.co-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  position: relative;
  z-index: 1
}

.co-card-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column
}

.co-card-desc {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.8;
  flex: 1
}

.co-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border)
}

.co-card-jv {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase
}

.co-card-arrow {
  width: 28px;
  height: 28px;
  background: var(--navy-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--navy);
  transition: all .3s;
  flex-shrink: 0
}

.co-card:hover .co-card-arrow {
  background: var(--gold);
  color: var(--navy)
}

/* Featured card (Dawnsun Exim — slightly bigger) */
.co-card.featured {
  grid-column: span 1;
  border-color: rgba(201, 168, 76, 0.3)
}

.co-card.featured .co-card-top {
  background: linear-gradient(135deg, #091f3f 0%, var(--navy-2) 100%)
}

.span-all {
  grid-column: 1 / -1;
}

/* ════════════════════════════════
   POLICIES SECTION
════════════════════════════════ */
.policies {
  background: var(--off-white)
}

.policies-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  margin-top: 3rem
}

.pol-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  transition: all .25s;
  text-decoration: none;
  display: block
}

.pol-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow);
  transform: translateY(-3px)
}

.pol-icon {
  width: 48px;
  height: 48px;
  background: var(--navy-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 0.9rem
}

.pol-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem
}

.pol-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6
}

/* ════════════════════════════════
   CERTIFICATIONS
════════════════════════════════ */
.certs {
  background: var(--white);
  text-align: center
}

.certs-row {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap
}

.cert-badge {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all .25s
}

.cert-badge:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow);
  transform: translateY(-2px)
}

.cert-icon {
  width: 34px;
  height: 34px;
  background: var(--navy-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0
}

.cert-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left
}

.cert-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-align: left;
  margin-top: 1px
}

/* ════════════════════════════════
   CTA BAND
════════════════════════════════ */

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  padding: 0.85rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  transition: all .3s;
  display: inline-block
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4)
}

.btn-outline-w {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.88rem;
  transition: all .3s;
  display: inline-block
}

.btn-outline-w:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08)
}

/* ════════════════════════════════
/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08)
}

.footer-main {
  padding: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem
}

.footer-brand-name {
  font-family: 'Merriweather', serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.6rem
}

.footer-brand-sub {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--orange-light);
  margin-bottom: 1rem;
  font-weight: 600
}

.footer-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.85;
  max-width: 270px
}

.footer-col-title {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--orange-light);
  margin-bottom: 1.2rem;
  font-weight: 600
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
  font-weight: 300
}

.footer-links a:hover {
  color: #fff
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 1.2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.03em
}

.footer-socials {
  display: flex;
  gap: 0.7rem
}

.social-link {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 600;
  transition: all 0.2s
}

.social-link:hover {
  border-color: var(--orange);
  color: var(--orange-light);
  background: rgba(232, 96, 10, 0.1)
}

.soc-link {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 700;
  transition: all .2s
}

.soc-link:hover {
  border-color: var(--gold);
  color: var(--gold-light)
}

/* ════════════════════════════════
   RESPONSIVE — MOBILE
════════════════════════════════ */
@media(max-width:900px) {

  .nav-links,
  .nav-cta,
  .nav-cta-desktop {
    display: none
  }

  .hamburger {
    display: flex
  }

  .topbar {
    font-size: 0.68rem;
    padding: 0.4rem 1rem
  }

  .topbar-right {
    gap: 1rem
  }

  .page-hero {
    padding: 3rem 1.2rem
  }

  .page-hero-stats {
    gap: 0.5rem
  }

  .phs-item {
    flex: 1;
    min-width: 80px;
    padding: 0 0.8rem
  }

  section {
    padding: 3.5rem 1.2rem
  }

  .who-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem
  }

  .who-img {
    height: 260px
  }

  .journey-grid {
    grid-template-columns: 1fr;
    gap: 2rem
  }

  .co-grid {
    grid-template-columns: 1fr !important;
    gap: 1.2rem
  }

  .policies-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem
  }

  .companies-intro {
    grid-template-columns: 1fr;
    gap: 1rem
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem
  }

  .certs-row {
    gap: 0.8rem
  }

  .cert-badge {
    padding: 0.8rem 1rem
  }
}

@media(max-width:560px) {
  .nav-inner {
    padding: 0 1rem;
    height: 60px
  }

  .mobile-menu {
    top: 92px
  }

  .nav-logo img {
    height: 36px
  }

  .nav-logo-name {
    font-size: 0.85rem
  }

  .page-hero h1 {
    font-size: 1.8rem
  }

  .page-hero-stats {
    flex-direction: column;
    gap: 1rem
  }

  .phs-item {
    border-right: none;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0.8rem
  }

  .phs-item:last-child {
    border-bottom: none;
    padding-bottom: 0
  }

  .section-title {
    font-size: 1.7rem
  }

  .policies-grid {
    grid-template-columns: 1fr
  }

  .btn-gold,
  .btn-outline-w {
    width: 100%;
    text-align: center
  }
}

/* ════════════════════════════════
   NEW ORG CHART
════════════════════════════════ */
.org-wrap-new {
  background: #f8f9fa;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3rem 1rem;
  margin-top: 2.5rem;
  overflow-x: auto;
  font-family: Arial, sans-serif;
}

.oc-chart {
  width: 100%; max-width: 1100px;
  margin: 0 auto;
  color: #333;
}

.oc-node {
  border: 1px solid #777;
  background: #fff;
  padding: 8px 10px;
  text-align: center;
  font-size: 11px;
  font-weight: bold;
  width: 180px;
  margin: 0 auto;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
}

.oc-node.root-node {
  width: 220px;
  padding: 15px;
  font-size: 14px;
  color: #000;
  border: 1px solid #444;
}

.oc-sub-item {
  border: 1px solid #999;
  background: #fff;
  padding: 6px 8px;
  text-align: center;
  font-size: 10px;
  width: 150px;
  position: relative;
  z-index: 2;
  line-height: 1.3;
}

.oc-sub-row {
  display: flex;
  width: 100%;
  margin-top: 15px;
  z-index: 2;
}

@media(max-width:700px) {
  .org-children {
    grid-template-columns: 1fr
  }

  .org-hline {
    width: 2px;
    height: 20px
  }

  .org-hline::before,
  .org-hline::after {
    display: none
  }

  .org-wrap {
    padding: 2rem 1rem
  }

  .org-root-card {
    min-width: unset;
    padding: 1.1rem 1.4rem
  }

  .org-legend {
    gap: 1rem
  }
}

.mob-link-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.mob-link-flex .mob-link {
  border-bottom: none;
  flex: 1;
}

.mob-link {
  text-transform: uppercase;
}

.mob-sub {
  text-transform: none;
}

.mob-toggle {
  padding: 0.9rem 2rem;
  color: var(--text-mid);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.mob-toggle-text {
  cursor: pointer;
  text-transform: uppercase;
}

.mob-dropdown {
  display: none;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}

.mob-item.open>.mob-dropdown {
  display: block;
  border-bottom: none;
}

.mob-item.open>.mob-link-flex>.mob-toggle {
  transform: rotate(180deg);
  color: var(--navy);
}

.mob-item.open>.mob-link-flex>.mob-toggle-text {
  color: var(--navy);
}

.mob-dropdown .mob-link {
  border-bottom: none;
}

@media (max-width: 1150px) {

  .nav-links,
  .nav-cta,
  .nav-cta-desktop {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }
}

/* Nested Dropdown */
.sub-dropdown-wrap {
  position: relative;
}

.sub-dropdown {
  position: absolute;
  left: 100%;
  top: 0;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  z-index: 101;
}

.sub-dropdown-wrap:hover .sub-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.right-arrow {
  float: right;
}

.mob-sub-sub {
  padding-left: 40px !important;
  text-transform: none;
}

.sub-dropdown.show {
  display: block !important;
}

/* Force Title Case for mobile sub-menus */
.mob-sub {
  text-transform: none !important;
}

.mob-sub-sub {
  text-transform: none !important;
}

/* Hide mobile menu on desktop screens even if open class is present */
@media (min-width: 1151px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Update font sizes for mobile sub and sub-sub links */
.mob-sub {
  font-size: 0.92rem !important;
  font-weight: 600 !important;
}

.mob-sub-sub {
  font-size: 0.82rem !important;
  font-weight: 400 !important;
}

/* Update left padding for mobile sub-sub links to indent them properly */
.mob-sub-sub {
  padding-left: 4.5rem !important;
}

/* Global Image Responsive Rule injected by AI */
img {
  max-width: 100%;
  height: auto;
}

/* CONTACT PAGE STYLES */
.contact-page-wrap {
  padding: 5rem 5%;
  background: var(--off-white);
  width: 100%;
  box-sizing: border-box;
}

.contact-page-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  box-sizing: border-box;
}

/* FORM COLUMN */
.contact-form-col {
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  width: 100%;
  box-sizing: border-box;
}

.form-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-sub {
  color: var(--text-mid);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.c-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.input-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--off-white);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-dark);
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(232, 96, 10, 0.1);
}

.submit-btn {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 1.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  width: 100%;
}

.submit-btn:hover {
  background: #b89639;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 96, 10, 0.3);
}

/* INFO COLUMN */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

.info-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.03);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

.ic-icon {
  width: 50px;
  height: 50px;
  background: rgba(11, 45, 94, 0.05); /* very light navy */
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.ic-details h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.ic-details p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.5;
}

.ic-details a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  margin-top: 1rem;
  flex-grow: 1;
  min-height: 250px;
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .contact-page-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-page-wrap {
    padding: 4rem 5%;
  }
}

@media (max-width: 768px) {
  .contact-form-col {
    padding: 2rem 1.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .info-card {
    padding: 1.2rem;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .form-title {
    font-size: 1.8rem;
  }
  .contact-page-wrap {
    padding: 3rem 5%;
  }
  .submit-btn {
    padding: 1rem;
    font-size: 1rem;
  }
}

/* ════════════════════════════════
   FORM VALIDATION HIGHLIGHTS
════════════════════════════════ */
.c-form input:not(:placeholder-shown):invalid,
.c-form textarea:not(:placeholder-shown):invalid {
  border-color: #d32f2f !important;
  background-color: #fffafa !important;
  box-shadow: 0 0 0 2px rgba(211,47,47,0.1) !important;
}

.c-form input:not(:placeholder-shown):valid,
.c-form textarea:not(:placeholder-shown):valid {
  border-color: #388e3c !important;
  background-color: #f1f8e9 !important;
}
