/* ==========================================================================
   PusLab Design System — Production CSS
   Source: design-system/tokens.json & Elementor 3.28.3 Theme Styles
   ========================================================================== */

:root {
  /* Brand Color Tokens */
  --color-brand-primary: #0049DC;
  --color-brand-secondary: #3878F7;
  --color-brand-navy: #00194C;
  --color-brand-theme-cyan: #086ABD;
  --color-brand-royal: #0055FF;
  --color-brand-hover-dark: #0036A2;

  /* Accent Color Tokens */
  --color-accent-coral: #EB5A3E;
  --color-accent-amber: #FCB900;
  --color-accent-whatsapp: #25D366;
  --color-accent-whatsapp-hover: #128C7E;

  /* Surface & Background Tokens */
  --color-surface-white: #FFFFFF;
  --color-surface-background: #F8FAFC;
  --color-surface-ice: #E3EEFC;
  --color-surface-card: #FFFFFF;
  --color-border-subtle: #E2E8F0;
  --color-border-focus: #3878F7;

  /* Text Colors */
  --color-text-main: #1E293B;
  --color-text-muted: #64748B;
  --color-text-inverse: #FFFFFF;

  /* Typography */
  --font-heading: 'Poppins', 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  /* Spacing Scale */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;

  /* Elevation / Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Layout Constraint */
  --container-max-width: 1200px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-main);
  background-color: var(--color-surface-background);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-brand-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-brand-hover-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-brand-navy);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1.25rem;
}

/* Layout Container */
.container {
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--spacing-md);
  padding-right: var(--spacing-md);
  width: 100%;
}

/* Section Spacing */
.section {
  padding-top: var(--spacing-3xl);
  padding-bottom: var(--spacing-3xl);
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--spacing-2xl);
}

.section-title .badge {
  display: inline-block;
  background: var(--color-surface-ice);
  color: var(--color-brand-primary);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Buttons & Touch Targets */
.btn, button, .menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 24px;
  min-height: 48px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--color-brand-primary);
  color: var(--color-surface-white);
  box-shadow: 0 4px 12px rgba(0, 73, 220, 0.25);
}

.btn-primary:hover {
  background-color: var(--color-brand-hover-dark);
  color: var(--color-surface-white);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: var(--color-surface-white);
  color: var(--color-brand-primary);
  border-color: var(--color-brand-primary);
}

.btn-secondary:hover {
  background-color: var(--color-surface-ice);
  color: var(--color-brand-hover-dark);
}

.btn-whatsapp {
  background-color: var(--color-accent-whatsapp);
  color: var(--color-surface-white);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: var(--color-accent-whatsapp-hover);
  color: var(--color-surface-white);
  transform: translateY(-1px);
}

.btn-coral {
  background-color: var(--color-accent-coral);
  color: var(--color-surface-white);
}

.btn-coral:hover {
  background-color: #d1452a;
  color: var(--color-surface-white);
}

/* Masthead / Topbar */
.masthead, .topbar {
  background-color: var(--color-surface-ice);
  color: var(--color-brand-navy);
  font-size: 0.875rem;
  padding: 10px 0;
  border-bottom: 1px solid #d6e4fd;
}

.topbar-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Site Header & Navigation */
.site-header {
  background-color: var(--color-surface-white);
  border-bottom: 1px solid var(--color-border-subtle);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

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

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

/* Desktop Navigation */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 8px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  min-height: 44px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--color-brand-navy);
  border-radius: var(--radius-sm);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-brand-primary);
  background-color: var(--color-surface-ice);
}

/* Dropdown Flyout */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background-color: var(--color-surface-white);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: 8px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 1100;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 8px 16px;
  font-size: 0.875rem;
  color: var(--color-text-main);
  transition: all 0.15s ease;
}

.dropdown-link:hover {
  background-color: var(--color-surface-ice);
  color: var(--color-brand-primary);
  padding-left: 20px;
}

/* Mobile Toggle */
.hamburger, .menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  min-height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--color-brand-navy);
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* Mobile Offcanvas Drawer */
.mobile-drawer, .offcanvas {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background-color: var(--color-surface-white);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 2000;
  transition: right 0.3s ease;
  overflow-y: auto;
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--color-border-subtle);
}

.drawer-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--color-text-muted);
}

.drawer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-link {
  display: block;
  padding: 12px 16px;
  min-height: 44px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-brand-navy);
  border-radius: var(--radius-sm);
}

.drawer-link:hover {
  background-color: var(--color-surface-ice);
  color: var(--color-brand-primary);
}

.drawer-submenu {
  list-style: none;
  padding-left: var(--spacing-md);
  margin-top: 4px;
}

.drawer-submenu a {
  display: block;
  padding: 8px 12px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #F0F6FF 0%, #FFFFFF 100%);
  padding: var(--spacing-3xl) 0;
  border-bottom: 1px solid #E2E8F0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: var(--spacing-2xl);
}

.hero-content h1 {
  font-size: 2.75rem;
  margin-bottom: var(--spacing-md);
  color: var(--color-brand-navy);
}

.hero-content p {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-xl);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.hero-media {
  position: relative;
}

.hero-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
}

.hero-badge-float {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--color-surface-white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border-subtle);
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Review Badge */
.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-surface-white);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  border: 1px solid #E2E8F0;
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--spacing-lg);
}

.review-stars {
  color: var(--color-accent-amber);
  font-size: 1.125rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-brand-navy);
}

/* Brand Logos Marquee / Grid */
.brands-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--color-surface-white);
  border-bottom: 1px solid var(--color-border-subtle);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: center;
  justify-items: center;
  gap: var(--spacing-lg);
}

.brand-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  filter: grayscale(80%) opacity(70%);
  transition: all 0.25s ease;
}

.brand-logo-item:hover {
  filter: grayscale(0%) opacity(100%);
  transform: scale(1.05);
}

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

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
}

.service-card {
  background: var(--color-surface-white);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-border-focus);
}

.service-card-icon {
  width: 64px;
  height: 64px;
  background-color: var(--color-surface-ice);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
}

.service-card-icon img {
  width: 36px;
  height: 36px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
}

.service-card p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  margin-bottom: var(--spacing-lg);
  flex-grow: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--color-brand-primary);
}

/* Keunggulan Asymmetric Grid */
.keunggulan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
}

.keunggulan-card {
  background: var(--color-surface-white);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}

.keunggulan-card:hover {
  border-color: var(--color-brand-secondary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.keunggulan-card.featured {
  background: linear-gradient(135deg, #00194C 0%, #0049DC 100%);
  color: var(--color-surface-white);
  grid-column: span 2;
}

.keunggulan-card.featured h3,
.keunggulan-card.featured p {
  color: var(--color-surface-white);
}

.keunggulan-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-brand-secondary);
  line-height: 1;
  margin-bottom: var(--spacing-sm);
}

.keunggulan-card.featured .keunggulan-number {
  color: var(--color-accent-amber);
}

/* Testimonials */
.testimonials-section {
  background-color: #F1F5F9;
  padding: var(--spacing-3xl) 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
}

.testimonial-card {
  background: var(--color-surface-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-quote {
  font-style: italic;
  color: var(--color-text-main);
  margin-bottom: var(--spacing-lg);
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--color-surface-ice);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-brand-primary);
}

.author-meta h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.author-meta span {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

/* Blog Article Cards */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
}

.article-card {
  background: var(--color-surface-white);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.article-thumbnail {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-surface-ice);
}

.article-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.article-card:hover .article-thumbnail img {
  transform: scale(1.05);
}

.article-content {
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.article-badge {
  display: inline-block;
  background-color: var(--color-surface-ice);
  color: var(--color-brand-primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: var(--spacing-sm);
  align-self: flex-start;
}

.article-title {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-sm);
  line-height: 1.4;
}

.article-title a {
  color: var(--color-brand-navy);
}

.article-title a:hover {
  color: var(--color-brand-primary);
}

.article-excerpt {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin-bottom: var(--spacing-md);
  flex-grow: 1;
}

.article-meta {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border-subtle);
  padding-top: var(--spacing-sm);
  display: flex;
  justify-content: space-between;
}

/* Breadcrumbs */
.breadcrumbs {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  padding: var(--spacing-md) 0;
  margin-bottom: var(--spacing-lg);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.breadcrumbs a {
  color: var(--color-brand-primary);
}

.breadcrumbs span {
  color: var(--color-text-main);
  font-weight: 600;
}

/* Single Article Post Layout */
.article-header {
  margin-bottom: var(--spacing-2xl);
}

.article-post-meta {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  margin-top: var(--spacing-sm);
}

.post-content, .entry-content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #334155;
}

.post-content h2, .entry-content h2 {
  font-size: 1.75rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.post-content h3, .entry-content h3 {
  font-size: 1.375rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.post-content ul, .post-content ol, .entry-content ul, .entry-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.post-content li, .entry-content li {
  margin-bottom: 0.5rem;
}

.post-content img, .entry-content img {
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

/* Contact Page Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: start;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.contact-card {
  background: var(--color-surface-white);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-sm);
}

.contact-card h4 {
  font-size: 1rem;
  color: var(--color-brand-navy);
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.contact-map-wrapper {
  background: var(--color-surface-white);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-map-wrapper iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* Footer (4 columns) */
.site-footer {
  background-color: var(--color-brand-navy);
  color: #CBD5E1;
  padding-top: var(--spacing-3xl);
  padding-bottom: var(--spacing-xl);
  margin-top: var(--spacing-3xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-2xl);
}

.footer-col h4 {
  color: var(--color-surface-white);
  font-size: 1.125rem;
  margin-bottom: var(--spacing-lg);
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--color-brand-secondary);
}

.footer-col p {
  color: #94A3B8;
  font-size: 0.9375rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul a {
  color: #94A3B8;
  font-size: 0.9375rem;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--color-surface-white);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-lg);
  text-align: center;
  font-size: 0.875rem;
  color: #94A3B8;
}

/* Floating JoinChat WhatsApp Widget */
.floating-wa, .joinchat {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
}

.wa-trigger-btn {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background-color: var(--color-accent-whatsapp);
  color: var(--color-surface-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wa-trigger-btn:hover {
  transform: scale(1.1);
  background-color: var(--color-accent-whatsapp-hover);
}

.wa-trigger-btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.wa-popover {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 300px;
  background: var(--color-surface-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border-subtle);
  overflow: hidden;
  display: none;
  animation: fadeIn 0.2s ease-out;
}

.wa-popover.active {
  display: block;
}

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

.wa-popover-header {
  background-color: var(--color-accent-whatsapp);
  color: var(--color-surface-white);
  padding: 16px;
}

.wa-popover-header h4 {
  color: var(--color-surface-white);
  font-size: 1rem;
  margin-bottom: 2px;
}

.wa-popover-header p {
  font-size: 0.8125rem;
  margin-bottom: 0;
  opacity: 0.9;
}

.wa-team-list {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wa-team-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background-color: var(--color-surface-background);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--color-text-main);
  font-weight: 500;
  transition: all 0.15s ease;
}

.wa-team-item:hover {
  background-color: var(--color-surface-ice);
  color: var(--color-brand-primary);
}

/* Responsive Media Queries (Elementor Breakpoints Parity) */
@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }

  .hamburger, .menu-toggle {
    display: flex;
  }

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

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

  .keunggulan-card.featured {
    grid-column: span 2;
  }

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

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
  }

  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px), (max-width: 767px) {
  .topbar, .masthead {
    display: none;
  }

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

  .hero-content h1 {
    font-size: 2rem;
  }

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

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

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

  .keunggulan-card.featured {
    grid-column: span 1;
  }

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

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

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

  .contact-cards {
    grid-template-columns: 1fr;
  }

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

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

@media (min-width: 1025px) {
  .mobile-drawer, .offcanvas, .drawer-backdrop {
    display: none !important;
  }
}


/* Header Desktop CTA Button Visibility */
.header-cta,
.header-cta-desktop {
  display: none;
}

@media (min-width: 768px) {
  .header-cta,
  .header-cta-desktop {
    display: inline-flex !important;
  }
}
