/* ==============================================
   DANCOMECH HOLDINGS BERHAD — SHARED STYLESHEET
   style.css
   ============================================== */

/* ------------------------------------------
   1. GOOGLE FONTS IMPORT
   ------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800&family=Barlow:wght@300;400;500;600;700&display=swap');

/* ------------------------------------------
   2. CSS CUSTOM PROPERTIES (DESIGN SYSTEM)
   ------------------------------------------ */
:root {
  /* ── LIGHT CORPORATE PALETTE (Dancomech Brand) ── */
  --abyss:       #1B3A6B;   /* brand navy-blue (logo colour) */
  --deep-steel:  #F0F4FA;   /* light card / section bg */
  --industrial:  #2E5FA8;   /* mid brand blue for accents */
  --cyan:        #0073C6;   /* primary interactive blue */
  --cyan-dark:   #005A9E;   /* hover / active state */
  --amber:       #E8A020;   /* warm gold accent */
  --amber-dark:  #C47E10;   /* amber hover */
  --mist-white:  #F7F9FC;   /* page background */
  --silver:      #B0BEC5;
  --text-muted:  #6B7A8D;   /* body copy on light bg */
  --border:      rgba(27, 58, 107, 0.12);
  --card-bg:     #FFFFFF;   /* white cards */

  /* ── LEGACY ALIASES (mapped to new values) ──── */
  --color-navy:       var(--abyss);
  --color-navy-mid:   var(--deep-steel);
  --color-navy-light: var(--industrial);
  --color-white:      #ffffff;
  --color-red:        var(--amber);
  --color-red-dark:   var(--amber-dark);
  --color-red-light:  var(--amber);
  --color-blue:       var(--cyan);
  --color-blue-light: var(--cyan-dark);
  --color-blue-pale:  rgba(0, 115, 198, 0.10);
  --color-grey-100:   var(--mist-white);
  --color-grey-200:   #e8ecf2;
  --color-grey-300:   #d0d7e3;
  --color-grey-400:   #9aa5bb;
  --color-grey-500:   #6b7a99;
  --color-grey-700:   #3a4560;
  --color-grey-900:   #1e2535;
  --color-text:       #1B2940;   /* dark navy text */
  --color-text-light: #44546A;
  --color-text-muted: var(--text-muted);

  /* Typography */
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  /* Font sizes */
  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.25rem;
  --fs-xl:   1.5rem;
  --fs-2xl:  1.875rem;
  --fs-3xl:  2.25rem;
  --fs-4xl:  3rem;
  --fs-5xl:  3.75rem;

  /* Spacing scale */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Borders & Radius */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.10), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg:  0 10px 30px rgba(0,0,0,0.12), 0 4px 8px rgba(0,0,0,0.08);
  --shadow-xl:  0 20px 50px rgba(0,0,0,0.18);
  --shadow-card: 0 2px 8px rgba(13,31,45,0.25);

  /* Transitions */
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;
  --transition-slow:   400ms ease;

  /* Layout */
  --navbar-height: 85px;
  --container-max: 1200px;
  --container-pad: 1.5rem;
  --section-py:    5rem;
}

/* ------------------------------------------
   3. CSS RESET & BASE
   ------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--color-text);
  background-color: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover { color: var(--color-red); }

ul, ol { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

p { line-height: 1.7; color: var(--color-text-light); }

/* ------------------------------------------
   4. LAYOUT UTILITIES
   ------------------------------------------ */
.container {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.section { padding-top: var(--section-py); padding-bottom: var(--section-py); background-color: #FFFFFF; }
.section--grey { background-color: #F0F4FA; }
.section--navy { background-color: var(--abyss); color: var(--color-white); }
.section--navy h1,
.section--navy h3,
.section--navy h4 { color: var(--color-white); }
.section--navy h2 { color: var(--cyan); }
.section--navy p { color: rgba(255,255,255,0.75); }

.grid   { display: grid; gap: var(--space-6); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap    { flex-wrap: wrap; }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

.text-center { text-align: center; }
.mt-4  { margin-top: var(--space-4); }
.mt-8  { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }
.mb-4  { margin-bottom: var(--space-4); }
.mb-8  { margin-bottom: var(--space-8); }

/* ------------------------------------------
   5. TYPOGRAPHY UTILITIES
   ------------------------------------------ */
.section-title {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-4);
  letter-spacing: 0.5px;
}
.section-title span { color: var(--color-red); }

.section-subtitle {
  font-size: var(--fs-md);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto var(--space-12);
  line-height: 1.7;
}

.section-header { text-align: center; margin-bottom: var(--space-12); }
.section-header .section-title { margin-bottom: var(--space-3); }

.overline {
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-red);
  display: block;
  margin-bottom: var(--space-2);
}

/* ------------------------------------------
   6. BADGE
   ------------------------------------------ */
.badge {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.badge--red   { background: var(--amber);              color: #3D2800; }
.badge--blue  { background: var(--color-blue);       color: var(--color-white); }
.badge--navy  { background: var(--color-navy);       color: var(--color-white); }
.badge--grey  { background: var(--color-grey-200);   color: var(--color-grey-700); }
.badge--green { background: #2e7d32;                 color: var(--color-white); }

/* ------------------------------------------
   7. BUTTONS
   ------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: var(--fs-md);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--cyan); color: var(--color-white); border-color: var(--cyan); }
.btn-primary:hover { background: var(--cyan-dark); border-color: var(--cyan-dark); color: var(--color-white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--cyan); border-color: var(--cyan); }
.btn-outline:hover { background: var(--cyan); color: var(--color-white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-red, .btn-amber { background: var(--amber); color: #3D2800; border-color: var(--amber); }
.btn-red:hover, .btn-amber:hover { background: var(--amber-dark); border-color: var(--amber-dark); color: #3D2800; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-navy { background: transparent; color: var(--abyss); border-color: var(--abyss); }
.btn-outline-navy:hover { background: var(--abyss); color: var(--color-white); transform: translateY(-2px); }
.btn-outline-red { background: transparent; color: var(--amber); border-color: var(--amber); }
.btn-outline-red:hover { background: var(--amber); color: #3D2800; transform: translateY(-2px); }
.btn-sm { padding: 0.5rem 1.25rem; font-size: var(--fs-sm); }
.btn-lg { padding: 1rem 2.25rem; font-size: var(--fs-lg); }

/* ------------------------------------------
   8. CARDS
   ------------------------------------------ */
.card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(27,58,107,0.10);
  overflow: hidden;
  border: 1px solid rgba(27,58,107,0.10);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-slow), transform var(--transition-slow), box-shadow var(--transition-base);
}
.card.visible { opacity: 1; transform: translateY(0); }
.card.visible:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(27,58,107,0.15); border-color: var(--cyan); }

.card-body { padding: var(--space-6); }

.card-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--color-grey-200) 0%, var(--color-grey-300) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-grey-400);
  font-size: 3rem;
}

.card-title {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--abyss);
  margin-bottom: var(--space-2);
}

.card-text { color: var(--text-muted); font-size: var(--fs-sm); }

/* Icon cards */
.icon-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  box-shadow: 0 2px 12px rgba(27,58,107,0.10);
  border: 1px solid rgba(27,58,107,0.10);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-slow), transform var(--transition-slow), box-shadow var(--transition-base);
}
.icon-card.visible { opacity: 1; transform: translateY(0); }
.icon-card.visible:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(27,58,107,0.15); border-color: var(--cyan); }

.icon-card .icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-full);
  background: rgba(0,115,198,0.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-5);
  font-size: 1.5rem;
  color: var(--cyan);
}
.icon-card .icon--red   { background: rgba(232,160,32,0.15); color: var(--amber); }
.icon-card .icon--navy  { background: rgba(27,58,107,0.10); color: var(--abyss); }
.icon-card .icon--blue  { background: rgba(0,115,198,0.12); color: var(--cyan); }
.icon-card h3 { font-size: var(--fs-xl); font-weight: 700; margin-bottom: var(--space-3); color: var(--abyss); }
.icon-card p  { font-size: var(--fs-sm); color: var(--text-muted); }

/* ------------------------------------------
   9. PAGE HERO
   ------------------------------------------ */
.page-hero {
  background: linear-gradient(135deg, var(--abyss) 0%, #224376 60%, #30548d 100%);
  color: var(--color-white);
  padding: calc(var(--navbar-height) + 4rem) 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/news/pipe%20images.jpg') center/cover no-repeat;
  opacity: 0.18;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--amber);
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: var(--fs-4xl);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 1px;
  margin-bottom: var(--space-4);
}

/* ------------------------------------------
   10. BREADCRUMB
   ------------------------------------------ */
.breadcrumb {
  display: flex; align-items: center; gap: var(--space-2);
  font-size: var(--fs-sm); color: rgba(255,255,255,0.65); flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--color-white); }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.breadcrumb .current { color: var(--color-white); font-weight: 500; }

/* ------------------------------------------
   11. NAVBAR
   ------------------------------------------ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--navbar-height);
  background: #FFFFFF;
  border-bottom: 3px solid var(--abyss);
  transition: box-shadow var(--transition-base);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(27,58,107,0.18); }

.navbar__inner {
  max-width: var(--container-max);
  margin: 0 auto; padding: 0 var(--container-pad);
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}

.navbar__logo {
  display: flex; align-items: center; flex-shrink: 0; text-decoration: none;
}
.navbar__logo img { height: 60px; width: auto; object-fit: contain; }
.navbar__logo-fallback {
  font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800;
  color: var(--abyss); letter-spacing: 2px; line-height: 1;
}
.navbar__logo-fallback span { color: var(--amber); }

.navbar__links { display: flex; align-items: center; gap: 0.5rem; }
.navbar__links a {
  font-family: var(--font-heading); font-size: var(--fs-base); font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--abyss); padding: 0.5rem 1rem;
  border-radius: var(--radius-sm); transition: all var(--transition-fast); white-space: nowrap;
}
.navbar__links a:hover { color: var(--cyan); background: rgba(0,115,198,0.08); }
.navbar__links a.active { color: #FFFFFF; background: var(--abyss); border-radius: var(--radius-sm); }

.navbar__hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: var(--space-2); background: none; border: none;
}
.navbar__hamburger span {
  display: block; width: 24px; height: 2px; background: var(--abyss);
  border-radius: 2px; transition: all var(--transition-base);
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar__mobile {
  display: none; position: fixed;
  top: var(--navbar-height); left: 0; right: 0;
  background: #FFFFFF;
  border-bottom: 3px solid var(--abyss);
  z-index: 999; padding: var(--space-4) 0;
  box-shadow: 0 8px 24px rgba(27,58,107,0.15);
}
.navbar__mobile.open { display: block; }
.navbar__mobile a {
  display: block;
  font-family: var(--font-heading); font-size: var(--fs-md); font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--abyss); padding: 0.875rem var(--container-pad);
  border-bottom: 1px solid rgba(27,58,107,0.08); transition: all var(--transition-fast);
}
.navbar__mobile a:hover { color: var(--cyan); background: rgba(0,115,198,0.06); padding-left: calc(var(--container-pad) + 0.5rem); }
.navbar__mobile a.active { color: var(--cyan); background: rgba(0,115,198,0.10); }

/* ------------------------------------------
   12. FOOTER
   ------------------------------------------ */
.footer { background: var(--abyss); color: rgba(255,255,255,0.8); padding-top: var(--space-20); }

.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-10); padding-bottom: var(--space-16);
  border-bottom: 1px solid var(--border);
}

.footer__about .footer__logo { display: flex; align-items: center; margin-bottom: var(--space-5); }
.footer__about .footer__logo img { height: 36px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
.footer__logo-text { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; color: var(--color-white); letter-spacing: 2px; }
.footer__logo-text span { color: var(--color-red); }
.footer__about p { font-size: var(--fs-sm); line-height: 1.8; color: rgba(255,255,255,0.65); margin-bottom: var(--space-5); }
.footer__bursa {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: var(--border); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: var(--space-2) var(--space-4);
  font-size: var(--fs-sm); color: rgba(255,255,255,0.8); font-family: var(--font-heading); font-weight: 600;
}

.footer h4 {
  font-family: var(--font-heading); font-size: var(--fs-md); font-weight: 700;
  color: var(--color-white); letter-spacing: 0.5px;
  margin-bottom: var(--space-5); padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--color-red); display: inline-block;
}

.footer__links li { margin-bottom: var(--space-2); }
.footer__links a {
  font-size: var(--fs-sm); color: rgba(255,255,255,0.65);
  transition: all var(--transition-fast);
  display: flex; align-items: center; gap: var(--space-2);
}
.footer__links a:hover { color: var(--cyan); padding-left: var(--space-2); }
.footer__links a i { font-size: 0.625rem; color: var(--color-red); }

.footer__contact li {
  display: flex; gap: var(--space-3); margin-bottom: var(--space-4);
  font-size: var(--fs-sm); color: rgba(255,255,255,0.65); line-height: 1.6;
}
.footer__contact i { color: var(--color-red); font-size: var(--fs-base); margin-top: 2px; flex-shrink: 0; }
.footer__contact a { color: rgba(255,255,255,0.65); }
.footer__contact a:hover { color: var(--color-white); }

.footer-hours-grid {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}
.footer-hours-grid__row {
  display: flex;
  gap: 0;
  white-space: nowrap;
}
.footer-hours-grid__day { font-weight: 600; color: rgba(255,255,255,0.85); }

.footer__bottom { background: rgba(0,0,0,0.25); padding: var(--space-5) 0; }
.footer__bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--space-3);
  font-size: var(--fs-sm); color: rgba(255,255,255,0.5);
}
.footer__bottom a { color: rgba(255,255,255,0.5); }
.footer__bottom a:hover { color: var(--color-white); }

/* ------------------------------------------
   13. HERO SECTION
   ------------------------------------------ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0D1F3C 0%, var(--abyss) 45%, var(--industrial) 100%);
  padding-top: var(--navbar-height);
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('../images/news/pipe%20images.jpg');
  background-size: cover; background-position: center;
  opacity: 0.18; z-index: 0;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,25,55,0.93) 0%, rgba(27,58,107,0.60) 100%);
  z-index: 1;
}
.hero__content { position: relative; z-index: 2; max-width: 800px; }
.hero__overline {
  font-family: var(--font-heading); font-size: var(--fs-sm); font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--color-red-light);
  margin-bottom: var(--space-5); display: flex; align-items: center; gap: var(--space-3);
}
.hero__overline::after { content: ''; display: block; height: 1px; width: 60px; background: var(--color-red-light); }
.hero h1 {
  font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800;
  color: var(--color-white); line-height: 1.1; margin-bottom: var(--space-6); letter-spacing: 0.5px;
}
.hero h1 span { color: var(--color-red-light); }
.hero__sub { font-size: var(--fs-lg); color: rgba(255,255,255,0.80); line-height: 1.7; margin-bottom: var(--space-10); max-width: 620px; }
.hero__actions { display: flex; gap: var(--space-4); flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: var(--space-8); left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: var(--space-2);
  color: rgba(255,255,255,0.4); font-size: var(--fs-xs); font-family: var(--font-heading); letter-spacing: 1px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ------------------------------------------
   14. STATS BAR
   ------------------------------------------ */
.stats-bar { background: var(--abyss); border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); padding: var(--space-8) 0; }
.stats-bar__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); text-align: center; }
.stat-item { padding: var(--space-4); border-right: 1px solid rgba(255,255,255,0.10); }
.stat-item:last-child { border-right: none; }
.stat-item__number { font-family: var(--font-heading); font-size: var(--fs-4xl); font-weight: 800; color: var(--color-white); line-height: 1; margin-bottom: var(--space-2); }
.stat-item__number span { color: var(--amber); }
.stat-item__label { font-size: var(--fs-sm); color: rgba(255,255,255,0.6); font-family: var(--font-heading); font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; }

/* ------------------------------------------
   15. PRINCIPALS GRID
   ------------------------------------------ */
.principals-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--space-4); }
.principal-card {
  background: #FFFFFF; border: 1px solid rgba(27,58,107,0.12);
  border-radius: var(--radius-md); padding: var(--space-6) var(--space-4);
  text-align: center; transition: all var(--transition-base); cursor: default;
  box-shadow: 0 1px 4px rgba(27,58,107,0.08);
}
.principal-card:hover { border-color: var(--cyan); box-shadow: 0 4px 16px rgba(0,115,198,0.15); transform: translateY(-2px); }
.principal-card__name { font-family: var(--font-heading); font-size: var(--fs-lg); font-weight: 800; color: var(--abyss); letter-spacing: 1px; display: block; margin-bottom: var(--space-1); }
.principal-card__country { font-size: var(--fs-xs); color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }

/* ------------------------------------------
   16. NEWS CARDS
   ------------------------------------------ */
.news-card { background: #FFFFFF; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(27,58,107,0.10); box-shadow: 0 2px 12px rgba(27,58,107,0.08); transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base); }
.news-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(27,58,107,0.15); border-color: var(--cyan); }
.news-card__img {
  width: 100%; aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--abyss) 0%, var(--industrial) 100%);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.2); font-size: 3rem;
  position: relative; overflow: hidden;
}
.news-card__img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.news-card__body { padding: var(--space-6); }
.news-card__meta { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-3); }
.news-card__date { font-size: var(--fs-xs); color: var(--text-muted); font-family: var(--font-heading); letter-spacing: 0.5px; }
.news-card__title { font-family: var(--font-heading); font-size: var(--fs-xl); font-weight: 700; color: var(--abyss); margin-bottom: var(--space-3); line-height: 1.3; }
.news-card__excerpt { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.7; margin-bottom: var(--space-5); }
.news-card__link { font-family: var(--font-heading); font-size: var(--fs-sm); font-weight: 600; color: var(--cyan); text-transform: uppercase; letter-spacing: 0.5px; display: inline-flex; align-items: center; gap: var(--space-2); transition: gap var(--transition-fast), color var(--transition-fast); }
.news-card__link:hover { color: var(--amber); gap: var(--space-3); }

/* ------------------------------------------
   17. PRODUCT CARDS
   ------------------------------------------ */
.product-card { background: #FFFFFF; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(27,58,107,0.10); box-shadow: 0 2px 12px rgba(27,58,107,0.08); transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base); display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(27,58,107,0.15); border-color: var(--cyan); }
.product-card__img {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, #F0F4FA 0%, #DDE6F0 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-grey-400); font-size: 3rem; position: relative; overflow: hidden;
}
.product-card__img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.product-card__body { padding: var(--space-5); flex: 1; display: flex; flex-direction: column; }
.product-card__title { font-family: var(--font-heading); font-size: var(--fs-lg); font-weight: 700; color: var(--abyss); margin-bottom: var(--space-2); line-height: 1.3; }
.product-card__spec { font-size: var(--fs-sm); color: var(--text-muted); margin-bottom: var(--space-3); }
.product-card__brand { font-size: var(--fs-xs); color: var(--cyan); font-weight: 600; font-family: var(--font-heading); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: var(--space-4); }
.product-card__footer { margin-top: auto; }

/* ------------------------------------------
   18. PRODUCTS PAGE LAYOUT
   ------------------------------------------ */
.products-layout { display: grid; grid-template-columns: 280px 1fr; gap: var(--space-8); align-items: start; }
.sidebar { position: sticky; top: calc(var(--navbar-height) + var(--space-6)); background: #FFFFFF; border: 1px solid rgba(27,58,107,0.12); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 2px 12px rgba(27,58,107,0.08); }
.sidebar__heading { background: var(--abyss); color: var(--color-white); font-family: var(--font-heading); font-size: var(--fs-md); font-weight: 700; letter-spacing: 0.5px; padding: var(--space-4) var(--space-5); display: flex; align-items: center; gap: var(--space-3); }
.sidebar__section { border-bottom: 1px solid rgba(27,58,107,0.08); }
.sidebar__section-toggle { display: flex; align-items: center; justify-content: space-between; padding: var(--space-4) var(--space-5); font-family: var(--font-heading); font-size: var(--fs-md); font-weight: 700; color: var(--abyss); cursor: pointer; transition: background var(--transition-fast); width: 100%; text-align: left; background: none; border: none; }
.sidebar__section-toggle:hover { background: rgba(0,115,198,0.06); }
.sidebar__section-toggle i { font-size: var(--fs-sm); color: var(--text-muted); transition: transform var(--transition-fast); }
.sidebar__section-toggle.open i { transform: rotate(180deg); }
.sidebar__items { display: none; padding: 0 var(--space-5) var(--space-4); }
.sidebar__items.open { display: block; }
.sidebar__item { display: block; padding: var(--space-2) var(--space-3); font-size: var(--fs-sm); color: var(--text-muted); border-radius: var(--radius-sm); transition: all var(--transition-fast); cursor: pointer; }
.sidebar__item:hover, .sidebar__item.active { background: rgba(0,115,198,0.10); color: var(--cyan); padding-left: var(--space-4); }

.filter-bar { background: #FFFFFF; border: 1px solid rgba(27,58,107,0.10); border-radius: var(--radius-lg); padding: var(--space-5) var(--space-6); margin-bottom: var(--space-8); display: flex; gap: var(--space-4); align-items: flex-end; flex-wrap: wrap; box-shadow: 0 2px 8px rgba(27,58,107,0.06); }
.filter-group { flex: 1; min-width: 180px; }
.filter-group label { display: block; font-family: var(--font-heading); font-size: var(--fs-sm); font-weight: 600; color: var(--abyss); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: var(--space-2); }
.filter-group select { width: 100%; padding: 0.6rem 0.875rem; border: 1px solid rgba(27,58,107,0.15); border-radius: var(--radius-md); font-family: var(--font-body); font-size: var(--fs-sm); color: var(--abyss); background: #FFFFFF; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B7A8D' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; cursor: pointer; transition: border-color var(--transition-fast); }
.filter-group select:focus { outline: none; border-color: var(--cyan); }

/* ------------------------------------------
   19. TIMELINE
   ------------------------------------------ */
.timeline { position: relative; padding-left: var(--space-10); }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--cyan), var(--amber)); }
.timeline-item { position: relative; margin-bottom: var(--space-8); }
.timeline-item::before { content: ''; position: absolute; left: calc(-1 * var(--space-10) - 7px); top: 6px; width: 16px; height: 16px; border-radius: 50%; background: var(--mist-white); border: 3px solid var(--cyan); z-index: 1; }
.timeline-item:first-child::before { border-color: var(--abyss); }
.timeline-item:last-child::before  { border-color: var(--amber); }
.timeline-item__year { font-family: var(--font-heading); font-size: var(--fs-2xl); font-weight: 800; color: var(--cyan); line-height: 1; margin-bottom: var(--space-1); }
.timeline-item__title { font-family: var(--font-heading); font-size: var(--fs-xl); font-weight: 700; color: var(--color-navy); margin-bottom: var(--space-2); }
.timeline-item__desc { font-size: var(--fs-sm); color: var(--color-text-muted); line-height: 1.7; }

/* ------------------------------------------
   20. CONTACT
   ------------------------------------------ */
.contact-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--space-10); align-items: start; }
.form-group { margin-bottom: var(--space-5); }
.form-group label { display: block; font-family: var(--font-heading); font-size: var(--fs-sm); font-weight: 600; color: var(--color-navy); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: var(--space-2); }
.form-group label span { color: var(--amber); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--color-grey-300); border-radius: var(--radius-md); font-family: var(--font-body); font-size: var(--fs-base); color: var(--color-text); background: var(--color-white); transition: border-color var(--transition-fast), box-shadow var(--transition-fast); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px var(--border); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.map-placeholder { width: 100%; height: 280px; background: linear-gradient(135deg, var(--color-grey-200) 0%, var(--color-grey-300) 100%); border-radius: var(--radius-lg); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--space-3); color: var(--color-grey-500); font-size: 2.5rem; margin-bottom: var(--space-4); border: 1px solid var(--color-grey-200); }
.map-placeholder__label { font-size: var(--fs-sm); font-family: var(--font-heading); letter-spacing: 0.5px; }
.contact-info-box { background: var(--abyss); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: var(--space-8); box-shadow: 0 4px 20px rgba(27,58,107,0.25); }
.contact-info-item { display: flex; gap: var(--space-4); margin-bottom: var(--space-6); padding-bottom: var(--space-6); border-bottom: 1px solid rgba(255,255,255,0.08); }
.contact-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-info-item .icon { width: 44px; height: 44px; border-radius: var(--radius-md); background: rgba(0,115,198,0.25); color: var(--cyan); display: flex; align-items: center; justify-content: center; font-size: var(--fs-md); flex-shrink: 0; }
.contact-info-item h4 { font-size: var(--fs-lg); color: #FFFFFF; margin-bottom: var(--space-1); }
.contact-info-item p, .contact-info-item a { font-size: var(--fs-base); color: #FFFFFF; }

/* ------------------------------------------
   21. INVESTOR RELATIONS
   ------------------------------------------ */
.stock-panel { background: linear-gradient(135deg, var(--abyss) 0%, #224376 50%, var(--industrial) 100%); border-radius: var(--radius-xl); padding: var(--space-10); color: var(--color-white); border: 1px solid rgba(255,255,255,0.1); margin-bottom: var(--space-12); position: relative; overflow: hidden; box-shadow: 0 10px 40px rgba(27,58,107,0.25); }
.stock-panel::after { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; background: rgba(0,168,204,0.15); }
.stock-panel__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); position: relative; z-index: 1; }
.stock-item__label { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.7); margin-bottom: var(--space-2); font-family: var(--font-heading); font-weight: 500; }
.stock-item__value { font-family: var(--font-heading); font-size: var(--fs-2xl); font-weight: 800; color: var(--color-white); letter-spacing: 0.5px; }
.stock-item__value--red { color: var(--amber); }

.doc-card { background: #FFFFFF; border: 1px solid rgba(27,58,107,0.10); border-radius: var(--radius-lg); padding: var(--space-8); text-align: center; box-shadow: 0 2px 12px rgba(27,58,107,0.08); transition: all var(--transition-base); }
.doc-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(27,58,107,0.14); border-color: var(--cyan); }
.doc-card .icon { width: 72px; height: 72px; border-radius: var(--radius-full); background: rgba(0,115,198,0.10); color: var(--cyan); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; margin: 0 auto var(--space-5); }
.doc-card h3 { font-size: var(--fs-xl); color: var(--abyss); margin-bottom: var(--space-3); }
.doc-card p { font-size: var(--fs-sm); color: var(--text-muted); margin-bottom: var(--space-6); }

/* ------------------------------------------
   22. JOB CARDS
   ------------------------------------------ */
.job-card { background: #FFFFFF; border: 1px solid rgba(27,58,107,0.10); border-radius: var(--radius-lg); padding: var(--space-6); box-shadow: 0 2px 12px rgba(27,58,107,0.08); display: flex; gap: var(--space-6); align-items: flex-start; transition: all var(--transition-base); }
.job-card:hover { transform: translateX(4px); box-shadow: 0 8px 28px rgba(27,58,107,0.15); border-color: var(--cyan); }
.job-card__icon { width: 52px; height: 52px; border-radius: var(--radius-md); background: rgba(0,115,198,0.12); color: var(--cyan); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.job-card__content { flex: 1; }
.job-card__title { font-family: var(--font-heading); font-size: var(--fs-xl); font-weight: 700; color: var(--abyss); margin-bottom: var(--space-2); }
.job-card__meta { display: flex; gap: var(--space-4); flex-wrap: wrap; margin-bottom: var(--space-3); }
.job-meta-tag { display: inline-flex; align-items: center; gap: var(--space-2); font-size: var(--fs-xs); color: var(--text-muted); font-family: var(--font-heading); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.job-meta-tag i { color: var(--amber); }
.job-card__desc { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.6; margin-bottom: var(--space-4); }
.job-card__action { flex-shrink: 0; align-self: center; }

/* ------------------------------------------
   23. CTA BANNER
   ------------------------------------------ */
.cta-banner { background: linear-gradient(135deg, var(--abyss) 0%, #224376 50%, var(--industrial) 100%); padding: var(--space-16) 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(0,168,204,0.25) 0%, transparent 70%); }
.cta-banner__content { position: relative; z-index: 1; }
.cta-banner h2 { font-family: var(--font-heading); font-size: var(--fs-3xl); font-weight: 800; color: var(--color-white); margin-bottom: var(--space-4); }
.cta-banner p { font-size: var(--fs-lg); color: rgba(255,255,255,0.75); margin-bottom: var(--space-8); }

/* ------------------------------------------
   24. FEATURED NEWS
   ------------------------------------------ */
.featured-news { display: grid; grid-template-columns: 1fr 1fr; background: #FFFFFF; border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 4px 24px rgba(27,58,107,0.12); border: 1px solid rgba(27,58,107,0.10); margin-bottom: var(--space-12); }
.featured-news__img { background: linear-gradient(135deg, var(--abyss) 0%, var(--industrial) 100%); min-height: 360px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.15); font-size: 5rem; position: relative; overflow: hidden; }
.featured-news__body { padding: var(--space-10); display: flex; flex-direction: column; justify-content: center; }

/* ------------------------------------------
   25. PAGINATION
   ------------------------------------------ */
.pagination { display: flex; align-items: center; justify-content: center; gap: var(--space-2); padding-top: var(--space-10); }
.pagination__btn { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--radius-md); border: 1px solid rgba(27,58,107,0.15); background: #FFFFFF; color: var(--text-muted); font-family: var(--font-heading); font-size: var(--fs-sm); font-weight: 600; cursor: pointer; transition: all var(--transition-fast); }
.pagination__btn:hover { background: rgba(0,115,198,0.08); border-color: var(--cyan); color: var(--cyan); }
.pagination__btn.active { background: var(--cyan); border-color: var(--cyan); color: #FFFFFF; }

/* ------------------------------------------
   26. TEAM CARDS
   ------------------------------------------ */
.team-card { background: #FFFFFF; border: 1px solid rgba(27,58,107,0.10); border-radius: var(--radius-lg); padding: var(--space-8); text-align: center; box-shadow: 0 2px 12px rgba(27,58,107,0.08); transition: all var(--transition-base); }
.team-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(27,58,107,0.15); border-color: var(--cyan); }
.team-card__avatar { width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, #DDE6F4, #F0F4FA); display: flex; align-items: center; justify-content: center; margin: 0 auto var(--space-5); overflow: hidden; border: 3px solid rgba(27,58,107,0.15); }
.team-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card__avatar-icon { font-size: 2.5rem; color: var(--color-grey-400); }
.team-card__name { font-family: var(--font-heading); font-size: var(--fs-xl); font-weight: 700; color: var(--abyss); margin-bottom: var(--space-1); }
.team-card__title { font-size: var(--fs-sm); color: var(--text-muted); margin-bottom: var(--space-3); }
.team-card__divider { width: 40px; height: 3px; background: var(--cyan); margin: 0 auto; border-radius: var(--radius-full); }

/* ------------------------------------------
   27. MISC UTILITIES
   ------------------------------------------ */
.divider { border: none; border-top: 1px solid var(--color-grey-200); margin: var(--space-8) 0; }

/* ------------------------------------------
   28. RESPONSIVE — TABLET (max-width: 1024px)
   ------------------------------------------ */
@media (max-width: 1024px) {
  :root { --section-py: 4rem; --container-pad: 1.25rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .principals-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .stock-panel__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .products-layout { grid-template-columns: 240px 1fr; }
}

/* ------------------------------------------
   29. RESPONSIVE — MOBILE (max-width: 768px)
   ------------------------------------------ */
@media (max-width: 768px) {
  :root { --section-py: 3rem; --container-pad: 1rem; --fs-4xl: 2.25rem; --fs-3xl: 1.875rem; }

  .navbar__links   { display: none; }
  .navbar__hamburger { display: flex; }

  .hero { min-height: 85vh; }
  .hero h1 { font-size: 2.25rem; }
  .hero__sub { font-size: var(--fs-base); }
  .hero__actions { flex-direction: column; gap: var(--space-3); }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .principals-grid { grid-template-columns: repeat(2, 1fr); }
  .stock-panel__grid { grid-template-columns: 1fr 1fr; }

  .products-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }

  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .featured-news { grid-template-columns: 1fr; }
  .featured-news__img { min-height: 220px; }

  .footer__grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .footer__bottom-inner { flex-direction: column; text-align: center; }

  .page-hero h1 { font-size: var(--fs-3xl); }
  .timeline { padding-left: var(--space-6); }
  .timeline-item::before { left: calc(-1 * var(--space-6) - 7px); }

  .job-card { flex-direction: column; }
  .job-card__action { width: 100%; }
  .job-card__action .btn { width: 100%; justify-content: center; }

  .filter-bar { flex-direction: column; }
  .filter-group { min-width: unset; }

  .cta-banner h2 { font-size: var(--fs-2xl); }
}

/* ------------------------------------------
   30. PRINT
   ------------------------------------------ */
@media print {
  .navbar, .footer, .hero__scroll { display: none; }
  body { font-size: 12pt; }
  a { text-decoration: underline; }
}
