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

/* --- Design System & CSS Variables --- */
:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Color Palette - Light Mode */
  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;
  --bg-tertiary: #f1f5f9;
  
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  
  --accent-gold: #b45309;
  --accent-gold-hover: #92400e;
  --accent-gold-light: #fef3c7;
  
  --accent-green: #047857;
  --accent-green-hover: #065f46;
  --accent-green-light: #d1fae5;
  
  --border-color: #e2e8f0;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);

  --transition-fast: 0.2s ease;
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --container-width: 1200px;
}

[data-theme="dark"] {
  /* Color Palette - Dark Mode */
  --bg-primary: #090d16;
  --bg-secondary: #0f172a;
  --bg-tertiary: #1e293b;
  
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  
  --accent-gold: #fbbf24;
  --accent-gold-hover: #f59e0b;
  --accent-gold-light: rgba(251, 191, 36, 0.1);
  
  --accent-green: #34d399;
  --accent-green-hover: #10b981;
  --accent-green-light: rgba(52, 211, 153, 0.1);
  
  --border-color: #1e293b;
  --glass-bg: rgba(15, 23, 42, 0.7);
  --glass-border: rgba(255, 255, 255, 0.05);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* --- Layout Utility --- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* --- Button Component --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
  gap: 8px;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(180, 83, 9, 0.3);
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(180, 83, 9, 0.4);
}

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

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

/* --- Navigation Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: background-color var(--transition-normal);
}

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

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: var(--text-primary);
}

.logo-text span {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 24px;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: width var(--transition-fast);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast);
  border: 1px solid var(--border-color);
}

.theme-toggle:hover {
  background-color: var(--bg-tertiary);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.sun-icon {
  display: none;
}

[data-theme="dark"] .sun-icon {
  display: block;
}

[data-theme="dark"] .moon-icon {
  display: none;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  padding: 4px;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, var(--bg-primary) 0%, var(--bg-secondary) 90%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, var(--accent-gold-light) 0%, transparent 70%);
  z-index: 0;
  filter: blur(80px);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, var(--accent-green-light) 0%, transparent 70%);
  z-index: 0;
  filter: blur(80px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 680px;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: var(--accent-gold-light);
  color: var(--accent-gold);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(180, 83, 9, 0.1);
}

.hero-tagline span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-gold);
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero-title span {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  border: 4px solid var(--bg-secondary);
  width: 100%;
  aspect-ratio: 4/5;
  background-color: var(--bg-tertiary);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hero-image-wrapper:hover .hero-img {
  transform: scale(1.05);
}

.hero-floating-card {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
  display: flex;
  align-items: center;
  gap: 16px;
  animation: float 6s ease-in-out infinite;
}

.hero-fc-1 {
  bottom: 30px;
  left: -40px;
}

.hero-fc-2 {
  top: 40px;
  right: -20px;
  animation-delay: 3s;
}

.hero-fc-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--accent-gold-light);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-fc-icon svg {
  width: 22px;
  height: 22px;
}

.hero-fc-2 .hero-fc-icon {
  background-color: var(--accent-green-light);
  color: var(--accent-green);
}

.hero-fc-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-fc-text p {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

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

/* --- Tentang Kami Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  width: 85%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-img-sub {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 50%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 6px solid var(--bg-primary);
  box-shadow: var(--glass-shadow);
}

.about-content {
  padding-left: 20px;
}

.about-subtitle {
  color: var(--accent-gold);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.875rem;
  margin-bottom: 12px;
}

.about-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.about-text {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.about-highlight {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 600;
  color: var(--text-primary);
  border-left: 4px solid var(--accent-gold);
  padding-left: 20px;
  margin: 30px 0;
}

/* --- Visi & Misi Section --- */
.visimisi {
  background-color: var(--bg-secondary);
}

.visimisi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.visimisi-card {
  background-color: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border-color);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.visimisi-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--glass-shadow);
  border-color: var(--accent-gold);
}

.vm-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background-color: var(--accent-gold-light);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.vm-icon-green {
  background-color: var(--accent-green-light);
  color: var(--accent-green);
}

.vm-icon svg {
  width: 32px;
  height: 32px;
}

.visimisi-card h3 {
  font-size: 1.75rem;
  margin-bottom: 20px;
}

.visimisi-card p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.misi-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.misi-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.misi-item svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--accent-green);
  margin-top: 2px;
}

/* --- Keunggulan Section --- */
.keunggulan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.keunggulan-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.keunggulan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--accent-gold);
  transition: height var(--transition-fast);
}

.keunggulan-card:hover::before {
  height: 100%;
}

.keunggulan-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glass-shadow);
  border-color: rgba(180, 83, 9, 0.15);
}

.k-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-tertiary);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition-fast);
}

.keunggulan-card:hover .k-icon {
  background-color: var(--accent-gold);
  color: #ffffff;
}

.k-icon svg {
  width: 24px;
  height: 24px;
}

.keunggulan-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.keunggulan-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* --- Produk & Layanan Section --- */
.produk {
  background-color: var(--bg-secondary);
}

.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.tab-btn {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--text-secondary);
}

.tab-btn:hover {
  background-color: var(--bg-tertiary);
  color: var(--text-primary);
}

.tab-btn.active {
  background-color: var(--accent-gold);
  color: #ffffff;
  border-color: var(--accent-gold);
  box-shadow: 0 4px 10px rgba(180, 83, 9, 0.2);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.product-image-side {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  aspect-ratio: 4/3;
  background-color: var(--bg-tertiary);
}

.product-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info-side h3 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.product-info-side .p-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.p-feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--accent-gold-light);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.p-feat-icon svg {
  width: 20px;
  height: 20px;
}

.p-feat-text h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.p-feat-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* --- Dokumentasi Section --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.01);
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.gallery-img-wrapper {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.gallery-card:hover .gallery-img-wrapper img {
  transform: scale(1.08);
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glass-shadow);
}

.gallery-caption {
  padding: 16px;
  text-align: center;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* --- Legalitas Section --- */
.legalitas {
  background-color: var(--bg-secondary);
}

.legalitas-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}

.legalitas-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legalitas-item {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.legalitas-item:hover, .legalitas-item.active {
  border-color: var(--accent-gold);
  box-shadow: 0 4px 12px rgba(180, 83, 9, 0.08);
}

.legalitas-item.active {
  background-color: var(--bg-secondary);
}

.li-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.li-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.li-number {
  font-size: 0.85rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.li-body {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: none;
}

.legalitas-item.active .li-body {
  display: block;
}

.legalitas-view {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
  min-height: 450px;
}

.doc-pane {
  display: none;
  animation: fadeIn 0.4s ease;
  height: 100%;
}

.doc-pane.active {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.doc-header {
  border-bottom: 2px solid var(--accent-gold);
  padding-bottom: 16px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.doc-header h4 {
  font-size: 1.3rem;
  font-weight: 800;
}

.doc-logo {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.doc-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.doc-field p {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.doc-field-full {
  grid-column: span 2;
}

.doc-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.doc-badge {
  background-color: var(--accent-green-light);
  color: var(--accent-green);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-weight: 600;
}

/* --- Direktur Section --- */
.director-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
}

.dir-image {
  aspect-ratio: 4/5;
  background-color: var(--bg-tertiary);
  overflow: hidden;
  height: 100%;
}

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

.dir-info {
  padding: 48px;
}

.dir-role {
  color: var(--accent-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.dir-name {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.dir-quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 24px;
  border-left: 3px solid var(--accent-gold);
  padding-left: 16px;
}

/* --- Rekanan (Partners) Section --- */
.rekanan {
  background-color: var(--bg-primary);
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.rekanan-header {
  text-align: center;
  margin-bottom: 40px;
}

.rekanan-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
}

.rekanan-slider {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
}

.rekanan-slider::before, .rekanan-slider::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.rekanan-slider::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary), transparent);
}

.rekanan-slider::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary), transparent);
}

.rekanan-track {
  display: inline-block;
  animation: scrollMarquee 25s linear infinite;
}

.rekanan-item {
  display: inline-block;
  padding: 15px 30px;
  margin: 0 15px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-secondary);
  font-size: 1.1rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.01);
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Kontak Section --- */
.kontak-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.kontak-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ki-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.ki-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: var(--accent-gold-light);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ki-icon-green {
  background-color: var(--accent-green-light);
  color: var(--accent-green);
}

.ki-icon svg {
  width: 22px;
  height: 22px;
}

.ki-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.ki-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  white-space: pre-line;
}

.kontak-form {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--glass-shadow);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
  background-color: var(--bg-secondary);
  box-shadow: 0 0 0 4px rgba(180, 83, 9, 0.1);
}

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

/* --- Footer --- */
.footer {
  background-color: #0b0f19;
  color: #94a3b8;
  padding: 80px 0 30px;
  border-top: 1px solid #1e293b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 16px;
  font-weight: 800;
}

.footer-brand p {
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #1e293b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background-color: var(--accent-gold);
  transform: translateY(-2px);
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 24px;
  font-weight: 700;
}

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

.footer-link {
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 20px;
}

/* --- Scroll Animation Reveals --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

/* --- Mobile Styles --- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .about-grid, .visimisi-grid, .product-detail-grid, .legalitas-layout, .kontak-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-images {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .legalitas-view {
    min-height: auto;
  }
  
  .director-card {
    grid-template-columns: 1fr;
  }
  
  .dir-image {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--bg-secondary);
    flex-direction: column;
    padding: 40px 24px;
    gap: 32px;
    transition: left var(--transition-normal);
    z-index: 999;
    border-top: 1px solid var(--border-color);
  }
  
  .nav-menu.open {
    left: 0;
  }
  
  .menu-btn {
    display: block;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-image-container {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* --- WhatsApp Float Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
  z-index: 999;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}
