:root {
  /* Color Palette */
  --primary-color: #FF6600;
  /* Orange */
  --primary-hover: #E65C00;
  --secondary-color: #374151;
  /* Dark Grey for text */
  --bg-color: #FFFFFF;
  /* White */
  --bg-alt-color: #F3F4F6;
  /* Light Grey for sections */
  --text-color: #1F2937;
  --text-light: #6B7280;
  --white: #FFFFFF;

  /* Spacing */
  --container-width: 75%;
  /* Widened for a sleek look */
  --spacing-sm: 1.5rem;
  --spacing-md: 3rem;
  --spacing-lg: 8rem;

  /* Typography */
  --font-family: 'Inter', sans-serif;
}

html {
  scroll-padding-top: 86px;
  /* Account for fixed navbar */
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

/* Layout Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-lg) 0;
}

.bg-alt {
  background-color: var(--bg-alt-color);
}

/* Utilities */
.text-center {
  text-align: center;
}

@keyframes float-anim {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

.animate-float {
  animation: float-anim 6s ease-in-out infinite;
}

.dynamic-mesh-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 102, 0, 0.05), transparent 40%),
              radial-gradient(circle at bottom left, rgba(55, 65, 81, 0.05), transparent 40%);
  pointer-events: none;
  z-index: 0;
}

/* Product Carousel Marquee */
.product-carousel {
  /* Create fade effect on left and right edges */
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.carousel-track {
  display: inline-block;
  animation: scroll-carousel 40s linear infinite;
}

.carousel-track:hover {
  animation-play-state: paused;
}

.carousel-item {
  display: inline-block;
  position: relative;
  margin: 0 15px;
}

.carousel-img {
  height: 240px;
  width: auto;
  margin: 0;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  vertical-align: middle;
  background: white;
  padding: 1.5rem;
  border: 1px solid #f3f4f6;
  object-fit: contain;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

.carousel-img:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 25px 40px -10px rgba(0, 0, 0, 0.1), 0 10px 15px -5px rgba(255, 102, 0, 0.05);
  border-color: rgba(255, 102, 0, 0.2);
}

/* Custom Tooltip */
.carousel-item::after {
  content: attr(data-name);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--primary-color);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
  box-shadow: 0 4px 10px rgba(255, 102, 0, 0.3);
  z-index: 100;
}

.carousel-item::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  border-width: 6px;
  border-style: solid;
  border-color: var(--primary-color) transparent transparent transparent;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
  z-index: 100;
}

.carousel-item:hover::after,
.carousel-item:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-10px);
}

@keyframes scroll-carousel {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }

  /* Stop at halfway point because second half is duplicate */
}


.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--text-color);
  position: relative;
  display: inline-block;
}

/* Optional: Add a small underline needed for 'professional' look */
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  margin-top: 0.5rem;
  border-radius: 2px;
}

.text-center .section-title::after {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(255, 102, 0, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid #E5E7EB;
}

.btn-secondary:hover {
  border-color: var(--secondary-color);
  color: var(--text-color);
  transform: translateY(-2px);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: 1000;
  border-bottom: none;
  padding: 1rem 0;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.8rem 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  /* For mega menu absolute positioning */
}

.logo {
  display: flex;
  align-items: center;
}

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

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--secondary-color);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active,
.dropdown:hover .dropbtn {
  color: var(--primary-color);
}


/* Mega Menu Styles */
.dropdown {
  position: static;
}

.mega-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  /* Position right below navbar */
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-top: 1px solid #f0f0f0;
  z-index: 1000;
  padding: 2.5rem 0;
}

.dropdown:hover .mega-menu {
  display: block;
}

.mega-menu-container {
  display: flex;
  justify-content: flex-start;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.mega-column h4 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.mega-column a {
  display: block;
  color: #555;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.mega-column a:hover {
  color: var(--primary-color);
}

/* Search Bar */
.navbar-search input {
  padding: 0.5rem 1.2rem;
  border: 1px solid #cbd5e1;
  border-radius: 9999px;
  /* Pill shape */
  outline: none;
  font-family: inherit;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  width: 200px;
}

.navbar-search input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
  width: 250px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-color);
  transition: 0.3s;
}

/* Page Hero */
.page-hero {
  padding: calc(var(--spacing-lg) + 60px) 0 var(--spacing-md);
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-content-wrapper {
  padding: var(--spacing-lg) 0;
  background-color: var(--bg-alt-color);
}

/* Hero Section */
.hero {
  margin-top: 84px;
  /* Offset for fixed navbar */
  padding-top: 10px;
  /* Custom top padding */
  padding-bottom: 50px;
  /* Custom bottom padding */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 74px);
  /* Full height minus navbar */
  position: relative;
  overflow: visible;
  color: var(--text-color);
  background-color: transparent;
  /* Changed from solid color to let main background bleed through */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 2;
  /* Overlay is no longer used since video is removed, keeping empty for now */
  pointer-events: none;
  /* Allow clicks to pass through if needed */
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Align items to the left */
  text-align: left;
  /* Align text to the left */
  gap: var(--spacing-md);
  width: 100%;
  /* max-width removed to allow full width alignment */
}

.hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #7A7A73;
  white-space: nowrap;
}

.hero-text p {
  font-size: 1.25rem;
  color: #111111;
  /* Light gray for better readability on dark bg */
  margin-bottom: 2rem;
  max-width: 700px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}



/* About Section */
.about-section {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../assets/bop.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* Optional: Parallax effect */
  color: var(--white);
}

.about-content {
  display: block;
  width: 100%;
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }
}

.about-text h2,
.about-text p,
.about-text .profile-item,
.about-text .profile-item .label,
.about-text .profile-item .value,
.about-text .profile-item .separator,
.stats .stat-item p,
.about-map .map-caption {
  color: var(--white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
  /* Improve readability */
}

/* Match Hero description font size */
.about-text p,
.profile-item {
  font-size: 1.25rem;
  line-height: 1.6;
}

.profile-item {
  display: flex;
  margin-bottom: 0.5rem;
}

.profile-item .label {
  width: 160px;
  /* Fixed width to align colons */
  flex-shrink: 0;
  font-weight: 600;
}

.profile-item .separator {
  margin-right: 1.5rem;
  /* Space between colon and value */
  font-weight: 600;
}

.profile-item .value {
  flex: 1;
}

.map-pin {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: var(--primary-color);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 102, 0, 0.8);
  cursor: pointer;
}

.map-pin::after {
  content: attr(title);
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.map-pin:hover::after {
  opacity: 1;
}

/* Approximate positions for visualization */
.pin-duri {
  top: 40%;
  left: 20%;
}

.pin-jakarta {
  top: 75%;
  left: 35%;
}

.pin-balikpapan {
  top: 50%;
  left: 55%;
}

/* Ensure stats numbers are still visible */
.stat-item h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.stat-item p {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 0;
}

.image-placeholder {
  width: 100%;
  height: 350px;
  background-color: #E5E7EB;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #9CA3AF;
  font-weight: 600;
}

/* Products Section */
.products-section {
  background-color: #F9FAFB;
  /* Light gray background */
  padding-top: calc(var(--spacing-lg) + 86px);
  /* account for fixed navbar height */
}

.main-product-image {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  border-radius: 12px;
}

.main-product-image img,
.main-product-image video {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.main-product-image:hover video,
.main-product-image:hover img {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.parallax-bg {
  background-attachment: fixed;
  background-position: center 20%;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 500px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: block;
  /* override flex from main-product-image */
}

.service-highlight {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
  border: 1px solid #E5E7EB;
}

.service-text {
  flex: 1.2;
  padding: 2.5rem;
  width: 100%;
  /* Ensure text container takes full width */
}

.service-text h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.service-text h4 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #374151;
  display: inline-block;
  padding-bottom: 0.25rem;
  border-bottom: none;
  /* Overridden for line drawing */
}

.two-column-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  width: 100%;
}

.service-list ul {
  padding-left: 1.2rem;
  list-style-type: disc;
  margin-bottom: 0;
}

.service-list li {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .two-column-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.product-header {
  margin-top: 4rem;
  margin-bottom: 2rem;
  text-align: center;
}

.product-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  margin-bottom: 2rem;
  border: 1px solid #E5E7EB;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
  /* subtle lift up */
}

.product-item h3 {
  font-size: 1.5rem;
  color: #111;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: none;
  /* Overridden for line drawing */
}

/* Legend Grid Layout for Component Diagrams */
.legend-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.legend-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: white;
  padding: 1.25rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
  border: 1px solid #f3f4f6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.legend-card:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 12px -2px rgba(0, 0, 0, 0.08);
}

.legend-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
  position: relative;
  z-index: 1;
  /* For pulse ring layering */
}

/* Colored Pulse Ring Effect */
.legend-dot::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background-color: inherit;
  /* Smartly inherits the inline color */
  animation: pulse-ring 1.8s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: -1;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.85);
    opacity: 0.8;
  }

  70% {
    transform: scale(1.6);
    opacity: 0;
  }

  100% {
    transform: scale(0.85);
    opacity: 0;
  }
}

.legend-info strong {
  display: block;
  font-size: 1.05rem;
  color: #111;
  margin-bottom: 0.35rem;
}

.legend-info p {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

/* Premium Product Card UI */
.premium-card {
  padding: 3rem;
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  background: linear-gradient(145deg, #ffffff, #fdfdfd);
}

.premium-card-header {
  margin-bottom: 2.5rem;
}

.premium-card-header .subtitle {
  color: #6b7280;
  margin-top: 0.5rem;
  font-size: 1rem;
  max-width: 800px;
}

/* Premium Tabs */
.premium-tabs {
  display: flex;
  gap: 0.5rem;
  background: #f1f5f9;
  padding: 0.35rem;
  border-radius: 10px;
}

.tab-btn {
  border: none;
  background: transparent;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.tab-btn:hover {
  color: #1e293b;
}

.tab-btn.active {
  background: white;
  color: var(--primary-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.premium-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
}

.premium-showcase {
  position: relative;
  border-radius: 16px;
  background-color: var(--bg-alt-color);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.showcase-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  background: var(--primary-color);
  opacity: 0.15;
  filter: blur(50px);
  transform: translate(-50%, -50%);
  z-index: 1;
}

.premium-showcase img {
  position: relative;
  z-index: 2;
  height: auto;
  max-height: 350px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.15));
  transition: transform 0.4s ease;
}

.premium-showcase:hover img {
  transform: translateY(-10px) scale(1.05);
  /* Interactive float */
}

.detail-group {
  margin-bottom: 2rem;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  transition: border-color 0.3s ease;
}

.detail-group:hover {
  border-color: #e2e8f0;
}

.detail-group h4 {
  color: var(--primary-color);
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.detail-group h4 .icon {
  font-size: 1.2rem;
  opacity: 0.8;
}

.packers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 0.5rem;
}

.packer-model {
  background: var(--bg-alt-color);
  /* Light grey */
  color: #374151;
  /* Dark grey */
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  /* Less rounded */
  font-size: 0.85rem;
  font-weight: 500;
  border-left: 3px solid var(--primary-color);
  /* Technical accent */
  cursor: default;
  /* Enforce static data perception */
}

/* Feature Grid Cards (Used for lists without images) */
.feature-grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.2rem 1.4rem;
  background: white;
  border: 1px solid #f1f5f9;
  border-radius: 10px;
  color: #334155;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.4;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.06);
  border-color: #cbd5e1;
}

.feature-card .icon {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .premium-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.split-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: start;
}

.prod-img img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #eee;
}

.two-col-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.simple-list.two-cols {
  columns: 2;
  column-gap: 3rem;
}

.sub-product {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px dashed #ccc;
}

.sub-product:first-of-type {
  margin-top: 1rem;
  padding-top: 0;
  border-top: none;
}

.sub-product h4 {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.specs-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 1.5rem 0;
}

.table-container h5 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

table th,
table td {
  border: 1px solid #E5E7EB;
  padding: 0.5rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

table th {
  background-color: #F3F4F6;
  font-weight: 600;
  width: 40%;
  color: #374151;
}

.center-img {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.center-img img {
  max-width: 100%;
  background: white;
  padding: 1rem;
  border: 1px solid #eee;
  border-radius: 8px;
}

@media (max-width: 768px) {

  .service-highlight,
  .split-layout,
  .specs-features {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .service-img {
    height: 200px;
  }

  .simple-list.two-cols {
    columns: 1;
  }

  .two-col-list {
    grid-template-columns: 1fr;
  }
}

/* Contact Section */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-info>p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.info-item {
  margin-bottom: 1.5rem;
}

.info-item strong {
  display: block;
  color: var(--text-color);
  margin-bottom: 0.25rem;
}

.info-item p {
  color: var(--text-light);
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid #F3F4F6;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    /* Hide for now, will toggle with JS */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .about-content,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-wrapper {
    display: flex;
    flex-direction: column-reverse;
  }

  .section {
    padding: var(--spacing-md) 0;
  }
}

/* Footer */
.site-footer {
  background-color: #1A1A1A;
  color: var(--white);
  padding: 40px 0 20px;
  position: relative;
  z-index: 20;
  overflow: hidden;
}

/* Decorative Swirl Ornament */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.25;
  /* Subtle blend */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 400' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,100 C300,350 600,-100 1200,150' fill='none' stroke='%23FF6600' stroke-width='3'/%3E%3Cpath d='M0,150 C400,400 800,0 1200,200' fill='none' stroke='%236B7280' stroke-width='2' opacity='0.6'/%3E%3Cpath d='M0,220 C500,100 900,400 1200,250' fill='none' stroke='%23FF6600' stroke-width='1.5' opacity='0.4'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  padding-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.footer-info h4,
.footer-links h4 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-info p {
  color: #9CA3AF;
  line-height: 1.6;
  max-width: 400px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
}

.footer-links ul li {
  margin-bottom: 0;
}

.footer-links ul li a {
  color: #9CA3AF;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  background-color: #111;
  color: #6B7280;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

/* Search Results Dropdown */
.search-results {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 250px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  z-index: 1001;
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid #eee;
}

.search-results a {
  padding: 12px 15px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #f9f9f9;
  font-size: 0.9rem;
  transition: background 0.2s;
  text-align: left;
}

.search-results a:last-child {
  border-bottom: none;
}

.search-results a:hover {
  background: #fdfdfd;
  color: var(--primary-color);
}

/* Scroll Reveal Animations (Corporate Style) */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(10px);
  transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal.fade-left {
  transform: translateX(-40px);
}

.reveal.fade-left.active {
  transform: translateX(0);
}

.reveal.fade-right {
  transform: translateX(40px);
}

.reveal.fade-right.active {
  transform: translateX(0);
}

.reveal-delay-1 {
  transition-delay: 0.15s;
}

.reveal-delay-2 {
  transition-delay: 0.3s;
}

.reveal-delay-3 {
  transition-delay: 0.45s;
}

/* Staggered Inside Items */
.reveal-item {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(8px);
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-item.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Scale Up / Image Zoom Reveal */
.scale-up-reveal {
  overflow: hidden;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(30px);
  filter: blur(10px);
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
}

.scale-up-reveal.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.scale-up-reveal img,
.scale-up-reveal video {
  transform: scale(1.15);
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.scale-up-reveal.active img,
.scale-up-reveal.active video {
  transform: scale(1);
}

/* Line Drawing Animations */
.draw-line-bottom {
  position: relative;
  display: inline-block;
}

.draw-line-bottom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.draw-line-bottom.active::after {
  width: 100%;
}

.section-title.draw-line::after {
  width: 0;
  transition: width 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.section-title.draw-line.active::after {
  width: 60px;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ========================================================== */
/* DEDICATED PAGES (About & Contact) */
/* ========================================================== */
.page-hero {
  margin-top: 84px;
  /* Offset for fixed navbar */
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-origin;
  color: white;
  text-align: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 51, 102, 0.7), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.page-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Specific content styling for pages */
.page-content-wrapper {
  padding: 5rem 0;
  background-color: var(--white);
}

.page-content-wrapper .premium-card {
  margin-bottom: 3rem;
  border: 1px solid #f1f5f9;
}

/* ========================================================== */
/* Custom Image Background (Home Page) */
/* ========================================================== */
.dynamic-mesh-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background-image: url('../assets/BG_web2.jpg');
  background-size: 100% auto;
  /* Mengatur tingkat Zoom */
  background-position: 60% 0%;
  /* Mengatur geser Kiri/Kanan dan Atas/Bawah */
  background-repeat: no-repeat;
}