:root {
  --primary: #00578B;
  --secondary: #0074B9;
  --light: #F7FAFC;
  --text: #0A0A0A;
  --muted: #6B7280;
  --border: #E5E7EB;
  --accent: #F7941E;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: #ffffff;
  margin: 0;
}

/* Layout control */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Section spacing */
section {
  padding: 110px 0;
}

/* Typography */
h1 {
  font-size: 52px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 18px;
}

p {
  font-size: 16px;
  color: #374151;
  line-height: 1.7;
}

/* NAV */
nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: white;  
  z-index: 1000; /* 🔥 penting */
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links a {
  margin-left: 28px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.75);
  font-weight: 500;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #00578B;
}

/* HERO */
.hero {
  padding: 140px 0 120px;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f5f9fc 100%
  );
}

.hero h1 {
  max-width: 760px;
  color: var(--primary);
  margin-bottom: 24px;
}

.hero p {
  max-width: 560px;
  font-size: 18px;
}

.hero-cta {
  margin-top: 30px;
}

.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 12px 22px;
  font-size: 14px;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--secondary);
}

/* SECTION HEADER */
.section-header {
  max-width: 700px;
  margin-bottom: 50px;
}

/* GRID */
.grid {
  display: grid;
  gap: 28px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* PREMIUM CARD */
.card {
  padding: 28px;
  border-radius: 6px;
  border: 1px solid transparent;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.03);
  transition: all 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.07);
}

/* MUTED SECTION */
.section-soft {
  background: var(--light);
}

/* CTA BLOCK */
.cta {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 100px 24px;
}

.cta h2 {
  color: white;
}

.cta p {
  color: #e0f2ff;
}

/* FOOTER */
footer {
  padding: 50px 0;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
}

/* MOBILE */
@media (max-width: 768px) {
  h1 { font-size: 36px; }
  section { padding: 80px 0; }
}


/* EDITORIAL VISUAL SYSTEM */

.full-image {
  height: 90vh;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.full-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,87,139,0.25),
    rgba(0,0,0,0.55)
  );
  z-index: 1;
}

.overlay-content {
  position: absolute;
  bottom: 60px;
  left: 60px;
  color: white;
  max-width: 600px;
  z-index: 2; /* 🔥 ini kunci */
}

.overlay-content h1 {
  color: white;
  font-size: 56px;
}

.overlay-content p {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
}

.overlay-content a {
  position: relative;
  z-index: 3;
}

/* SPLIT EDITORIAL */
.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  min-height: 80vh;
}

.split.reverse {
  grid-template-columns: 1fr 1.2fr;
}

.split-image {
  height: 100%;
  background-size: cover;
  background-position: center;
}

.split-content {
  padding: 80px;
}

/* STATEMENT BLOCK */
.statement {
  font-size: 42px;
  line-height: 1.3;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: var(--primary);
}

/* SPACING */
.spacer-xl {
  height: 120px;
}

/* TEXT MINIMAL */
.eyebrow {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 10px;
}

.lead {
  font-size: 18px;
  max-width: 480px;
}

section.section-soft {
  background: #BEE7FF;
  background: rgba(0, 136, 204, 0.12);
}

.highlight {
  color: #0074B9;
}

.divider {
  width: 60px;
  height: 2px;
  background: #00578B;
  margin-bottom: 20px;
}

.logo {
  height: 32px;
  width: auto;
  display: block;
}

.logo:hover {
  opacity: 0.8;
  transition: 0.2s ease;
}

.footer {
  background: #00578B;
  color: #ffffff;
  padding: 60px 0 30px;
  margin-top: 60px;
}

.footer a {
  color: rgba(255,255,255,0.85);
}

.footer a:hover {
  color: #ffffff;
}

.footer p {
  color: rgba(255,255,255,0.7);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-brand p {
  color: rgba(255,255,255,0.75);  
  margin: 0; /* 🔥 ini kunci */
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(100px, 1fr));
  gap: 8px 20px;
  padding-top: 4px;
}

.footer-nav a {
  display: inline-block;
  min-width: 160px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
}

.footer-contact p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);  
  margin: 0;          /* 🔥 ini kunci */
  padding-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 30px;
  padding-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 30px;
  padding-top: 20px;
  font-size: 13px;
}

  .footer-brand {
    max-width: 280px;
    margin-top: 0;
  }

  .footer-logo {
    height: 26px;
    width: auto;
  }

  .footer-logo-row {
    margin-bottom: 30px;
  }


/* ===== ABOUT PAGE ===== */

.about-intro h1 {
  max-width: 800px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.center-text {
  max-width: 700px;
  margin: 20px auto;
  text-align: center;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.logo-grid img {
  max-height: 50px;
  margin: 0 auto;
}

.values-list p {
  margin: 6px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.why-card {
  padding: 26px;
  background: #ffffff;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  border-top: 4px solid #0074B9;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.why-card h4 {
  margin-bottom: 10px;
}

.why-card p {
  color: #6b7280;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.our-brands {
  padding: 100px 0;
}

.brand-group {
  margin-top: 50px;
}

.brand-title {
  margin-bottom: 15px;
  color: #0074B9;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand-row img {
  width: 150px;
}

.brand-row p {
  max-width: 600px;
  color: #6b7280;
}

.logo-strip {
  display: flex;
  gap: 30px;
  align-items: center;
}

.logo-strip img {
  height: 40px;
  opacity: 0.85;
}

.image-intro {
  background-image: url('about.jpg');
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.image-intro .container {
  background: rgba(0,0,0,0.6);
  padding: 80px 40px;
}

.about-intro p {
  color: rgba(255,255,255,0.95);
}

.closing {
  padding: 60px 0;
  text-align: center;
}

.closing p {
  max-width: 600px;
  margin: 15px auto;
}




/* ===== APPROACH PAGE ===== */

/* INTRO */
.approach-intro {
  padding: 100px 0 80px;
}

.approach-intro h1 {
  max-width: 800px;
  font-size: 32px;
  line-height: 1.4;
}

.approach-intro p {
  max-width: 700px;
  margin-top: 20px;
  color: #374151;
}


/* FRAMEWORK */
.approach-framework {
  padding: 80px 0;
}

.framework-visual {
  margin: 50px 0;
}

.framework-visual img {
  max-width: 800px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

.framework-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.framework-grid p {
  color: #6b7280;
}


/* COLLABORATION */
.approach-collaboration {
  padding: 80px 0;
}

.approach-collaboration h2 {
  margin-bottom: 20px;
}

.approach-collaboration p {
  max-width: 720px;
  margin-top: 18px;
}



/* ===== SERVICES PAGE ===== */

.services-page section {
  padding: 60px 0;
}

.services-intro h1 {
  max-width: 800px;
  font-size: 32px;
}

.services-main p {
  max-width: 700px;
}


/* DOMAIN (LEVEL 1) */
.service-domain {
  margin-top: 30px;
}

.domain-header {
  width: 100%;
  padding: 16px;
  font-size: 18px;
  font-weight: 600;
  background: #f5f9fc;
  border: 1px solid #e5e7eb;
  cursor: pointer;
}


/* LEVEL 2 */
.domain-content {
  display: block;
  border: 1px solid #e5e7eb;
  border-top: none;
  padding: 15px;
}

.sub-header{
  width:100%;
  text-align:left;
  padding:16px;
  font-weight:600;
  background:#f8fafc;
  border:1px solid #e5e7eb;
  border-radius:8px;
  cursor:pointer;
  margin-top:10px;
}

.sub-content {
  display: block;
  padding-left: 15px;
}

.sub-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding-left: 15px;
}

.sub-content.open {
  padding-top: 10px;
}

.sub-content li {
  margin: 4px 0;
  color: #6b7280;
}

.services-secondary {
  padding: 60px 0;
}

.services-secondary p {
  max-width: 700px;
  margin-bottom: 15px;
}

.services-secondary ul {
  padding-left: 20px;
}

.services-secondary li {
  margin: 6px 0;
}

.services-cta {
  padding: 60px 0;
  text-align: center;
}

.services-cta p {
  max-width: 700px;
  margin: 15px auto 20px;
}

.esg-overview{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin:40px 0 50px;
}

.esg-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:14px;
  padding:28px;
  text-decoration:none;
  color:#0f172a;
  font-weight:600;
  transition:.25s;
}

.esg-card:hover{
  transform:translateY(-4px);
}

.environmental{
  border-top:4px solid #0f766e;
}

.social{
  border-top:4px solid #2563eb;
}

.governance{
  border-top:4px solid #1e3a8a;
}

.service-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:14px;
  padding:30px;
  margin-top:25px;
}

.alt-bg{
  background:#f8fafc;
}


.service-domain {
  margin-bottom: 30px;
}

.domain-content {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.sub-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  font-weight: 600;
  background: #f8fafc;
  background: #BEE7FF;
  background: var(--light);
  border: none;
  border-bottom: 1px solid #e5e7eb;
  cursor: pointer;
  transition: 0.2s;
}

.sub-header:hover {
  background: #eef2f7;
  background: #0074B9;
  color: #ffffff;
}

.sub-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 16px;
  background: #fff;
}

.sub-content.open {
  padding-top: 12px;
  padding-bottom: 12px;
}

.sub-content li {
  margin: 6px 0;
  color: #4b5563;
}

.icon {
  font-size: 12px;
  margin-left: 10px;
  opacity: 0.7;
}







/* ===== CONTACT PAGE ===== */

.contact-intro {
  padding: 60px 0 40px;
}

.contact-intro h1 {
  max-width: 700px;
}

.contact-info {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-block p {
  margin: 8px 0;
}

.contact-links {
  margin-top: 40px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-collaboration {
  padding: 50px 0;
}

.contact-collaboration p {
  max-width: 700px;
}

.contact-quick {
  padding: 60px 0;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.quick-card {
  padding: 25px;
  border: 1px solid #e5e7eb;
}

.contact-closing {
  padding: 60px 0;
  text-align: center;
}

.contact-closing p {
  max-width: 600px;
  margin: 15px auto;
}



.contact-hero {
  padding: 70px 0 40px;
  text-align: center;
}

.contact-hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.contact-cta {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}

.contact-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  line-height: 1;
}


/* OUTLINE BUTTON (Email) */
.contact-cta .btn-outline {
  border: 1px solid #00578B;
  color: #00578B;
  background: transparent;
}

.btn-outline:hover {
  color: #ffffff;
  background: var(--secondary);
}

/* ===== OFFICE SECTION ===== */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 25px;
}

.contact-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 25px;
  background: #fff;
}

.contact-card.primary {
  border: 2px solid #0f766e;
}

.contact-card h2 {
  margin-bottom: 10px;
}

.contact-meta {
  margin-top: 10px;
  font-weight: 500;
}

.badge {
  display: inline-block;
  font-size: 12px;
  background: #0f766e;
  color: #fff;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

/* ===== ENGAGEMENT (FORM + MAP) ===== */

.contact-engagement {
  padding: 60px 0;
}

.engagement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form {
  border: 1px solid #e5e7eb;
  padding: 25px;
  border-radius: 12px;
  background: #fff;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
}

.contact-map {
  border: 1px solid #e5e7eb;
  padding: 25px;
  border-radius: 12px;
  background: #fff;
}

.contact-map iframe {
  margin-top: 15px;
  border-radius: 10px;
}

/* ===== QUICK ACCESS IMPROVEMENT ===== */

.section-label {
  font-size: 12px;
  letter-spacing: 1px;
  color: #6b7280;
  margin-bottom: 10px;
}

.quick-card {
  background: #fff;
  border-radius: 12px;
  transition: 0.2s;
}

.quick-card:hover {
  transform: translateY(-3px);
  border-color: #0f766e;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .contact-grid,
  .engagement-grid,
  .quick-grid {
    grid-template-columns: 1fr;
  }

  .contact-cta {
    flex-direction: column;
    align-items: center;
  }
}




/* ===== INDUSTRIES PAGE ===== */

.industries-intro {
  padding: 60px 0 40px;
}

.industries-intro h1 {
  max-width: 800px;
}

.industries-list {
  padding: 60px 0;
}

.industry-block {
  margin-bottom: 50px;
}

.industry-block h2 {
  margin-bottom: 10px;
  color: #0074B9;
}

.industry-block p {
  max-width: 700px;
  margin-bottom: 15px;
}

.industry-logos {
  min-height: 50px;
  border-top: 1px solid #e5e7eb;
  padding-top: 15px;
}

.industries-closing {
  padding: 50px 0;
}

.industries-closing p {
  max-width: 700px;
}

.industries-cta {
  padding: 60px 0;
  text-align: center;
}

.industries-cta p {
  max-width: 600px;
  margin: 15px auto;
}


/* ===== INSIGHTS PAGE ===== */

.insights-intro {
  padding: 60px 0 40px;
}

.insights-intro h1 {
  max-width: 800px;
}


/* FEATURED */
.featured-insight .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.featured-image {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.featured-image img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}


.featured-content p {
  margin: 15px 0;
}


/* GRID */
.insights-list {
  padding: 60px 0;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.insight-card {
  padding: 20px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
}

.insight-card .type {
  font-size: 12px;
  color: #0074B9;
  margin-bottom: 5px;
}

.insight-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.insight-card p {
  color: #6b7280;
}

.insight-card a {
  display: inline-block;
  margin-top: 10px;
}

.card-image {
  overflow: hidden;
  margin-bottom: 12px;

}

.card-image img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* TOPICS */
.insights-topics {
  padding: 40px 0;
}

.topic-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.topic-row span {
  padding: 6px 12px;
  border: 1px solid #e5e7eb;
  font-size: 13px;
}


/* CTA */
.insights-cta {
  padding: 60px 0;
  text-align: center;
}

.insights-cta p {
  max-width: 600px;
  margin: 15px auto;
}












@media (max-width: 768px) {

  /* ===== BASIC LAYOUT ===== */
  section {
    padding: 60px 0;
  }

  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-image {
    order: 1;
  }

  .split.reverse .split-content {
    order: 2;
  }

  .split-image {
    height: 240px;
  }

  .split-content {
    padding: 30px 20px;
  }


  /* ===== HERO & CTA (FIX PROPER) ===== */
  .full-image {
    height: 420px;
  }

  .overlay-content {
    bottom: 60px;
    left: 20px;
    right: 20px;
    max-width: none;
  }

  .overlay-content h1 {
    font-size: 30px;
  }


  /* ===== TRANSITION ONLY ===== */
  .full-image--transition {
    height: 150px;
  }


  /* ===== INSIGHTS ===== */
  .grid {
    grid-template-columns: 1fr !important;
  }

  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }  

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 5px;
  }

  .nav-links a {
    font-size: 13px;
    padding: 6px 0;
  }  

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
}
