/* ============================================
   LINDUNG PERKESO - Premium Design System
   Based on Official PERKESO Branding
   ============================================ */

/* CSS Variables */
:root {
  /* PERKESO Brand Colors - 4 Kategori LINDUNG */
  --lindung-blue: #0066cc;
  --lindung-blue-dark: #004d99;
  --lindung-blue-light: #e6f0ff;

  /* LINDUNG PEKERJA (Hijau) */
  --pekerja-green: #10b981;
  --pekerja-green-dark: #047857;
  --pekerja-green-light: #d1fae5;

  /* LINDUNG Kerjaya (Jingga/Oren) */
  --kerjaya-orange: #f97316;
  --kerjaya-orange-dark: #c2410c;
  --kerjaya-orange-light: #ffedd5;

  /* LINDUNG KENDIRI (Biru Tua) */
  --kendiri-blue: #1a3a6b;
  --kendiri-blue-dark: #0f172a;
  --kendiri-blue-light: #e0e7ff;

  /* LINDUNG KASIH (Merah Jambu) */
  --kasih-pink: #e91e8a;
  --kasih-pink-dark: #be185d;
  --kasih-pink-light: #fdf0f7;

  /* UI Colors */
  --success: #10b981;
  --success-light: #d1fae5;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;

  /* Neutrals */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Typography */
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

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

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ensure all sections are centered */
section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

/* ============================================
   HERO SECTION - Premium Design
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--lindung-blue) 0%, #1a237e 50%, var(--kasih-pink-dark) 100%);
  overflow: hidden;
  padding: 1rem;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.shape-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
  background: rgba(233, 30, 138, 0.1);
}

.shape-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  background: rgba(255, 255, 255, 0.05);
}

.shape-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Official Logos - KSM + PERKESO */
.official-logos {
  text-align: center;
  padding: 0.75rem 1rem;
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  margin: 0 auto;
  max-width: fit-content;
}

.official-logo-img {
  max-width: 220px;
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .official-logo-img {
    max-width: 300px;
  }
}

/* Navigation */
.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  position: relative;
  z-index: 10;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* Text-based Logo Styles */
.nav-logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
}

.nav-logo-u {
  position: relative;
  color: var(--white);
}

.nav-logo-u::after {
  content: '✓';
  position: absolute;
  font-size: 0.5em;
  color: #fbbf24;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.logo-icon {
  font-size: 1.75rem;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2px;
}

.logo-accent {
  color: #fbbf24;
}

.nav-cta {
  padding: 0.625rem 1.25rem;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-base);
}

.nav-cta:hover {
  background: var(--white);
  color: var(--lindung-blue);
}

/* Hero Content */
.hero-content {
  display: grid;
  gap: 2rem;
  padding: 2rem 0 3rem;
  position: relative;
  z-index: 5;
  max-width: 100%;
}

.hero-text {
  text-align: center;
  width: 100%;
  max-width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.hero h1 {
  font-size: clamp(1.75rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
  text-align: center;
}

.text-gradient {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* LINDUNG Logo Large */
.lindung-logo-large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.lindung-text {
  opacity: 0.95;
}

.lindung-u {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transform: scale(1.1);
}

.heart-check {
  position: absolute;
  font-size: 0.4em;
  color: #fbbf24;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.9;
  animation: pulse-heart 2s ease-in-out infinite;
}

@keyframes pulse-heart {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.9;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
  }
}

@media (min-width: 768px) {
  .lindung-logo-large {
    gap: 0.5rem;
    margin-bottom: 2rem;
  }
}

.hero-subtitle {
  font-size: clamp(0.9375rem, 2.5vw, 1.125rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
  margin: 0 auto 1.5rem;
  text-align: center;
  line-height: 1.6;
}

.hero-subtitle strong {
  color: var(--white);
}

/* Hero Features */
.hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 1.125rem;
}

/* Hero CTA Group */
.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  min-height: 48px;
  width: 100%;
  touch-action: manipulation;
}

@media (min-width: 640px) {
  .btn {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    width: auto;
  }
}

.btn-primary {
  background: var(--white);
  color: var(--lindung-blue);
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-secondary {
  background: var(--whatsapp);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
}

.btn-icon {
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

.whatsapp-icon {
  display: flex;
}

/* Hero Visual */
.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}

.hero-card {
  padding: 1.25rem;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-xl);
  animation: float 3s ease-in-out infinite;
}

.hero-card:nth-child(2) {
  animation-delay: 0.5s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-card-kendiri {
  border-left: 4px solid var(--kendiri-blue);
}

.hero-card-kasih {
  border-left: 4px solid var(--kasih-pink);
}

/* Card Graphic - Gambar LINDUNG rasmi */
.card-graphic {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.card-graphic img {
  width: 80px;
  height: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .card-graphic img {
    width: 100px;
  }
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.card-icon {
  font-size: 1.25rem;
}

.card-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-600);
  letter-spacing: 0.5px;
}

.hero-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}

.card-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
}

.card-price span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-500);
}

.hero-image-container {
  display: none;
}

/* Hero Location */
.hero-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--white);
  font-size: 0.875rem;
  text-align: center;
  backdrop-filter: blur(10px);
  margin-top: 2rem;
  position: relative;
  z-index: 5;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 2rem;
  width: 100%;
  max-width: 100%;
}

.section-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: var(--lindung-blue-light);
  color: var(--lindung-blue);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
  line-height: 1.2;
  text-align: center;
}

.section-header p {
  font-size: clamp(0.9375rem, 2.5vw, 1.125rem);
  color: var(--gray-500);
  text-align: center;
  line-height: 1.6;
}

.section-header.light .section-tag {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.section-header.light h2 {
  color: var(--white);
}

/* ============================================
   SKIM SECTION
   ============================================ */
.skim-section {
  padding: 3rem 0;
  background: var(--gray-50);
  width: 100%;
}

@media (min-width: 768px) {
  .skim-section {
    padding: 5rem 0;
  }

  .section-header {
    margin-bottom: 3rem;
  }
}

.skim-grid {
  display: grid;
  gap: 2rem;
}

.skim-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-slow);
}

.skim-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.skim-card.featured {
  border: 2px solid var(--kasih-pink);
}

.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.375rem 0.75rem;
  background: linear-gradient(135deg, var(--kasih-pink) 0%, #c2185b 100%);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
}

.skim-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.skim-icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lindung-blue-light);
  border-radius: 16px;
  flex-shrink: 0;
}

.skim-icon-wrap.kasih {
  background: var(--kasih-pink-light);
}

.skim-icon {
  font-size: 1.75rem;
}

.skim-title-wrap h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.skim-kendiri .skim-title-wrap h3 {
  color: var(--kendiri-blue);
}

.skim-kasih .skim-title-wrap h3 {
  color: var(--kasih-pink);
}

.skim-subtitle {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* For Who */
.skim-for {
  margin-bottom: 1.5rem;
}

.for-label,
.benefits-label,
.docs-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

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

.tag {
  padding: 0.375rem 0.75rem;
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 0.8125rem;
  border-radius: 50px;
}

.kasih-tags .tag {
  background: var(--kasih-pink-light);
  color: var(--kasih-pink);
}

/* Pricing */
.skim-pricing {
  padding: 1.5rem;
  background: var(--lindung-blue-light);
  border-radius: 16px;
  margin-bottom: 1.5rem;
}

.kasih-pricing {
  background: var(--kasih-pink-light);
}

.price-from {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-main .currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-700);
}

.price-main .amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
}

.price-main .period {
  font-size: 1rem;
  color: var(--gray-500);
}

.price-note {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.25rem 0.75rem;
  background: var(--kasih-pink);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 50px;
}

.price-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--gray-300);
}

.plan {
  font-size: 0.8125rem;
  color: var(--gray-600);
}

/* Benefits */
.skim-benefits {
  margin-bottom: 1.5rem;
}

.skim-benefits ul {
  list-style: none;
}

.skim-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--gray-700);
}

.check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--success-light);
  color: var(--success);
  border-radius: 50%;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.check.pink {
  background: var(--kasih-pink-light);
  color: var(--kasih-pink);
}

.benefits-label.mt {
  margin-top: 1rem;
}

/* Docs */
.skim-docs {
  padding: 1rem;
  background: var(--gray-50);
  border-radius: 12px;
  margin-bottom: 1rem;
}

.skim-docs p {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.kasih-docs {
  background: var(--kasih-pink-light);
}

.kasih-docs p {
  color: var(--kasih-pink);
}

/* Note */
.skim-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #fef3c7;
  border-radius: 12px;
  font-size: 0.875rem;
  color: #92400e;
  margin-bottom: 1.5rem;
}

/* CTA */
.skim-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  transition: all var(--transition-base);
  min-height: 48px;
  touch-action: manipulation;
}

@media (min-width: 640px) {
  .skim-cta {
    padding: 1rem;
    font-size: 1rem;
  }
}

.skim-cta.kendiri {
  background: var(--kendiri-blue);
  color: var(--white);
}

.skim-cta.kendiri:hover {
  background: var(--kendiri-blue-dark);
  transform: translateY(-2px);
}

.skim-cta.kasih {
  background: var(--kasih-pink);
  color: var(--white);
}

.skim-cta.kasih:hover {
  background: #c2185b;
  transform: translateY(-2px);
}

.skim-cta .arrow {
  transition: transform var(--transition-fast);
}

.skim-cta:hover .arrow {
  transform: translateX(4px);
}

/* ============================================
   LINDUNG CATEGORIES SHOWCASE
   ============================================ */
.lindung-categories {
  padding: 3rem 0;
  background: var(--white);
  width: 100%;
}

@media (min-width: 768px) {
  .lindung-categories {
    padding: 4rem 0;
  }
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.category-card {
  position: relative;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 20px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all var(--transition-base);
  overflow: hidden;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.category-card.pekerja {
  border-color: var(--pekerja-green-light);
}

.category-card.pekerja:hover {
  background: linear-gradient(135deg, var(--pekerja-green-light) 0%, var(--white) 100%);
  border-color: var(--pekerja-green);
}

.category-card.kerjaya {
  border-color: var(--kerjaya-orange-light);
}

.category-card.kerjaya:hover {
  background: linear-gradient(135deg, var(--kerjaya-orange-light) 0%, var(--white) 100%);
  border-color: var(--kerjaya-orange);
}

.category-card.kendiri {
  border-color: var(--kendiri-blue-light);
}

.category-card.kendiri:hover {
  background: linear-gradient(135deg, var(--kendiri-blue-light) 0%, var(--white) 100%);
  border-color: var(--kendiri-blue);
}

.category-card.kasih {
  border-color: var(--kasih-pink-light);
}

.category-card.kasih:hover {
  background: linear-gradient(135deg, var(--kasih-pink-light) 0%, var(--white) 100%);
  border-color: var(--kasih-pink);
}

.category-card.featured-category {
  border-width: 3px;
}

.category-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  filter: grayscale(0.2);
  transition: transform var(--transition-base);
}

.category-card:hover .category-icon {
  transform: scale(1.15) rotate(5deg);
}

.category-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.category-card.pekerja h3 {
  color: var(--pekerja-green-dark);
}

.category-card.kerjaya h3 {
  color: var(--kerjaya-orange-dark);
}

.category-card.kendiri h3 {
  color: var(--kendiri-blue);
}

.category-card.kasih h3 {
  color: var(--kasih-pink-dark);
}

.category-card p {
  font-size: 0.8125rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.category-color-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.category-card.pekerja .category-color-bar {
  background: linear-gradient(90deg, var(--pekerja-green) 0%, var(--pekerja-green-dark) 100%);
}

.category-card.kerjaya .category-color-bar {
  background: linear-gradient(90deg, var(--kerjaya-orange) 0%, var(--kerjaya-orange-dark) 100%);
}

.category-card.kendiri .category-color-bar {
  background: linear-gradient(90deg, var(--kendiri-blue) 0%, var(--kendiri-blue-dark) 100%);
}

.category-card.kasih .category-color-bar {
  background: linear-gradient(90deg, var(--kasih-pink) 0%, var(--kasih-pink-dark) 100%);
}

.category-card:hover .category-color-bar {
  opacity: 1;
}

/* ============================================
   WHY SECTION
   ============================================ */
.why-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--lindung-blue) 0%, var(--kendiri-blue) 100%);
  width: 100%;
}

@media (min-width: 768px) {
  .why-section {
    padding: 5rem 0;
  }
}

.why-grid {
  display: grid;
  gap: 1.5rem;
}

.why-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* ============================================
   VIDEO SECTION - YouTube Embed
   ============================================ */
.video-section {
  padding: 3rem 0;
  background: var(--gray-50);
  width: 100%;
}

@media (min-width: 768px) {
  .video-section {
    padding: 5rem 0;
  }
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  background: var(--gray-900);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
}

/* Mobile video adjustments */
@media (max-width: 479px) {
  .video-section {
    padding: 2rem 0;
  }

  .video-wrapper {
    border-radius: 12px;
    margin: 0 0.5rem;
  }

  .video-wrapper iframe {
    border-radius: 12px;
  }
}

/* ============================================
   PEGAWAI SECTION
   ============================================ */
.pegawai-section {
  padding: 3rem 0;
  background: var(--white);
  width: 100%;
}

@media (min-width: 768px) {
  .pegawai-section {
    padding: 5rem 0;
  }
}

.pegawai-grid {
  display: grid;
  gap: 1.5rem;
}

.pegawai-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: var(--gray-50);
  border-radius: 20px;
  transition: all var(--transition-base);
}

.pegawai-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.pegawai-avatar {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--lindung-blue) 0%, var(--lindung-blue-dark) 100%);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.pegawai-avatar.purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

.pegawai-avatar.green {
  background: linear-gradient(135deg, var(--success) 0%, #047857 100%);
}

.pegawai-info {
  margin-bottom: 1rem;
}

.pegawai-info h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.pegawai-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--lindung-blue);
  font-weight: 500;
}

.pegawai-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.phone {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-700);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--whatsapp);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all var(--transition-base);
  min-height: 44px;
  touch-action: manipulation;
}

@media (min-width: 640px) {
  .whatsapp-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
  }
}

.whatsapp-btn:hover {
  background: var(--whatsapp-dark);
  transform: scale(1.05);
}

/* Trust Section */
.trust-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
  border-radius: 20px;
  border: 2px solid var(--gray-200);
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 2px dashed var(--gray-300);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--lindung-blue) 0%, var(--kendiri-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-600);
  font-weight: 600;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem;
  background: var(--white);
  border-radius: 12px;
  font-size: 0.875rem;
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

.trust-item:hover {
  background: var(--lindung-blue-light);
  border-color: var(--lindung-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.trust-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .trust-badges {
    grid-template-columns: repeat(4, 1fr);
  }

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

@media (min-width: 768px) {
  .trust-section {
    padding: 2.5rem;
  }

  .trust-stats {
    gap: 2rem;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 4rem 0 2rem;
}

.footer-main {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  text-align: center;
}

.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-perkeso-logo {
  height: 50px;
  width: auto;
}

.footer-lindung-logo {
  height: 35px;
  width: auto;
}

/* Footer Text-based Logo Styles */
.footer-perkeso-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--lindung-blue);
  letter-spacing: 1px;
}

.footer-lindung-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
}

.footer-u {
  position: relative;
  color: var(--white);
}

.footer-u::after {
  content: '✓';
  position: absolute;
  font-size: 0.5em;
  color: #fbbf24;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo .logo-text {
  font-size: 1.25rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--gray-400);
}

.footer-office {
  margin-top: 0.5rem;
  color: var(--lindung-blue) !important;
}

.footer-links,
.footer-contact {
  text-align: center;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links a {
  display: block;
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.875rem;
  padding: 0.375rem 0;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact p {
  font-size: 0.875rem;
  color: var(--gray-400);
  padding: 0.25rem 0;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--gray-800);
  text-align: center;
}

.footer-copyright p {
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin-bottom: 0.25rem;
}

.footer-copyright p:first-child {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-disclaimer {
  font-size: 0.75rem !important;
  color: var(--gray-500) !important;
  margin-top: 0.75rem !important;
  padding-top: 0.75rem;
  border-top: 1px solid var(--gray-800);
}

/* ============================================
   QR CODE SECTION
   ============================================ */
.qr-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  width: 100%;
}

@media (min-width: 768px) {
  .qr-section {
    padding: 5rem 0;
  }
}

.qr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.qr-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
}

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

.qr-code {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--white);
  border-radius: 12px;
  border: 2px solid var(--gray-200);
}

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

.qr-info h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.qr-info p {
  font-size: 0.875rem;
  color: var(--lindung-blue);
  margin-bottom: 0.5rem;
}

.qr-hint {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--success-light);
  color: var(--success);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
}

.qr-main-section {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.qr-main-card {
  background: linear-gradient(135deg, var(--lindung-blue) 0%, var(--kendiri-blue) 100%);
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 500px;
  width: 100%;
  box-shadow: var(--shadow-2xl);
}

.qr-code-large {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 16px;
}

.qr-code-large img {
  display: block;
}

.qr-main-info {
  text-align: center;
  color: var(--white);
}

.qr-main-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.qr-main-info p {
  font-size: 0.9375rem;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}

.qr-url {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
}

.qr-instructions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.instruction-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
}

.instruction-item .step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--lindung-blue);
  color: var(--white);
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

.instruction-item span:last-child {
  font-size: 0.9375rem;
  color: var(--gray-700);
}

.qr-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.qr-feature {
  font-size: 0.875rem;
  opacity: 0.9;
}

.qr-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: #fef3c7;
  border-radius: 12px;
  margin-top: 1.5rem;
}

.note-icon {
  font-size: 1.25rem;
}

.qr-note span:last-child {
  font-size: 0.875rem;
  color: #92400e;
}

.qr-save-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.save-link-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--lindung-blue) 0%, var(--kendiri-blue) 100%);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-lg);
}

.save-link-btn:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

.save-icon {
  font-size: 1.5rem;
}

.save-hint {
  font-size: 0.875rem;
  color: var(--gray-500);
}

@media (min-width: 768px) {
  .qr-main-card {
    flex-direction: row;
    text-align: left;
  }

  .qr-main-info {
    text-align: left;
  }
}

/* ============================================
   FLOATING BUTTONS - MOBILE FIRST
   ============================================ */
.floating-whatsapp {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.125rem;
  background: var(--whatsapp);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  box-shadow: var(--shadow-xl);
  z-index: 100;
  transition: all var(--transition-base);
  animation: bounce 2s infinite;
  font-size: 0.8125rem;
  min-height: 48px;
}

.floating-whatsapp svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.floating-whatsapp:hover,
.floating-whatsapp:active {
  background: var(--whatsapp-dark);
  transform: scale(1.05);
}

.floating-whatsapp:active {
  transform: scale(0.98);
}

.floating-text {
  font-weight: 600;
  font-size: 0.8125rem;
  white-space: nowrap;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

@media (min-width: 640px) {
  .hero-features {
    gap: 0.75rem;
  }

  .hero-cta-group {
    flex-direction: row;
    max-width: none;
    justify-content: center;
  }

  .hero-content {
    gap: 3rem;
  }

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

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

  .trust-section {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    text-align: left;
  }
}

/* ============================================
   RESPONSIVE - LARGE TABLET / SMALL DESKTOP
   ============================================ */
@media (min-width: 768px) {
  .skim-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

/* ============================================
   RESPONSIVE - DESKTOP
   ============================================ */
@media (min-width: 1024px) {
  .hero {
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 4rem 0;
    max-width: 1200px;
    margin: 0 auto;
  }

  .hero-text {
    text-align: left;
  }

  .hero-subtitle {
    margin: 0 0 2rem;
    max-width: 500px;
  }

  .hero-features {
    justify-content: flex-start;
  }

  .hero-cta-group {
    justify-content: flex-start;
    margin: 0;
    max-width: 500px;
  }

  .hero-visual {
    max-width: 500px;
    gap: 1.5rem;
    margin: 0;
  }

  .hero-card {
    padding: 1.5rem;
  }

  .hero-location {
    max-width: 600px;
    margin: 2rem auto 0;
  }

  .skim-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

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

/* ============================================
   ANIMATIONS
   ============================================ */
@media (prefers-reduced-motion: no-preference) {

  .skim-card,
  .why-card,
  .pegawai-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
  }

  .skim-card:nth-child(1) {
    animation-delay: 0.1s;
  }

  .skim-card:nth-child(2) {
    animation-delay: 0.2s;
  }

  .why-card:nth-child(1) {
    animation-delay: 0.1s;
  }

  .why-card:nth-child(2) {
    animation-delay: 0.2s;
  }

  .why-card:nth-child(3) {
    animation-delay: 0.3s;
  }

  .why-card:nth-child(4) {
    animation-delay: 0.4s;
  }

  .pegawai-card:nth-child(1) {
    animation-delay: 0.1s;
  }

  .pegawai-card:nth-child(2) {
    animation-delay: 0.2s;
  }

  .pegawai-card:nth-child(3) {
    animation-delay: 0.3s;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   CHATBOT STYLES - MOBILE FIRST
   ============================================ */
.floating-chatbot {
  position: fixed;
  bottom: 7rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-xl);
  z-index: 99;
  transition: all var(--transition-base);
  min-height: 44px;
}

.chatbot-text {
  display: none;
}

.chatbot-icon {
  font-size: 1.125rem;
  flex-shrink: 0;
}

.floating-chatbot:hover,
.floating-chatbot:active {
  transform: scale(1.05);
  box-shadow: var(--shadow-2xl);
}

.floating-chatbot:active {
  transform: scale(0.98);
}


.chatbot-modal {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  max-height: 600px;
  background: var(--white);
  border-radius: 20px 20px 0 0;
  box-shadow: var(--shadow-2xl);
  z-index: 1000;
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.chatbot-modal.active {
  display: flex;
}

.chatbot-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  height: 100%;
}

.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  color: var(--white);
}

.chatbot-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.bot-avatar {
  font-size: 2rem;
}

.chatbot-title h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.bot-status {
  font-size: 0.75rem;
  opacity: 0.9;
}

.chatbot-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.chatbot-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 1rem;
  background: var(--gray-50);
}

.bot-message,
.user-message {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.user-message {
  flex-direction: row-reverse;
}

.msg-avatar {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.msg-content {
  background: var(--white);
  padding: 0.875rem 1rem;
  border-radius: 16px;
  border-top-left-radius: 4px;
  box-shadow: var(--shadow-sm);
  max-width: 85%;
}

.user-message .msg-content {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  color: var(--white);
  border-radius: 16px;
  border-top-right-radius: 4px;
}

.msg-content p {
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0 0 0.5rem;
}

.msg-content p:last-child {
  margin-bottom: 0;
}

.msg-content ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
}

.msg-content li {
  font-size: 0.875rem;
  padding: 0.25rem 0;
}

.bot-disclaimer {
  font-size: 0.75rem !important;
  color: #92400e !important;
  background: #fef3c7;
  padding: 0.5rem;
  border-radius: 8px;
  margin-top: 0.5rem !important;
}

.bot-disclaimer a {
  color: #b45309;
  font-weight: 600;
}

.typing-indicator .msg-content p {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.chatbot-quickreplies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

.chatbot-quickreplies button {
  padding: 0.5rem 0.875rem;
  background: var(--gray-100);
  border: none;
  border-radius: 50px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.chatbot-quickreplies button:hover {
  background: var(--lindung-blue-light);
  color: var(--lindung-blue);
}

.chatbot-input {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

.chatbot-input input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  font-size: 0.875rem;
  outline: none;
}

.chatbot-input input:focus {
  border-color: #8b5cf6;
}

.chatbot-input button {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.125rem;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.chatbot-input button:hover {
  transform: scale(1.1);
}

/* ============================================
   RESPONSIVE - TABLET & UP
   ============================================ */
@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }

  .floating-whatsapp {
    bottom: 1.5rem;
    right: 1.5rem;
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
    min-height: 52px;
  }

  .floating-whatsapp svg {
    width: 28px;
    height: 28px;
  }

  .floating-chatbot {
    bottom: 6.5rem;
    right: 1.5rem;
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
    z-index: 99;
  }

  .chatbot-text {
    display: inline;
  }

  .chatbot-icon {
    font-size: 1.25rem;
  }

  .chatbot-modal {
    bottom: 1.5rem;
    right: 1.5rem;
    border-radius: 20px;
    max-height: 550px;
  }
}

/* ============================================
   MOBILE-FIRST FIXES - ENHANCED RESPONSIVENESS
   For devices like Oppo Reno 11 (393px) and smaller
   ============================================ */

/* Prevent horizontal scroll globally */
html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Mobile-specific fixes (< 480px) */
@media (max-width: 479px) {

  /* Container padding */
  .container {
    padding: 0 0.75rem;
  }

  /* Hero Section Fixes */
  .hero {
    padding: 0.75rem;
  }

  .nav {
    padding: 0.5rem 0;
  }

  .nav-logo-img {
    height: 32px;
  }

  .nav-cta {
    padding: 0.5rem 0.875rem;
    font-size: 0.75rem;
  }

  .lindung-logo-large {
    font-size: clamp(2rem, 10vw, 2.5rem);
    margin-bottom: 1rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
    margin-bottom: 1rem;
  }

  .hero h1 {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 0.75rem;
  }

  .hero-subtitle {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }

  /* Hero Features - Stack vertically on mobile */
  .hero-features {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
  }

  .feature-item {
    width: 100%;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
  }

  .feature-icon {
    font-size: 1rem;
  }

  /* Hero CTA */
  .hero-cta-group {
    gap: 0.75rem;
    max-width: 100%;
    padding: 0 0.5rem;
  }

  .btn {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    min-height: 44px;
  }

  /* Hero Visual Cards */
  .hero-visual {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    max-width: 100%;
  }

  .hero-card {
    padding: 1rem;
  }

  .card-price {
    font-size: 1.25rem;
  }

  /* Hero Location */
  .hero-location {
    padding: 0.75rem;
    font-size: 0.75rem;
    margin-top: 1.5rem;
  }

  /* Skim Cards - Single column on mobile */
  .skim-section {
    padding: 2rem 0;
  }

  .skim-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .skim-card {
    padding: 1.5rem;
    border-radius: 20px;
  }

  .skim-header {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .skim-icon-wrap {
    margin: 0 auto;
  }

  .skim-title-wrap {
    text-align: center;
  }

  .skim-title-wrap h3 {
    font-size: 1.125rem;
  }

  .skim-for {
    text-align: center;
  }

  .for-tags {
    justify-content: center;
  }

  .tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
  }

  .price-main .amount {
    font-size: 2.5rem;
  }

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

  .skim-benefits li {
    font-size: 0.875rem;
  }

  .featured-badge {
    font-size: 0.6875rem;
    padding: 0.25rem 0.5rem;
    top: 0.75rem;
    right: 0.75rem;
  }

  /* Categories Grid - Single column */
  .lindung-categories {
    padding: 2rem 0;
  }

  .categories-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  .category-card {
    padding: 1.25rem 1rem;
  }

  .category-icon {
    font-size: 2rem;
  }

  .category-card h3 {
    font-size: 1rem;
  }

  .category-card p {
    font-size: 0.8125rem;
  }

  /* Why Section */
  .why-section {
    padding: 2rem 0;
  }

  .why-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  .why-card {
    padding: 1.5rem;
  }

  .why-icon {
    font-size: 2rem;
  }

  .why-card h3 {
    font-size: 1.125rem;
  }

  .why-card p {
    font-size: 0.875rem;
  }

  /* Pegawai Section */
  .pegawai-section {
    padding: 2rem 0;
  }

  .pegawai-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  .pegawai-card {
    padding: 1.5rem;
  }

  .pegawai-avatar {
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
  }

  .pegawai-info h3 {
    font-size: 1rem;
  }

  /* Trust Section - Stack vertically */
  .trust-section {
    padding: 1.5rem 1rem;
    gap: 1.5rem;
  }

  .trust-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

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

  .stat-label {
    font-size: 0.6875rem;
  }

  .trust-badges {
    grid-template-columns: 1fr !important;
    gap: 0.75rem;
  }

  .trust-item {
    padding: 0.75rem;
    font-size: 0.8125rem;
  }

  .trust-icon {
    font-size: 1.25rem;
  }

  /* QR Section */
  .qr-section {
    padding: 2rem 0;
  }

  .qr-main-card {
    padding: 1.5rem;
  }

  .qr-main-info h3 {
    font-size: 1.125rem;
  }

  .qr-instructions {
    padding: 1rem;
    gap: 1rem;
  }

  .instruction-item {
    padding: 0.5rem 0.75rem;
  }

  .instruction-item .step {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }

  .instruction-item span:last-child {
    font-size: 0.8125rem;
  }

  .save-link-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Footer */
  .footer {
    padding: 2rem 0 1.5rem;
  }

  .footer-main {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    text-align: center;
  }

  .footer-logos {
    justify-content: center;
  }

  .footer-perkeso-logo {
    height: 40px;
  }

  .footer-lindung-logo {
    height: 28px;
  }

  /* Section Headers */
  .section-header {
    margin-bottom: 1.5rem;
  }

  .section-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
  }

  .section-header h2 {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
  }

  .section-header p {
    font-size: 0.875rem;
  }

  /* Floating Buttons - Smaller and no overlap */
  .floating-whatsapp {
    bottom: 0.75rem;
    right: 0.75rem;
    padding: 0.625rem 0.875rem;
    font-size: 0.6875rem;
    min-height: 40px;
    gap: 0.375rem;
    animation: none;
    /* Disable bounce on mobile to prevent distraction */
  }

  .floating-whatsapp svg {
    width: 20px;
    height: 20px;
  }

  .floating-text {
    font-size: 0.6875rem;
  }

  .floating-chatbot {
    bottom: 3.75rem;
    right: 0.75rem;
    padding: 0.5rem 0.75rem;
    min-height: 36px;
  }

  .chatbot-icon {
    font-size: 1rem;
  }

  /* Chatbot Modal - Enhanced Mobile */
  .chatbot-modal {
    max-width: 100%;
    width: 100%;
    height: 70vh;
    max-height: 500px;
    bottom: 0;
    right: 0;
    left: 0;
    border-radius: 16px 16px 0 0;
    display: none;
    flex-direction: column;
  }

  .chatbot-modal.active {
    display: flex;
  }

  .chatbot-header {
    flex-shrink: 0;
  }

  .chatbot-messages {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0.75rem;
  }

  .chatbot-quickreplies {
    flex-shrink: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 0.75rem;
  }

  .chatbot-quickreplies button {
    font-size: 0.6875rem;
    padding: 0.375rem 0.625rem;
    white-space: nowrap;
  }

  .chatbot-input {
    flex-shrink: 0;
    padding: 0.5rem 0.75rem;
  }

  .chatbot-input input {
    font-size: 16px;
    /* Prevent iOS zoom */
  }
}

/* Small mobile (< 375px) - Additional fixes */
@media (max-width: 374px) {
  .container {
    padding: 0 0.5rem;
  }

  .lindung-logo-large {
    font-size: 1.75rem;
  }

  .hero h1 {
    font-size: 1.25rem;
  }

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

  .floating-text {
    display: none;
  }

  .floating-whatsapp {
    padding: 0.625rem;
    border-radius: 50%;
  }
}

/* ============================================
   APP DOWNLOAD SECTION
   ============================================ */
.app-download-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  width: 100%;
}

@media (min-width: 768px) {
  .app-download-section {
    padding: 5rem 0;
  }
}

.app-download-section .section-header .section-tag {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.app-download-section .section-header h2 {
  color: var(--white);
}

.app-download-section .section-header p {
  color: rgba(255, 255, 255, 0.9);
}

.app-download-content {
  display: grid;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .app-download-content {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

.app-card {
  background: var(--white);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .app-card {
    flex-direction: row;
    align-items: center;
    padding: 2rem;
  }
}

.app-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--lindung-blue) 0%, var(--kendiri-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.app-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.app-icon-fallback {
  font-size: 2.5rem;
  color: var(--white);
}

.app-info {
  flex: 1;
}

.app-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.app-info p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 0.75rem;
}

.app-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.app-feature {
  font-size: 0.75rem;
  color: var(--lindung-blue);
  background: var(--lindung-blue-light);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-weight: 500;
}

.app-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 400px) {
  .app-buttons {
    flex-direction: row;
  }
}

.app-store-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all var(--transition-base);
  min-width: 150px;
}

.app-store-btn.google-play {
  background: #000;
  color: var(--white);
}

.app-store-btn.app-store {
  background: #000;
  color: var(--white);
}

.app-store-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.app-store-btn svg {
  flex-shrink: 0;
}

.btn-text {
  display: flex;
  flex-direction: column;
}

.btn-text .btn-small {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.btn-text .btn-large {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

.app-qr-section {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.qr-box {
  width: 150px;
  height: 150px;
  background: var(--white);
  border-radius: 12px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.qr-box img {
  width: 100%;
  height: auto;
}

.qr-hint {
  font-size: 0.875rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.qr-url {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* ============================================
   DUAL QR CODE SECTION
   ============================================ */
.dual-qr-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .dual-qr-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.qr-card {
  background: var(--white);
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.qr-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.qr-card-header .qr-icon {
  font-size: 1.5rem;
}

.qr-card-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
}

.qr-code-box {
  width: 150px;
  height: 150px;
  background: var(--gray-50);
  border-radius: 12px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border: 2px solid var(--gray-200);
}

.qr-code-box img {
  width: 100%;
  height: auto;
}

.qr-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lindung-blue);
  margin-bottom: 0.25rem;
}

.qr-description {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.qr-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--lindung-blue);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
}

.qr-action-btn:hover {
  background: var(--lindung-blue-dark);
  transform: translateY(-2px);
}

.app-store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.store-btn-mini {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.75rem;
  background: #000;
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  transition: all var(--transition-base);
}

.store-btn-mini:hover {
  background: #333;
  transform: translateY(-2px);
}

.store-btn-mini svg {
  flex-shrink: 0;
}

/* ============================================
   DISCLAIMER BANNER - Anti-Scam Protection
   ============================================ */
.disclaimer-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: var(--white);
  padding: 0.75rem 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.disclaimer-banner.hidden {
  display: none;
}

.disclaimer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.disclaimer-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.disclaimer-content p {
  flex: 1;
  min-width: 200px;
  font-size: 0.8125rem;
  line-height: 1.5;
  margin: 0;
}

.disclaimer-content p strong {
  font-weight: 700;
}

.disclaimer-content a {
  color: #fde047;
  text-decoration: underline;
  font-weight: 600;
}

.disclaimer-content a:hover {
  color: #fef08a;
}

.disclaimer-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--white);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.disclaimer-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Add padding to body when disclaimer is visible */
body:has(.disclaimer-banner:not(.hidden)) {
  padding-top: 60px;
}

@media (min-width: 768px) {
  body:has(.disclaimer-banner:not(.hidden)) {
    padding-top: 50px;
  }

  .disclaimer-content p {
    font-size: 0.875rem;
  }
}

/* ============================================
   SECURITY WARNING BOX - Footer
   ============================================ */
.security-warning-box {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 2px solid #f59e0b;
  border-radius: 16px;
  margin-bottom: 2rem;
}

.security-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.security-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #92400e;
  margin-bottom: 0.75rem;
}

.security-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.security-content li {
  font-size: 0.875rem;
  color: #78350f;
  margin-bottom: 0.5rem;
  padding-left: 1.25rem;
  position: relative;
}

.security-content li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #d97706;
  font-weight: bold;
}

.security-content li:last-child {
  margin-bottom: 0;
}

.security-content a {
  color: #0066cc;
  font-weight: 600;
  text-decoration: underline;
}

.security-content a:hover {
  color: #004d99;
}

.footer-official-link {
  margin-top: 0.5rem;
  font-size: 0.875rem;
}

.footer-official-link a {
  color: #60a5fa;
  font-weight: 600;
  text-decoration: none;
}

.footer-official-link a:hover {
  color: #93c5fd;
  text-decoration: underline;
}

@media (max-width: 480px) {
  .security-warning-box {
    flex-direction: column;
    text-align: center;
  }

  .security-content li {
    text-align: left;
  }
}