/* ==========================================================================
   PT PUTRA BANYU MAS - OFFICIAL DESIGN SYSTEM & STYLESHEET
   Colors inspired by Official Company Profile Presentation Deck:
   Deep Navy (#091b2c), Teal (#008080 / #0e7490), Amber Gold (#f59e0b), Light (#f8fafc)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Primary Corporate Colors */
  --navy-950: #050e18;
  --navy-900: #091b2c; /* Cover & Visi-Misi slide background */
  --navy-850: #0c233a;
  --navy-800: #102d4b;
  --navy-700: #19446c;
  --navy-600: #235889;

  /* Teal & Cyan Accents (From Slide 02 Misi, Badges, Slide Headers) */
  --teal-600: #006666;
  --teal-500: #008080; /* Core presentation teal */
  --teal-400: #0d9488;
  --teal-300: #14b8a6;
  --teal-200: #5eead4;
  --teal-100: #ccfbf1;
  --teal-50:  #f0fdfa;

  /* Amber & Gold Accents (From Underlines, Number Badges, Highlight Item 05) */
  --amber-600: #d97706;
  --amber-500: #f59e0b; /* Core presentation gold/amber */
  --amber-400: #fbbf24;
  --amber-300: #fcd34d;
  --amber-100: #fef3c7;
  --amber-50:  #fffbeb;

  /* Neutral Backgrounds & Cards (From Slide 01, 03, 04) */
  --bg-light: #f8fafc;
  --bg-card: #ffffff;
  --border-light: #e2e8f0;
  --border-dark: rgba(255, 255, 255, 0.12);

  /* Typography Colors */
  --text-dark: #091b2c;
  --text-dark-muted: #475569;
  --text-dark-subtle: #64748b;
  --text-light: #f8fafc;
  --text-light-muted: #cbd5e1;
  --text-light-subtle: #94a3b8;

  /* Typography */
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Montserrat', 'Plus Jakarta Sans', sans-serif;

  /* Shadows & Glassmorphism */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 25px rgba(0, 128, 128, 0.35);
  --shadow-glow-gold: 0 0 25px rgba(245, 158, 11, 0.35);

  --glass-bg-dark: rgba(9, 27, 44, 0.85);
  --glass-bg-light: rgba(255, 255, 255, 0.9);
  --glass-border: 1px solid rgba(255, 255, 255, 0.15);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ==========================================================================
   Base & Reset
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   Header & Navbar (Sticky Glassmorphism)
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg-dark);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color var(--transition-normal), box-shadow var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: var(--shadow-lg);
  background: rgba(6, 17, 28, 0.95);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1010;
}

.brand-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

/* Main Navigation Menu */
.main-nav {
  display: flex;
  align-items: center;
  max-width: calc(100% - 360px);
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.6rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.2rem 0;
}

.nav-list::-webkit-scrollbar {
  display: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: #cbd5e1;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.35rem 0.4rem;
  position: relative;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.nav-link .nav-num {
  font-size: 0.68rem;
  color: var(--teal-300);
  font-weight: 700;
  opacity: 0.9;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--teal-400), var(--amber-500));
  transition: width var(--transition-normal);
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.4rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
  color: #091b2c;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
}

.btn-teal {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 128, 128, 0.35);
}

.btn-teal:hover {
  background: linear-gradient(135deg, var(--teal-400), var(--teal-500));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 128, 128, 0.45);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--teal-300);
  color: var(--teal-300);
  background: rgba(20, 184, 166, 0.1);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy-900);
  border: 1.5px solid var(--navy-900);
}

.btn-outline-dark:hover {
  background: var(--navy-900);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1010;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  margin: 5px 0;
  background: #ffffff;
  border-radius: 2px;
  transition: all var(--transition-normal);
}

/* ==========================================================================
   Side Floating Slide Dock (Slide Switcher [00] - [04])
   Directly satisfies: "Setiap gambar memiliki menu masing-masing"
   ========================================================================== */

.slide-dock {
  position: fixed;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 990;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: rgba(9, 27, 44, 0.88);
  backdrop-filter: blur(14px);
  padding: 0.6rem 0.4rem;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-xl);
}

.dock-item {
  display: flex;
  align-items: center;
  position: relative;
  text-decoration: none;
}

.dock-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
  border: 1.5px solid transparent;
}

.dock-tooltip {
  position: absolute;
  right: 48px;
  background: var(--navy-950);
  color: #ffffff;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.dock-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 5px solid var(--navy-950);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.dock-item:hover .dock-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.dock-item:hover .dock-btn {
  background: rgba(20, 184, 166, 0.2);
  color: var(--teal-300);
  border-color: var(--teal-400);
}

.dock-item.active .dock-btn {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  color: #ffffff;
  border-color: var(--amber-500);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.5);
  transform: scale(1.12);
}

/* ==========================================================================
   Slide Header Elements (Matching Slide Deck Format)
   Format: "PT PUTRA BANYU MAS / 0X" + Title + Gold Underline Bar
   ========================================================================== */

.slide-meta-tag {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-500);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.section-dark .slide-meta-tag {
  color: var(--teal-300);
}

.slide-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy-900);
  margin-bottom: 0.85rem;
  letter-spacing: -0.5px;
}

.section-dark .slide-title {
  color: #ffffff;
}

.gold-accent-bar {
  width: 72px;
  height: 5px;
  background: var(--amber-500);
  border-radius: 2px;
  margin-bottom: 2.2rem;
}

/* ==========================================================================
   SECTION 00: HERO COVER (Slide 0)
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  background-color: var(--navy-900);
  color: #ffffff;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  height: 100%;
  z-index: 1;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-backdrop::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--navy-900) 0%,
    rgba(9, 27, 44, 0.92) 25%,
    rgba(9, 27, 44, 0.4) 65%,
    rgba(9, 27, 44, 0.15) 100%
  );
}

.hero-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
  background-size: 32px 32px;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 680px;
  padding: 4rem 0;
}

/* Logo Box matching Slide 0 */
.hero-logo-card {
  display: inline-flex;
  background: #ffffff;
  padding: 0.9rem 1.8rem;
  border-radius: 6px;
  box-shadow: var(--shadow-xl);
  margin-bottom: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-logo-card img {
  height: 48px;
  width: auto;
}

.hero-category {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal-300);
  margin-bottom: 1rem;
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 1.4rem;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 1.35rem;
  font-weight: 400;
  color: #e2e8f0;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

.hero-subtitle strong {
  color: var(--amber-400);
  font-weight: 600;
}

.hero-motto-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--amber-400);
  text-transform: uppercase;
  margin-bottom: 2.2rem;
}

.hero-motto-bar span.bullet {
  color: var(--teal-300);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   SECTION 01: TENTANG PERUSAHAAN (Slide 01)
   ========================================================================== */

.about-section {
  padding: 6.5rem 0;
  background-color: var(--bg-light);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 4rem;
  align-items: start;
}

.about-lead {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.45;
  margin-bottom: 1.8rem;
}

.about-description {
  font-size: 1.1rem;
  color: var(--text-dark-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-image-card {
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  position: relative;
}

.about-image-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.about-image-card:hover img {
  transform: scale(1.03);
}

.about-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, transparent, rgba(9, 27, 44, 0.85));
  color: #ffffff;
  padding: 1.2rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Right Stats & Location Column (Slide 01) */
.about-side-panel {
  border-left: 2px solid var(--border-light);
  padding-left: 3rem;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.stat-box {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 4.8rem;
  font-weight: 800;
  color: var(--teal-500);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -2px;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dark-subtle);
  margin-bottom: 0.5rem;
}

.stat-extra {
  font-size: 0.95rem;
  color: var(--text-dark-muted);
}

.location-box {
  background: #ffffff;
  padding: 1.8rem;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  border-top: 4px solid var(--teal-500);
}

.location-label {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dark-subtle);
  margin-top: 1rem;
}

.maps-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-900);
  text-decoration: underline;
  text-underline-offset: 4px;
  word-break: break-all;
  line-height: 1.4;
  transition: color var(--transition-fast);
}

.maps-link-btn:hover {
  color: var(--teal-500);
}

.maps-link-btn svg {
  flex-shrink: 0;
  color: var(--amber-500);
}

/* ==========================================================================
   SECTION 02: VISI, MISI & NILAI INTI (Slide 02)
   ========================================================================== */

.vision-mission-section {
  padding: 6.5rem 0;
  background-color: var(--navy-900);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

/* Visi Card */
.visi-card {
  background: rgba(16, 45, 75, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 2.8rem;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  position: relative;
}

.vm-tag {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--amber-400);
  margin-bottom: 1.4rem;
}

.visi-card .vm-tag {
  color: var(--amber-400);
}

.visi-text {
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.65;
  color: #ffffff;
}

/* Misi Card (Rich Teal Container matching Slide 02) */
.misi-card {
  background: var(--teal-500);
  border-radius: 10px;
  padding: 2.5rem 2.8rem;
  color: #ffffff;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.misi-card .vm-tag {
  color: #ffffff;
  opacity: 0.9;
}

.misi-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.misi-list li {
  font-size: 0.96rem;
  line-height: 1.55;
  position: relative;
  padding-left: 1.5rem;
  color: #ffffff;
}

.misi-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: -2px;
  font-size: 1.4rem;
  color: var(--amber-300);
}

/* 4 Core Values / Nilai Inti (Bottom row of Slide 02) */
.core-values-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-card {
  background: rgba(16, 45, 75, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.6rem 1.4rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all var(--transition-normal);
}

.value-card:hover {
  transform: translateY(-4px);
  background: rgba(25, 68, 108, 0.9);
  border-color: var(--teal-300);
}

.value-card .val-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--amber-400);
}

.value-card .val-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: #ffffff;
}

/* Highlight for Value 04 (Perbaikan berkelanjutan) matching slide 02 teal block */
.value-card.highlight {
  background: var(--teal-500);
  border-color: var(--teal-300);
  box-shadow: var(--shadow-glow);
}

.value-card.highlight .val-num {
  color: #ffffff;
}

.value-card.highlight .val-title {
  color: #ffffff;
}

/* ==========================================================================
   SECTION 03: PRODUK ATAU JASA (Slide 03)
   ========================================================================== */

.services-section {
  padding: 6.5rem 0;
  background-color: var(--bg-light);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

/* 3 Pillar Cards with Top Colored Accent Borders */
.service-pillar-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 3rem 2.2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  position: relative;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

/* Top colored accent borders */
.service-pillar-card.border-teal {
  border-top: 6px solid var(--teal-500);
}

.service-pillar-card.border-gold {
  border-top: 6px solid var(--amber-500);
}

.pillar-number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--amber-500);
  margin-bottom: 1.2rem;
  line-height: 1;
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 1.4rem;
}

.pillar-content {
  font-size: 1.05rem;
  color: var(--text-dark-muted);
  line-height: 1.7;
}

/* Interactive Service Showcase / Project Categories */
.service-showcase {
  background: #ffffff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.showcase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.showcase-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy-900);
}

.service-tabs {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.55rem 1.2rem;
  border-radius: 6px;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--navy-900);
  color: #ffffff;
  border-color: var(--navy-900);
}

.service-content-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.service-content-info h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--teal-600);
  margin-bottom: 0.8rem;
}

.service-content-info p {
  color: var(--text-dark-muted);
  margin-bottom: 1.2rem;
}

.service-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  background: var(--teal-50);
  color: var(--teal-600);
  border: 1px solid var(--teal-200);
  padding: 0.35rem 0.8rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
}

.service-content-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 250px;
}

.service-content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   SECTION 04: KEUNGGULAN PERUSAHAAN (Slide 04)
   ========================================================================== */

.advantages-section {
  padding: 6.5rem 0;
  background-color: var(--bg-light);
  position: relative;
}

.advantages-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

/* List with Pill Badges & Horizontal Separators matching Slide 04 */
.advantages-list {
  display: flex;
  flex-direction: column;
  position: relative;
}

.advantage-item {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid #e2e8f0;
  transition: all var(--transition-fast);
}

.advantage-item:first-child {
  padding-top: 0;
}

.advantage-item:last-child {
  border-bottom: none;
}

.advantage-item:hover {
  transform: translateX(8px);
}

/* Pill Badges (Teal for 01-04, Gold for 05) */
.adv-badge {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--teal-500);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

.advantage-item:hover .adv-badge {
  transform: scale(1.08);
}

/* Item 05 Badge is Golden Yellow as in Slide 04 */
.adv-badge.badge-gold {
  background: var(--amber-500);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
}

.adv-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.35;
}

/* Vertical Gold Accent Bar on Right Side (Slide 04 hallmark) */
.advantages-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.adv-side-gold-line {
  position: absolute;
  right: 0;
  top: 15%;
  bottom: 15%;
  width: 5px;
  background: var(--amber-500);
  border-radius: 3px 0 0 3px;
}

.adv-card-inner {
  text-align: center;
  padding: 1rem;
}

.adv-guarantee-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  background: var(--teal-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-500);
}

.adv-card-inner h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.8rem;
}

.adv-card-inner p {
  color: var(--text-dark-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   SECTION 05: KONTAK & LOKASI
   ========================================================================== */

.contact-section {
  padding: 6.5rem 0;
  background: linear-gradient(180deg, var(--bg-light) 0%, #eef2f6 100%);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info-panel {
  background: var(--navy-900);
  color: #ffffff;
  padding: 3rem 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
}

.contact-info-panel .slide-meta-tag {
  color: var(--teal-300);
}

.contact-info-panel h3 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact-info-panel p {
  color: var(--text-light-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-bottom: 2.5rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.detail-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-400);
  flex-shrink: 0;
}

.detail-content h5 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--teal-300);
  margin-bottom: 0.2rem;
}

.detail-content a,
.detail-content p {
  color: #ffffff;
  font-size: 0.98rem;
}

.detail-content a:hover {
  color: var(--amber-400);
}

/* Contact Form */
.contact-form-panel {
  background: #ffffff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.contact-form-panel h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.5rem;
}

.contact-form-panel p {
  color: var(--text-dark-muted);
  margin-bottom: 1.8rem;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 1.4rem;
}

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

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.4rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 6px;
  border: 1.5px solid var(--border-light);
  background: var(--bg-light);
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 128, 128, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background-color: var(--navy-950);
  color: #ffffff;
  padding: 4.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  color: var(--text-light-subtle);
  margin-top: 1.2rem;
  line-height: 1.7;
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.2rem;
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--amber-500);
  border-radius: 2px;
}

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

.footer-links a {
  color: var(--text-light-subtle);
  font-size: 0.92rem;
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a:hover {
  color: var(--amber-400);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: var(--text-light-subtle);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   Floating Action Buttons & Modal
   ========================================================================== */

/* WhatsApp Quick Float */
.wa-float-btn {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 990;
  background: #25d366;
  color: #ffffff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-bounce);
}

.wa-float-btn:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

/* Slide Presentation Mode Toggle Float */
.mode-toggle-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 990;
  background: var(--navy-900);
  color: var(--amber-400);
  border: 1.5px solid var(--amber-500);
  border-radius: 30px;
  padding: 0.65rem 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(8px);
  transition: all var(--transition-normal);
}

.mode-toggle-btn:hover {
  background: var(--amber-500);
  color: var(--navy-900);
  transform: translateY(-2px);
}

/* Quick Consultation Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 17, 28, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog {
  background: #ffffff;
  border-radius: 12px;
  max-width: 540px;
  width: 100%;
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  transform: scale(0.92) translateY(20px);
  transition: transform var(--transition-normal);
  border-top: 6px solid var(--teal-500);
}

.modal-overlay.active .modal-dialog {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark-subtle);
  line-height: 1;
  transition: color var(--transition-fast);
}

.modal-close-btn:hover {
  color: var(--navy-900);
}

/* ==========================================================================
   Presentation Slide Deck Fullscreen Mode
   Allows presenting the landing page as real 16:9 slides exactly matching
   the user's slide decks!
   ========================================================================== */

body.slide-mode {
  overflow: hidden;
  height: 100vh;
}

body.slide-mode .site-header {
  transform: translateY(-100%);
}

body.slide-mode .slide-deck-viewport {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  position: relative;
}

body.slide-mode section {
  display: none;
  height: 100vh;
  width: 100vw;
  overflow-y: auto;
}

body.slide-mode section.active-slide-view {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

/* ==========================================================================
   SECTION 05: STRUKTUR & TIM (Slide 05)
   ========================================================================== */

.team-section {
  padding: 6.5rem 0;
  background-color: var(--navy-900);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.org-chart-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 850px;
  margin: 3rem auto 0;
  position: relative;
}

/* Org Chart Nodes */
.org-card {
  padding: 1.4rem 2.5rem;
  border-radius: 10px;
  text-align: center;
  position: relative;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-lg);
  min-width: 260px;
}

.org-card:hover {
  transform: translateY(-4px);
}

.org-card-teal {
  background: var(--teal-500);
  border: 1.5px solid var(--teal-300);
  color: #ffffff;
  box-shadow: 0 0 25px rgba(0, 128, 128, 0.4);
}

.org-card-navy {
  background: rgba(16, 45, 75, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.org-card-navy:hover {
  border-color: var(--teal-400);
  background: rgba(25, 68, 108, 0.95);
}

.org-role {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.org-card-teal .org-role {
  color: #ffffff;
  opacity: 0.95;
}

.org-card-navy .org-role {
  color: var(--teal-300);
}

.org-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

/* Tree Connector Lines */
.org-line-vert {
  width: 2px;
  height: 38px;
  background: #38bdf8;
  margin: 0 auto;
}

.org-branch-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.org-branch-line-horiz {
  width: 70%;
  height: 2px;
  background: #38bdf8;
  margin: 0 auto;
  position: relative;
}

.org-bottom-row {
  display: flex;
  justify-content: space-between;
  width: 85%;
  margin-top: 0;
}

.org-bottom-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ==========================================================================
   SECTION 06: PORTOFOLIO & PENGALAMAN (Slide 06)
   ========================================================================== */

.portfolio-section {
  padding: 6.5rem 0;
  background-color: var(--bg-light);
  position: relative;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 3.5rem;
  align-items: center;
}

.portfolio-meta-header {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.portfolio-meta-header.teal {
  color: var(--teal-500);
}

.portfolio-meta-header.gold {
  color: var(--amber-500);
  margin-top: 2.2rem;
}

.portfolio-industry-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.portfolio-industry-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-900);
  padding: 0.8rem 1.2rem;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.portfolio-industry-item:hover {
  transform: translateX(6px);
  border-color: var(--teal-500);
}

.portfolio-industry-item .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal-500);
  flex-shrink: 0;
}

.portfolio-project-card {
  background: #ffffff;
  border-left: 4px solid var(--amber-500);
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--amber-500);
}

.portfolio-project-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.5rem;
}

.portfolio-project-card p {
  color: var(--text-dark-muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.portfolio-visual-panel {
  display: flex;
  flex-direction: column;
}

.portfolio-image-box {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
}

.portfolio-image-box img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.portfolio-image-box:hover img {
  transform: scale(1.03);
}

.portfolio-caption {
  font-size: 0.88rem;
  color: var(--text-dark-subtle);
  margin-top: 0.8rem;
  font-style: italic;
}

/* ==========================================================================
   SECTION 07: LEGALITAS & SERTIFIKASI (Slide 07)
   ========================================================================== */

.legalitas-section {
  padding: 6.5rem 0;
  background-color: var(--bg-light);
  position: relative;
}

.legalitas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.legalitas-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2.5rem 1.8rem 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 300px;
  justify-content: space-between;
  transition: all var(--transition-normal);
  position: relative;
}

.legalitas-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.legalitas-doc-preview {
  width: 100%;
  height: 140px;
  background: var(--bg-light);
  border-radius: 8px;
  border: 1px dashed #cbd5e1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-dark-subtle);
  margin-bottom: 1.5rem;
}

.legalitas-doc-preview svg {
  color: var(--navy-800);
  margin-bottom: 0.5rem;
}

.legalitas-doc-preview span {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Square colored indicators matching Slide 07 */
.doc-square-indicator {
  width: 32px;
  height: 32px;
  margin-bottom: 1.2rem;
}

.doc-square-teal {
  background-color: var(--teal-500);
}

.doc-square-gold {
  background-color: var(--amber-500);
}

.legalitas-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.legalitas-bottom-note {
  text-align: center;
  color: var(--text-dark-subtle);
  font-size: 0.98rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  max-width: 800px;
  margin: 0 auto;
}

/* ==========================================================================
   SECTION 08: CLIENT / PARTNER (Slide 08)
   ========================================================================== */

.client-section {
  padding: 6.5rem 0;
  background-color: var(--navy-900);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

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

/* 6 Client White Rectangular Cards (2x3 Grid) matching Slide 08 */
.client-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.client-logo-card {
  background: #ffffff;
  height: 90px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.client-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.client-logo-card span {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Testimonial Panel with Vertical Gold Line matching Slide 08 */
.testimonial-panel {
  position: relative;
  padding-left: 2.5rem;
}

.testimonial-gold-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--amber-500);
  border-radius: 3px;
}

.testimonial-quote {
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--teal-300);
  font-weight: 600;
}

/* ==========================================================================
   SECTION 09: MARI BERKOLABORASI (Slide 09)
   ========================================================================== */

.collab-section {
  padding: 6.5rem 0;
  background-color: var(--bg-light);
  position: relative;
}

.collab-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

/* List with Square Colored Indicators matching Slide 09 */
.collab-list {
  display: flex;
  flex-direction: column;
}

.collab-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.collab-item:first-child {
  padding-top: 0;
}

.collab-square {
  width: 22px;
  height: 22px;
  border-radius: 3px;
  flex-shrink: 0;
}

.collab-square.square-teal {
  background-color: var(--teal-500);
}

.collab-square.square-gold {
  background-color: var(--amber-500);
}

.collab-label {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.collab-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark-muted);
}

.collab-value a {
  color: var(--navy-900);
  transition: color var(--transition-fast);
}

.collab-value a:hover {
  color: var(--teal-500);
  text-decoration: underline;
}

.collab-cta-text {
  margin-top: 2.2rem;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--teal-500);
  font-family: var(--font-heading);
}

/* Logo Box on bottom right matching Slide 09 */
.collab-logo-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.collab-logo-box img {
  height: 70px;
  width: auto;
  margin-bottom: 1.5rem;
}

.collab-logo-box p {
  color: var(--text-dark-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   SECTION: IDENTITAS YANG KONSISTEN / BRAND
   ========================================================================== */

.brand-identity-section {
  padding: 7rem 0;
  background-color: var(--navy-900);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.brand-identity-tag {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber-400);
  margin-bottom: 2.8rem;
  display: inline-block;
}

.brand-card-center {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 3.5rem 5rem;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 35px rgba(2, 132, 199, 0.2);
  margin-bottom: 2.8rem;
  max-width: 550px;
  width: 90%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform var(--transition-normal);
}

.brand-card-center:hover {
  transform: scale(1.03);
}

.brand-card-center img {
  height: 85px;
  width: auto;
}

.brand-quote {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  color: #ffffff;
  max-width: 750px;
  margin: 0 auto 1.5rem;
  line-height: 1.4;
  letter-spacing: -0.3px;
}

.brand-footer-tag {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--teal-300);
  text-transform: uppercase;
  opacity: 0.85;
}

/* ==========================================================================
   SECTION: KANTOR UTAMA (DOKUMENTASI KANTOR & WORKSHOP)
   ========================================================================== */

.office-facility-section {
  padding: 6.5rem 0;
  background-color: var(--bg-light);
  position: relative;
}

.office-card-wrapper {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
}

.office-photo-container {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
}

.office-photo-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-normal);
}

.office-card-wrapper:hover .office-photo-container img {
  transform: scale(1.02);
}

/* Dark Blue Lower Banner matching Image 2 */
.office-lower-banner {
  background: var(--navy-900);
  color: #ffffff;
  padding: 2.2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.8rem;
  border-top: 4px solid var(--amber-500);
}

.office-banner-tag {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--amber-400);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.office-banner-heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.office-banner-sub {
  font-size: 1.1rem;
  color: var(--teal-300);
  font-weight: 600;
}

.office-banner-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.office-logo-mini {
  background: #ffffff;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  box-shadow: var(--shadow-md);
}

.office-logo-mini img {
  height: 38px;
  width: auto;
}

.office-details-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2.5rem 3rem;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
}

.office-detail-box h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.office-detail-box p {
  color: var(--text-dark-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   SECTION: TIM PROFESIONAL DAN FASILITAS MODERN
   ========================================================================== */

.team-facility-section {
  position: relative;
  min-height: 620px;
  background-color: var(--navy-900);
  color: #ffffff;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6.5rem 0;
}

.tf-backdrop {
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  height: 100%;
  z-index: 1;
}

.tf-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.tf-backdrop::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--navy-900) 0%,
    rgba(9, 27, 44, 0.92) 20%,
    rgba(9, 27, 44, 0.35) 75%,
    rgba(9, 27, 44, 0.15) 100%
  );
}

.tf-content {
  position: relative;
  z-index: 10;
  max-width: 620px;
}

.tf-logo-card {
  display: inline-flex;
  background: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 2rem;
}

.tf-logo-card img {
  height: 42px;
  width: auto;
}

.tf-motto-tag {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--amber-400);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.tf-heading {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.tf-brand-tag {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--teal-300);
  margin-bottom: 2rem;
}

.tf-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.tf-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.tf-feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(0, 128, 128, 0.3);
  border: 1px solid var(--teal-400);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-300);
  flex-shrink: 0;
}

.tf-feature-text h5 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.tf-feature-text p {
  color: var(--text-light-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* Navbar Sub-Bar or Compact Scrolling */
.nav-scroll-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-scroll-container::-webkit-scrollbar {
  display: none;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-heading {
    font-size: 3rem;
  }
  
  .about-grid,
  .vm-grid,
  .advantages-container,
  .portfolio-grid,
  .client-container,
  .collab-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .legalitas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .client-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .office-details-row {
    grid-template-columns: 1fr;
  }

  .about-side-panel {
    border-left: none;
    border-top: 2px solid var(--border-light);
    padding-left: 0;
    padding-top: 2.5rem;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .core-values-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .mobile-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    background: var(--navy-950);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-150%);
    transition: transform var(--transition-normal);
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  .slide-dock {
    display: none;
  }

  .hero-backdrop,
  .tf-backdrop {
    width: 100%;
    opacity: 0.25;
  }

  .hero-heading {
    font-size: 2.4rem;
  }

  .tf-heading {
    font-size: 2.2rem;
  }

  .slide-title {
    font-size: 2.2rem;
  }

  .org-bottom-row {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .client-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-content-grid {
    grid-template-columns: 1fr;
  }

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

  .office-photo-container {
    height: 320px;
  }

  .office-lower-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .hero-heading {
    font-size: 2rem;
  }

  .brand-card-center {
    padding: 2rem 1.5rem;
  }

  .brand-quote {
    font-size: 1.25rem;
  }

  .core-values-row {
    grid-template-columns: 1fr;
  }

  .legalitas-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 3.8rem;
  }
}


