/* ============================================
   KSJ GROUP — Corporate Design System
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Brand Colors */
  --gold: #C9A84C;
  --gold-light: #E8D48B;
  --gold-dark: #A07C1C;
  --gold-gradient: linear-gradient(135deg, #C9A84C 0%, #E8D48B 50%, #C9A84C 100%);
  --gold-shimmer: linear-gradient(90deg, #A07C1C, #C9A84C, #E8D48B, #C9A84C, #A07C1C);

  /* Neutral Colors */
  --charcoal: #1A1A1A;
  --charcoal-soft: #2A2A2A;
  --charcoal-medium: #333333;
  --dark-overlay: rgba(20, 20, 20, 0.75);
  --white: #FFFFFF;
  --cream: #F8F5EC;
  --cream-dark: #EDE8DA;
  --warm-gray: #9E9E9E;
  --light-gray: #E8E8E8;
  --text-dark: #333333;
  --text-body: #555555;
  --text-light: #CCCCCC;

  /* Accent Colors */
  --emerald: #2E7D32;
  --emerald-light: #4CAF50;
  --emerald-dark: #1B5E20;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Sizing */
  --h1-size: clamp(2.4rem, 5vw, 4rem);
  --h2-size: clamp(1.8rem, 3.5vw, 2.8rem);
  --h3-size: clamp(1.3rem, 2.5vw, 1.8rem);
  --h4-size: clamp(1.1rem, 2vw, 1.4rem);
  --body-size: clamp(0.95rem, 1.2vw, 1.1rem);
  --small-size: clamp(0.8rem, 1vw, 0.9rem);

  /* Spacing */
  --section-padding: clamp(60px, 8vw, 120px);
  --container-max: 1200px;
  --container-wide: 1400px;
  --gap: 24px;
  --gap-lg: 48px;

  /* Effects */
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.25);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Header */
  --header-height: 80px;
}

/* --- Reset --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--body-size);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul,
ol {
  list-style: none;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
}

input,
textarea,
select {
  font-family: var(--font-body);
  outline: none;
  border: none;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 {
  font-size: var(--h1-size);
  letter-spacing: 1px;
}

h2 {
  font-size: var(--h2-size);
}

h3 {
  font-size: var(--h3-size);
}

h4 {
  font-size: var(--h4-size);
}

p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.gold-text {
  color: var(--gold);
}

.white-text {
  color: var(--white);
}

.emerald-text {
  color: var(--emerald);
}

/* --- Layout --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-padding) 0;
}

.section-cream {
  background: var(--cream);
}

.section-charcoal {
  background: var(--charcoal);
  color: var(--white);
}

.section-charcoal h2,
.section-charcoal h3,
.section-charcoal h4 {
  color: var(--white);
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: var(--gap-lg);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  margin-bottom: 16px;
  position: relative;
}

.section-header h2.gold-text::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
  margin: 16px auto 0;
  border-radius: 2px;
}

.section-header p {
  color: var(--text-body);
  font-size: 1.05rem;
}

.section-charcoal .section-header p {
  color: var(--warm-gray);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
}

.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--charcoal);
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-white-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-white-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-emerald {
  background: var(--emerald);
  color: var(--white);
}

.btn-emerald:hover {
  background: var(--emerald-dark);
  transform: translateY(-2px);
}

/* --- Grid Systems --- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-body {
  padding: 28px;
}

.card-dark {
  background: var(--charcoal-soft);
  color: var(--white);
}

.card-dark h3,
.card-dark h4 {
  color: var(--white);
}

/* gold accent card */
.card-accent {
  border-top: 3px solid var(--gold);
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: var(--transition);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  height: 70px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gold-gradient);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--charcoal);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
}

.logo-text span {
  color: var(--gold);
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  border-radius: 1px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-trigger svg {
  width: 14px;
  height: 14px;
  transition: var(--transition);
}

.nav-dropdown.open .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 220px;
  background: rgba(26, 26, 26, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}

.dropdown-item {
  display: block;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  border-radius: 4px;
  transition: var(--transition);
}

.dropdown-item:hover,
.dropdown-item.view-all:hover {
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold);
}

/* Mega Menu */
.dropdown-mega {
  min-width: 500px;
  padding: 16px;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.mega-col {
  display: flex;
  flex-direction: column;
}

.mega-header {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  padding-left: 12px;
  opacity: 0.9;
}

.mega-footer {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-item.view-all {
  font-weight: 600;
  text-align: center;
}

@media (max-width: 768px) {
  .dropdown-mega {
    min-width: auto;
    width: 100%;
    position: static;
    box-shadow: none;
    background: transparent;
    padding: 0;
    border: none;
  }

  .nav-dropdown.open .dropdown-mega {
    transform: none;
    position: static;
  }

  .mega-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-left: 12px;
  }

  .mega-col {
    margin-bottom: 8px;
  }

  .mega-header {
    margin-bottom: 4px;
    padding-left: 0;
    color: rgba(255, 255, 255, 0.5);
  }

  .mega-footer {
    margin-top: 8px;
    padding-top: 8px;
    border-top: none;
  }

  .dropdown-item.view-all {
    text-align: left;
    padding-left: 12px;
  }
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 1px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-subpage {
  min-height: 60vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(20, 20, 20, 0.5) 0%,
      rgba(20, 20, 20, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-content .label {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--small-size);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Hero Slider --- */
.hero-slider {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 8s ease;
}

.slide.active .slide-bg {
  transform: scale(1.08);
}

.slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(20, 20, 20, 0.65) 0%,
      rgba(20, 20, 20, 0.45) 50%,
      rgba(20, 20, 20, 0.65) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
  padding: 0 24px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.slide.active .slide-content {
  transform: translateY(0);
  opacity: 1;
}

.slide-content h1 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.slide-content .sub-headline {
  color: var(--gold-light);
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 32px;
}

.slide-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.2);
}

.slider-dot:hover {
  border-color: var(--gold-light);
}

/* Slider Progress Bar */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.1);
}

.slider-progress-bar {
  height: 100%;
  background: var(--gold-gradient);
  width: 0%;
  transition: width 6s linear;
}

.slider-progress-bar.running {
  width: 100%;
}

/* --- Stats Counter --- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--charcoal);
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  background: var(--charcoal-soft);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.stat-label {
  font-size: var(--small-size);
  color: var(--warm-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Value Pillars --- */
.pillar-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.pillar-card:hover::before {
  transform: scaleX(1);
}

.pillar-icon {
  width: 64px;
  height: 64px;
  background: var(--cream);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.pillar-card:hover .pillar-icon {
  background: var(--gold);
}

.pillar-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  transition: var(--transition);
}

.pillar-card:hover .pillar-icon svg {
  stroke: var(--charcoal);
}

.pillar-card h4 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.pillar-card p {
  color: var(--text-body);
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* --- Ecosystem Cards --- */
.eco-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: var(--transition);
}

.eco-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.eco-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.eco-card:hover .eco-card-bg {
  transform: scale(1.08);
}

.eco-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 20, 20, 0.9), transparent 60%);
}

.eco-card-body {
  position: relative;
  z-index: 2;
  padding: 32px;
  width: 100%;
}

.eco-card-body .tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 8px;
}

.eco-card-body h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.eco-card-body p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.eco-card .arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.eco-card:hover .arrow-link {
  gap: 12px;
}

/* --- Footer --- */
.site-footer {
  background: var(--charcoal);
  color: var(--warm-gray);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--gap-lg);
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-about .logo {
  margin-bottom: 20px;
}

.footer-about p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  margin-bottom: 24px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--warm-gray);
}

.social-icon:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--gold);
  margin-top: 10px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--warm-gray);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--gold);
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12), transparent 70%);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}

.cta-inner h2 {
  color: var(--white);
  max-width: 500px;
}

.cta-inner p {
  color: var(--warm-gray);
  margin-top: 12px;
}

/* --- News Cards --- */
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.news-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.news-card-img .date-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--charcoal);
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
}

.news-card-body {
  padding: 24px;
}

.news-card-body .category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.news-card-body h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  line-height: 1.4;
}

.news-card-body p {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 0;
}

/* --- Contact Form --- */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: var(--shadow-gold);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* --- Page Transition --- */
#app {
  opacity: 1;
  transition: opacity 0.3s ease;
}

#app.fade-out {
  opacity: 0;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.stagger-children .animate-on-scroll:nth-child(1) {
  transition-delay: 0.1s;
}

.stagger-children .animate-on-scroll:nth-child(2) {
  transition-delay: 0.2s;
}

.stagger-children .animate-on-scroll:nth-child(3) {
  transition-delay: 0.3s;
}

.stagger-children .animate-on-scroll:nth-child(4) {
  transition-delay: 0.4s;
}

/* Gold shimmer text */
.shimmer-text {
  background: var(--gold-shimmer);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(201, 168, 76, 0.15);
  }

  .main-nav.open {
    right: 0;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 12px 16px;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: rgba(255, 255, 255, 0.04);
    border: none;
    padding: 4px 0 4px 20px;
    box-shadow: none;
    display: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .mobile-toggle {
    display: flex;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .hero {
    min-height: 85vh;
  }

  .hero-subpage {
    min-height: 50vh;
  }

  .slide-content h1 {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }
}

@media (max-width: 480px) {
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 16px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }
}

/* --- Utility --- */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-1 {
  margin-top: 8px;
}

.mt-2 {
  margin-top: 16px;
}

.mt-3 {
  margin-top: 24px;
}

.mt-4 {
  margin-top: 32px;
}

.mt-5 {
  margin-top: 48px;
}

.mb-1 {
  margin-bottom: 8px;
}

.mb-2 {
  margin-bottom: 16px;
}

.mb-3 {
  margin-bottom: 24px;
}

.mb-4 {
  margin-bottom: 32px;
}

.mb-5 {
  margin-bottom: 48px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gap-1 {
  gap: 8px;
}

.gap-2 {
  gap: 16px;
}

.gap-3 {
  gap: 24px;
}

.hidden {
  display: none !important;
}

.overflow-hidden {
  overflow: hidden;
}

/* Mobile overlay when nav is open */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* --- Leadership / Team --- */
.leader-card {
  text-align: center;
  padding: 32px 20px;
}

.leader-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--cream);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  border: 3px solid var(--gold);
}

.leader-card h4 {
  margin-bottom: 4px;
}

.leader-card .position {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
}

/* --- Impact Metrics --- */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.impact-card {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 168, 76, 0.15);
  transition: var(--transition);
}

.impact-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.impact-number {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.impact-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Timeline --- */
.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  opacity: 0.3;
}

.timeline-item {
  display: flex;
  gap: var(--gap);
  margin-bottom: 40px;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--cream);
  z-index: 1;
}

.timeline-content {
  width: 45%;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
}

.timeline-content .year {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-item::before {
    left: 20px;
  }

  .timeline-content {
    width: calc(100% - 50px);
    margin-left: 50px !important;
  }
}

/* --- Job Cards --- */
.job-card {
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.job-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.job-card .department {
  display: inline-block;
  padding: 4px 12px;
  background: var(--cream);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.job-card h4 {
  margin-bottom: 8px;
}

.job-card .location {
  color: var(--text-body);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.job-card .job-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.job-card .job-tag {
  padding: 4px 10px;
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold-dark);
  font-size: 0.78rem;
  border-radius: 4px;
}

/* --- Filter Tabs --- */
.filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-tab {
  padding: 10px 24px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 30px;
  background: transparent;
  border: 2px solid var(--light-gray);
  color: var(--text-body);
  cursor: pointer;
  transition: var(--transition);
}

.filter-tab.active,
.filter-tab:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

/* --- Capability Cards --- */
.capability-card {
  padding: 32px;
  background: var(--charcoal-soft);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.capability-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.capability-card .cap-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(201, 168, 76, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.capability-card .cap-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.capability-card h4 {
  color: var(--white);
  margin-bottom: 12px;
}

.capability-card p {
  color: var(--warm-gray);
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* --- Circular Economy Diagram --- */
.circular-diagram {
  max-width: 600px;
  margin: 0 auto;
  aspect-ratio: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circular-center {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--charcoal);
  z-index: 2;
}

.circular-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.circular-ring-1 {
  width: 320px;
  height: 320px;
}

.circular-ring-2 {
  width: 460px;
  height: 460px;
}

.circular-node {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 10px;
  color: var(--text-dark);
}

/* --- Feature Image Box (Corporate Profile) --- */
.feature-image-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  line-height: 0;
}

.feature-image-box img {
  width: 100%;
  height: auto;
  transition: transform 1.2s ease;
}

.feature-image-box:hover img {
  transform: scale(1.05);
}

.floating-stat {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 240px;
  z-index: 2;
  border-left: 4px solid var(--gold);
}

.floating-stat h4 {
  font-size: 1.8rem;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 4px;
}

.floating-stat p {
  font-size: 0.75rem;
  color: var(--text-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
  line-height: 1.2;
}

/* --- Enhanced Pillar Cards --- */
.pillar-card-enhanced {
  position: relative;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.pillar-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}

.pillar-card-enhanced:hover .pillar-bg {
  transform: scale(1.1);
}

.pillar-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.85));
  transition: var(--transition);
}

.pillar-card-enhanced:hover .pillar-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.95));
}

.pillar-content {
  position: relative;
  z-index: 2;
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.pillar-card-enhanced:hover .pillar-content {
  transform: translateY(-8px);
}

.pillar-icon-box {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pillar-card-enhanced h4 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.pillar-card-enhanced p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* --- Enhanced CTA --- */
.cta-banner-enhanced {
  position: relative;
  padding: 120px 0;
  color: var(--white);
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.8) 60%, rgba(26, 26, 26, 0.4) 100%);
}

.cta-content-box {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

/* --- Ecosystem Detailed --- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

.grid-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
}

.eco-card-detailed {
  display: block;
  position: relative;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.eco-card-detailed:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.eco-card-wide {
  height: 300px;
}

.eco-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}

.eco-card-detailed:hover .eco-card-bg {
  transform: scale(1.05);
}

.eco-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}

.eco-card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.eco-card-content h4 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.eco-card-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 0;
  max-width: 90%;
}

.eco-card-content .tag {
  display: inline-block;
  padding: 6px 12px;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 16px;
  align-self: flex-start;
}

@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .eco-card-detailed {
    height: 350px;
  }
}

/* --- Nested Dropdown --- */
.dropdown-submenu {
  position: relative;
}

/* Submenu Position (Desktop) */
@media (min-width: 769px) {
  .dropdown-submenu>.dropdown-menu {
    top: -8px;
    left: 100%;
    margin-top: 0;
    margin-left: 4px;
    transform: translateX(10px);
    opacity: 0;
    visibility: hidden;
    min-width: 220px;
  }

  .dropdown-submenu.open>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .dropdown-submenu>.nav-dropdown-trigger {
    padding: 10px 16px;
    width: 100%;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
  }

  .dropdown-submenu.open>.nav-dropdown-trigger {
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold);
  }

  .dropdown-submenu .nav-dropdown-trigger svg {
    transform: rotate(-90deg);
    width: 12px;
    height: 12px;
  }
}

/* Mobile Nested */
@media (max-width: 768px) {
  .dropdown-submenu>.dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    margin-left: 16px;
    margin-top: 4px;
    padding-left: 0;
    border: none;
    border-left: 2px solid rgba(201, 168, 76, 0.2);
    background: transparent;
    box-shadow: none;
    display: none;
    min-width: auto;
  }

  .dropdown-submenu.open>.dropdown-menu {
    display: block;
  }

  .dropdown-submenu>.nav-dropdown-trigger {
    padding: 12px 16px;
    width: 100%;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    cursor: pointer;
  }

  .dropdown-submenu .nav-dropdown-trigger svg {
    transition: transform 0.3s ease;
  }

  .dropdown-submenu.open>.nav-dropdown-trigger svg {
    transform: rotate(180deg);
  }
}