/* ============================================
   IMPACTLABS — Design System & Styles
   Climate-Tech · Industrial Waste Management
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Brand Colors */
  --teal-primary: #3BA5A8;
  --teal-dark: #2D8A8D;
  --teal-light: #5CC0C3;
  --forest-dark: #0D2B2E;
  --forest-deeper: #081E20;
  --golden-accent: #F5C518;
  --golden-hover: #E5B700;
  --white-clean: #F8FAFA;
  --grey-soft: #E8EDED;
  --grey-mid: #B0BFBF;
  --grey-text: #6B7F7F;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 120px 0;
  --container-max: 1200px;
  --container-padding: 0 24px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.25s var(--ease-smooth);
  --transition-medium: 0.5s var(--ease-smooth);
  --transition-slow: 0.8s var(--ease-smooth);

  /* Glassmorphism */
  --glass-bg: rgba(13, 43, 46, 0.75);
  --glass-border: rgba(59, 165, 168, 0.2);
  --glass-blur: blur(20px);

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.12);
  --shadow-card-hover: 0 12px 48px rgba(59, 165, 168, 0.2);
  --shadow-glow: 0 0 30px rgba(59, 165, 168, 0.3);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--forest-dark);
  background: var(--white-clean);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

/* --- Utility --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--teal-primary);
  margin-bottom: 16px;
  position: relative;
  padding-left: 40px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 2px;
  background: var(--golden-accent);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--forest-dark);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--grey-text);
  max-width: 600px;
  line-height: 1.8;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::after {
  width: 400px;
  height: 400px;
}

.btn-primary {
  background: var(--golden-accent);
  color: var(--forest-dark);
}

.btn-primary:hover {
  background: var(--golden-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 197, 24, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white-clean);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  border-color: var(--teal-light);
  background: rgba(59, 165, 168, 0.15);
  transform: translateY(-2px);
}

.btn-outline-teal {
  background: transparent;
  color: var(--teal-primary);
  border: 2px solid var(--teal-primary);
}

.btn-outline-teal:hover {
  background: var(--teal-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(59, 165, 168, 0.2);
  }

  50% {
    box-shadow: 0 0 40px rgba(59, 165, 168, 0.5);
  }
}

@keyframes gridMove {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 50px 50px;
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: scale(0.5);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* staggered children */
.stagger-children .reveal:nth-child(1) {
  transition-delay: 0.1s;
}

.stagger-children .reveal:nth-child(2) {
  transition-delay: 0.2s;
}

.stagger-children .reveal:nth-child(3) {
  transition-delay: 0.3s;
}

.stagger-children .reveal:nth-child(4) {
  transition-delay: 0.4s;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-medium);
}

.navbar.scrolled {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.navbar-brand-text {
  display: flex;
  flex-direction: column;
}

.navbar-brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white-clean);
  letter-spacing: 1px;
}

.navbar-brand-tagline {
  font-size: 0.65rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar-nav a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-fast);
  position: relative;
}

.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--golden-accent);
  transition: var(--transition-fast);
}

.navbar-nav a:hover {
  color: var(--white-clean);
}

.navbar-nav a:hover::after {
  width: 100%;
}

.navbar-cta {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.navbar-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white-clean);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--forest-deeper);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg,
      rgba(8, 30, 32, 0.92) 0%,
      rgba(13, 43, 46, 0.85) 40%,
      rgba(59, 165, 168, 0.25) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 3;
  background-image:
    linear-gradient(rgba(59, 165, 168, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 165, 168, 0.06) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 8s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 720px;
  padding-top: 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 165, 168, 0.15);
  border: 1px solid rgba(59, 165, 168, 0.3);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s var(--ease-smooth) both;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--golden-accent);
  animation: pulseGlow 2s ease-in-out infinite;
}

.hero-badge span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--teal-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white-clean);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s var(--ease-smooth) 0.15s both;
  line-height: 1.15;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--teal-light), var(--golden-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 560px;
  animation: fadeInUp 0.8s var(--ease-smooth) 0.3s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s var(--ease-smooth) 0.45s both;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.8s var(--ease-smooth) 0.6s both;
}

.hero-stat-item {
  text-align: left;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--golden-accent);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Floating elements */
.hero-float-element {
  position: absolute;
  z-index: 3;
  border-radius: 16px;
  animation: float 6s ease-in-out infinite;
}

.hero-float-1 {
  top: 20%;
  right: 8%;
  width: 80px;
  height: 80px;
  background: rgba(59, 165, 168, 0.1);
  border: 1px solid rgba(59, 165, 168, 0.2);
  backdrop-filter: blur(10px);
  animation-delay: 0s;
}

.hero-float-2 {
  bottom: 22%;
  right: 15%;
  width: 120px;
  height: 120px;
  background: rgba(245, 197, 24, 0.08);
  border: 1px solid rgba(245, 197, 24, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  animation-delay: 2s;
}

.hero-float-3 {
  top: 35%;
  right: 22%;
  width: 60px;
  height: 60px;
  background: rgba(59, 165, 168, 0.15);
  border: 1px solid rgba(59, 165, 168, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  animation-delay: 4s;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  padding: var(--section-padding);
  background: var(--white-clean);
}

.services-header {
  text-align: center;
  margin-bottom: 72px;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--grey-soft);
  transition: var(--transition-medium);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--teal-primary);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-primary), var(--teal-light));
  opacity: 0;
  transition: var(--transition-fast);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 1.8rem;
}

.service-card:nth-child(1) .service-icon {
  background: linear-gradient(135deg, rgba(59, 165, 168, 0.12), rgba(59, 165, 168, 0.05));
  color: var(--teal-primary);
}

.service-card:nth-child(2) .service-icon {
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.12), rgba(245, 197, 24, 0.05));
  color: var(--golden-accent);
}

.service-card h3 {
  font-size: 1.45rem;
  color: var(--forest-dark);
  margin-bottom: 16px;
}

.service-card>p {
  color: var(--grey-text);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--forest-dark);
}

.service-feature-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: rgba(59, 165, 168, 0.1);
  color: var(--teal-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  margin-top: 2px;
}

.service-card-badge {
  display: inline-block;
  margin-top: 24px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card:nth-child(1) .service-card-badge {
  background: rgba(59, 165, 168, 0.08);
  color: var(--teal-primary);
}

.service-card:nth-child(2) .service-card-badge {
  background: rgba(245, 197, 24, 0.08);
  color: var(--golden-hover);
}

/* ============================================
   PROCESS / HOW WE WORK SECTION
   ============================================ */
.process {
  padding: var(--section-padding);
  background: var(--forest-dark);
  position: relative;
  overflow: hidden;
}

.process-header {
  text-align: center;
  margin-bottom: 64px;
}

.process-timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}

.process-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 28px;
  height: 2px;
  background: linear-gradient(to right, var(--teal-primary) 0%, rgba(59, 165, 168, 0.15) 100%);
  z-index: 1;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  flex: 1;
  position: relative;
  text-align: center;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-primary), var(--teal-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white-clean);
  box-shadow: 0 0 24px rgba(59, 165, 168, 0.35);
  position: relative;
  z-index: 2;
}

.process-step-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px 20px;
  backdrop-filter: blur(8px);
  transition: var(--transition-base);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-step-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(59, 165, 168, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.process-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(59, 165, 168, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--teal-primary);
}

.process-step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white-clean);
  margin-bottom: 8px;
}

.process-step-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive Process Section */
@media (max-width: 992px) {
  .process-timeline {
    flex-direction: column;
    max-width: 600px;
    gap: 32px;
  }

  .process-line {
    width: 2px;
    height: auto;
    left: 28px;
    top: 0;
    bottom: 0;
    background: linear-gradient(to bottom, var(--teal-primary) 0%, rgba(59, 165, 168, 0.15) 100%);
  }

  .process-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }

  .process-step-card {
    text-align: left;
    align-items: flex-start;
    padding: 28px;
  }

  .process-step-card:hover {
    transform: translateX(4px);
  }
}

/* ============================================
   IMPACTTRACK DASHBOARD SECTION
   ============================================ */
.technology {
  padding: var(--section-padding);
  background: var(--forest-deeper);
  position: relative;
  overflow: hidden;
}

.technology::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 165, 168, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 165, 168, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.technology .container {
  position: relative;
  z-index: 2;
}

.tech-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.tech-content .section-label {
  color: var(--golden-accent);
}

.tech-content .section-label::before {
  background: var(--teal-primary);
}

.tech-content .section-title {
  color: var(--white-clean);
}

.tech-content .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
}

.tech-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tech-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(59, 165, 168, 0.1);
  transition: var(--transition-fast);
}

.tech-feature-card:hover {
  background: rgba(59, 165, 168, 0.08);
  border-color: rgba(59, 165, 168, 0.3);
  animation: pulseGlow 2s ease-in-out infinite;
}

.tech-feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal-primary), var(--teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
}

.tech-feature-card h4 {
  font-size: 1.05rem;
  color: var(--white-clean);
  margin-bottom: 6px;
}

.tech-feature-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.tech-visual {
  position: relative;
}

.tech-visual img {
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.tech-visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(59, 165, 168, 0.2) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
}

/* ============================================
   TARGET SECTORS SECTION
   ============================================ */
.sectors {
  padding: var(--section-padding);
  background: var(--grey-soft);
}

.sectors-header {
  text-align: center;
  margin-bottom: 64px;
}

.sectors-header .section-subtitle {
  margin: 0 auto;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sector-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 420px;
  cursor: pointer;
  group: true;
  text-decoration: none;
  color: inherit;
}

/* Sector Detail Pages */
.sector-detail-block {
  margin-bottom: 40px;
}

.sector-detail-block h2 {
  font-size: 1.5rem;
  color: var(--forest-dark);
  margin-bottom: 16px;
}

.sector-detail-block p {
  line-height: 1.8;
  color: var(--grey-text);
}

.sector-detail-list {
  padding-left: 20px;
  margin: 16px 0;
  list-style: none;
}

.sector-detail-list li {
  margin-bottom: 16px;
  line-height: 1.7;
  padding-left: 8px;
  border-left: 3px solid var(--teal-primary);
}

.sector-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-smooth);
}

.sector-card:hover img {
  transform: scale(1.08);
}

.sector-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      transparent 30%,
      rgba(8, 30, 32, 0.95) 100%);
  transition: var(--transition-medium);
}

.sector-card:hover .sector-card-overlay {
  background: linear-gradient(180deg,
      rgba(59, 165, 168, 0.1) 0%,
      rgba(8, 30, 32, 0.97) 80%);
}

.sector-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 28px;
  z-index: 2;
  transform: translateY(20px);
  transition: var(--transition-medium);
}

.sector-card:hover .sector-card-content {
  transform: translateY(0);
}

.sector-card-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(59, 165, 168, 0.2);
  color: var(--teal-light);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.sector-card h3 {
  font-size: 1.4rem;
  color: var(--white-clean);
  margin-bottom: 10px;
}

.sector-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-medium);
}

.sector-card:hover p {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   TRUST / PARTNERSHIP SECTION
   ============================================ */
.trust {
  padding: var(--section-padding);
  background: var(--white-clean);
}

.trust-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.trust-content .section-subtitle {
  margin-bottom: 36px;
}

.trust-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trust-pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: 12px;
  transition: var(--transition-fast);
}

.trust-pillar:hover {
  background: rgba(59, 165, 168, 0.04);
}

.trust-pillar-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(59, 165, 168, 0.1), rgba(59, 165, 168, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--teal-primary);
}

.trust-pillar h4 {
  font-size: 1rem;
  color: var(--forest-dark);
  margin-bottom: 4px;
}

.trust-pillar p {
  font-size: 0.85rem;
  color: var(--grey-text);
  line-height: 1.6;
}

/* Stats counters */
.trust-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.trust-stat-card {
  background: white;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--grey-soft);
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.trust-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--teal-primary);
  border-radius: 0 0 4px 4px;
}

.trust-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.trust-stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--teal-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.trust-stat-label {
  font-size: 0.8rem;
  color: var(--grey-text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 100px 0;
  background: var(--forest-deeper);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 165, 168, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-content .section-label {
  color: var(--golden-accent);
  padding-left: 0;
}

.cta-content .section-label::before {
  display: none;
}

.cta-content .section-title {
  color: var(--white-clean);
  margin-bottom: 16px;
}

.cta-content .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--forest-dark);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.footer-brand-logo span {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white-clean);
  letter-spacing: 1px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-fast);
  font-size: 1rem;
}

.footer-social a:hover {
  background: var(--teal-primary);
  border-color: var(--teal-primary);
  color: white;
  transform: translateY(-2px);
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white-clean);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.footer-column a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
  transition: var(--transition-fast);
}

.footer-column a:hover {
  color: var(--teal-light);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item .icon {
  color: var(--teal-primary);
  font-size: 1rem;
  margin-top: 2px;
}

.footer-contact-item span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
  color: var(--teal-primary);
  transition: var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--teal-light);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .tech-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .tech-visual {
    order: -1;
  }

  .trust-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px 0;
  }

  .navbar-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--forest-deeper);
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    gap: 24px;
    transition: var(--transition-medium);
    z-index: 999;
  }

  .navbar-nav.active {
    right: 0;
  }

  .navbar-nav a {
    font-size: 1.1rem;
    color: var(--white-clean);
  }

  .navbar-toggle {
    display: flex;
    z-index: 1001;
  }

  .hero h1 {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero-stat-number {
    font-size: 1.8rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 36px 28px;
  }

  .sectors-grid {
    grid-template-columns: 1fr;
  }

  .sector-card {
    height: 320px;
  }

  .sector-card p {
    opacity: 1;
    transform: translateY(0);
  }

  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .trust-stat-card {
    padding: 28px 20px;
  }

  .trust-stat-number {
    font-size: 2.2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 60px 0;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .section-title {
    font-size: 1.75rem;
  }
}

/* Mobile menu overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   NAVIGATION DROPDOWN
   ============================================ */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.dropdown-arrow {
  transition: var(--transition-fast);
}

.nav-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 240px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition-fast);
  z-index: 100;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgba(59, 165, 168, 0.2);
}

.nav-dropdown.active .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-fast);
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: rgba(59, 165, 168, 0.15);
  color: var(--white-clean);
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: var(--transition-fast);
  color: rgba(255, 255, 255, 0.8);
}

.lang-switcher:hover {
  background: rgba(59, 165, 168, 0.2);
  border-color: var(--teal-primary);
}

.lang-flag {
  font-size: 1.1rem;
  line-height: 1;
}

.lang-code {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition-fast);
  animation: float 3s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-100%) translateX(-12px) translateY(-50%);
}

.wa-tooltip {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateX(-100%) translateX(0) translateY(-50%);
  background: var(--forest-dark);
  color: var(--white-clean);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  pointer-events: none;
  margin-right: 12px;
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid var(--forest-dark);
}

/* ============================================
   NEWS SECTION
   ============================================ */
.news-preview {
  padding: var(--section-padding);
  background: var(--white-clean);
}

.news-header {
  text-align: center;
  margin-bottom: 64px;
}

.news-header .section-subtitle {
  margin: 0 auto;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.news-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--grey-soft);
  transition: var(--transition-medium);
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

.news-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

.news-card:hover .news-card-image img {
  transform: scale(1.05);
}

.news-card-category {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--teal-primary);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-card-body {
  padding: 24px;
}

.news-card-date {
  display: block;
  font-size: 0.8rem;
  color: var(--grey-mid);
  margin-bottom: 12px;
}

.news-card-body h3 {
  font-size: 1.1rem;
  color: var(--forest-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.news-card-body p {
  font-size: 0.9rem;
  color: var(--grey-text);
  line-height: 1.7;
  margin-bottom: 16px;
}

.news-card-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-primary);
  transition: var(--transition-fast);
}

.news-card-link:hover {
  color: var(--golden-accent);
}

.news-cta {
  text-align: center;
  margin-top: 48px;
}

.news-cta .btn-secondary {
  color: var(--teal-primary);
  border-color: var(--teal-primary);
}

.news-cta .btn-secondary:hover {
  background: var(--teal-primary);
  color: white;
}

/* ============================================
   SERVICE CARD FOOTER
   ============================================ */
.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--grey-soft);
}

.service-card-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-primary);
  transition: var(--transition-fast);
}

.service-card-link:hover {
  color: var(--golden-accent);
}

/* ============================================
   SUB-PAGE HERO
   ============================================ */
.subpage-hero {
  position: relative;
  padding: 160px 0 100px;
  background: var(--forest-deeper);
  overflow: hidden;
}

.subpage-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 165, 168, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 165, 168, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 8s linear infinite;
}

.subpage-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--white-clean), transparent);
  z-index: 2;
}

.subpage-hero .container {
  position: relative;
  z-index: 3;
}

.subpage-hero .section-label {
  color: var(--golden-accent);
}

.subpage-hero .section-label::before {
  background: var(--teal-primary);
}

.subpage-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--white-clean);
  margin-bottom: 20px;
  max-width: 700px;
}

.subpage-hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  line-height: 1.8;
}

.subpage-hero-glow {
  position: absolute;
  top: 20%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 165, 168, 0.08) 0%, transparent 70%);
  z-index: 1;
}

/* ============================================
   SUB-PAGE CONTENT SECTIONS
   ============================================ */
.subpage-section {
  padding: var(--section-padding);
  background: var(--white-clean);
}

.subpage-section:nth-child(even) {
  background: white;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.pillar-card {
  background: white;
  border-radius: 20px;
  padding: 48px 36px;
  border: 1px solid var(--grey-soft);
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-primary), var(--golden-accent));
  opacity: 0;
  transition: var(--transition-fast);
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(59, 165, 168, 0.12), rgba(59, 165, 168, 0.05));
  color: var(--teal-primary);
}

.pillar-card:nth-child(2) .pillar-icon {
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.12), rgba(245, 197, 24, 0.05));
  color: var(--golden-accent);
}

.pillar-card:nth-child(3) .pillar-icon {
  background: linear-gradient(135deg, rgba(59, 165, 168, 0.15), rgba(92, 192, 195, 0.08));
  color: var(--teal-light);
}

.pillar-card h3 {
  font-size: 1.3rem;
  color: var(--forest-dark);
  margin-bottom: 16px;
}

.pillar-card>p {
  font-size: 0.95rem;
  color: var(--grey-text);
  margin-bottom: 24px;
  line-height: 1.7;
}

.pillar-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pillar-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--forest-dark);
}

.pillar-feature-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: rgba(59, 165, 168, 0.1);
  color: var(--teal-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  margin-top: 2px;
}

/* Process Flow */
.process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 64px;
  flex-wrap: wrap;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 200px;
}

.process-step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-primary), var(--teal-dark));
  color: white;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(59, 165, 168, 0.3);
}

.process-step h4 {
  font-size: 1rem;
  color: var(--forest-dark);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--grey-text);
  max-width: 180px;
}

.process-arrow {
  font-size: 1.5rem;
  color: var(--grey-mid);
  margin: 0 8px;
  margin-bottom: 40px;
}

/* Sub-page CTA */
.subpage-cta {
  padding: 80px 0;
  background: var(--forest-deeper);
  text-align: center;
}

.subpage-cta .section-title {
  color: var(--white-clean);
}

.subpage-cta .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 auto 40px;
}

/* ============================================
   BERITA (NEWS) PAGE
   ============================================ */
.berita-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

/* Permit timeline */
.permit-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 64px;
  position: relative;
}

.permit-timeline::before {
  content: '';
  position: absolute;
  left: 31px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal-primary), var(--golden-accent));
}

.timeline-item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  position: relative;
}

.timeline-dot {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--teal-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  color: var(--teal-primary);
}

.timeline-content {
  flex: 1;
  padding-top: 12px;
}

.timeline-content h3 {
  font-size: 1.2rem;
  color: var(--forest-dark);
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 0.95rem;
  color: var(--grey-text);
  line-height: 1.7;
}

/* ============================================
   RESPONSIVE — NEW COMPONENTS
   ============================================ */
@media (max-width: 1024px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .berita-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-flow {
    flex-direction: column;
    gap: 24px;
  }

  .process-arrow {
    transform: rotate(90deg);
    margin: 0;
  }
}

@media (max-width: 768px) {
  .navbar-right {
    position: absolute;
    right: 60px;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    background: var(--forest-deeper);
    padding: 80px 32px 40px;
    gap: 0;
    transition: var(--transition-medium);
    z-index: 999;
    align-items: flex-start;
    overflow-y: auto;
  }

  .navbar-nav.active {
    right: 0;
  }

  .navbar-nav li {
    width: 100%;
  }

  .navbar-nav a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1rem;
  }

  .navbar-cta {
    margin-top: 16px;
    text-align: center;
    width: 100%;
    justify-content: center;
  }

  /* Mobile dropdown */
  .nav-dropdown-menu {
    position: static;
    transform: none;
    min-width: auto;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    padding: 0 0 0 20px;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.3s ease, opacity 0.3s ease;
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: 200px;
    transform: none;
  }

  .news-grid,
  .berita-grid {
    grid-template-columns: 1fr;
  }

  .wa-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  .wa-tooltip {
    display: none;
  }

  /* Sector Detail Pages */
  .sector-detail-list {
    padding-left: 20px;
    margin: 16px 0;
  }

  .sector-detail-list li {
    margin-bottom: 12px;
    line-height: 1.6;
  }

  .article-layout {
    grid-template-columns: 1fr !important;
  }

  .article-sidebar {
    position: static !important;
  }
}