/* ============================================
   Indonesia-Specific Styles & Enhancements
   ============================================ */

/* Indonesia-specific typography adjustments */
body {
  text-rendering: optimizeLegibility;
  /* Critical: prevent horizontal overflow on all devices */
  overflow-x: hidden;
  width: 100%;
  /* DO NOT add position:relative to body - it breaks sticky header! */
}

/* Enhanced sticky header for better visibility */
.fixed-a4af {
  will-change: transform, box-shadow;
}

/* Improve header button visibility on scroll */
.fixed-a4af.content_small_8433 .silver_128c {
  box-shadow: 0 4px 16px rgba(25, 118, 210, 0.5);
}

/* Add subtle pulse effect to download button */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.3);
  }
  50% {
    box-shadow: 0 2px 12px rgba(25, 118, 210, 0.5);
  }
}

.silver_128c {
  animation: pulse-glow 3s ease-in-out infinite;
}

/* Ensure no element can cause horizontal scroll */
* {
  max-width: 100%;
}

/* Allow full-width sections */
section,
.notice_outer_c62f,
.heading-0b86,
.secondary_b4f5,
.rough-c9d8,
.shade_dcbf,
.tooltip_35e0 {
  max-width: none;
  width: 100%;
}

/* Header MUST be separate to maintain sticky */
.fixed-a4af {
  max-width: none !important;
  width: 100% !important;
}

/* Better readability for Indonesian text */
p, li, td {
  hyphens: auto;
  word-wrap: break-word;
}

/* Indonesia-specific color overrides for better cultural fit */
:root {
  --color-indonesian-red: #ce1126;
  --color-indonesian-white: #ffffff;
}

/* Additional animations for better UX */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fn-show-cf52 {
  animation: fadeInUp 0.6s ease-out;
}

/* Mobile optimizations for Indonesia (often slower connections) */
@media (max-width: 768px) {
  /* Reduce animation complexity on mobile */
  * {
    animation-duration: 0.3s !important;
  }
  
  /* Optimize images */
  img {
    image-rendering: -webkit-optimize-contrast;
  }
  
  /* Prevent horizontal scroll */
  body {
    overflow-x: hidden;
  }
  
  /* Ensure all containers fit */
  .center-9086,
  .up_69ca,
  .media-lower-b119,
  .title_4fbc,
  .pink_e50d {
    width: 100%;
    max-width: 100%;
  }
  
  /* Better text wrapping */
  h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  /* Prevent code overflow */
  pre, code {
    overflow-x: auto;
    word-wrap: break-word;
    white-space: pre-wrap;
  }
}

/* Extra small mobile (≤480px) */
@media (max-width: 480px) {
  /* More aggressive space reduction */
  .notice_outer_c62f,
  .heading-0b86,
  .rough-c9d8,
  .shade_dcbf {
    padding-left: 12px;
    padding-right: 12px;
  }
  
  /* Full-width buttons */
  .hover-advanced-1b41,
  .pressed_d2af,
  .alert-over-0373 {
    width: 100%;
    justify-content: center;
  }
  
  /* Stack flex items */
  .card-middle-76b8,
  .description-up-85ad,
  .clean_baa2,
  .large_f8ec {
    flex-direction: column;
    width: 100%;
  }
  
  /* Smaller stat cards */
  .element-7f5a {
    padding: 1rem;
  }
  
  .border_56ab {
    font-size: 1.75rem;
  }
}

/* Improve tap targets for mobile (common in Indonesia) */
@media (hover: none) and (pointer: coarse) {
  .hover-advanced-1b41,
  .middle-6474,
  .banner-8082 {
    min-height: 44px;
    padding: 12px 20px;
  }
}

/* Better contrast for outdoor viewing (common in tropical climate) */
@media (prefers-contrast: high) {
  :root {
    --color-text: #000000;
    --color-border: #999999;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  :root {
    --color-bg: #1a1a1a;
    --color-bg-alt: #2d2d2d;
    --color-bg-section: #242424;
    --color-text: #e0e0e0;
    --color-text-light: #b0b0b0;
    --color-border: #404040;
  }
  
  .fixed-a4af {
    background: #2d2d2d;
  }
  
  .item-2d51,
  .surface-6dbc,
  .element-7f5a,
  .table_5c9f,
  .red_0909 {
    background: #2d2d2d;
  }
}

/* Loading states for slow connections */
.fn-loading-cf52 {
  position: relative;
  pointer-events: none;
  opacity: 0.6;
}

.fn-loading-cf52::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--color-primary);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
  to { transform: rotate(360deg); }
}

/* Optimize for Indonesian payment methods */
.description-full-67c9 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
}

.liquid_f199 {
  width: 60px;
  height: 40px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.liquid_f199:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Whatsapp link styling (popular in Indonesia) */
a[href*="whatsapp.media-2e63"] {
  background: #25d366;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

a[href*="whatsapp.media-2e63"]:hover {
  background: #1da851;
}

/* Indonesia-specific accessibility */
[lang="id"] {
  quotes: '"' '"' "'" "'";
}

/* Better number formatting for Indonesian locale */
.description-7e1b {
  font-variant-numeric: tabular-nums;
}

/* Rupiah currency formatting */
.media-ee4a::before {
  content: "Rp ";
}

/* Performance optimizations */
.content_c1e3 {
  opacity: 0;
  transition: opacity 0.3s;
}

.content_c1e3.fn-loaded-cf52 {
  opacity: 1;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* css-noise: 3f26 */
.ghost-box-t3 {
  padding: 0.3rem;
  font-size: 12px;
  line-height: 1.0;
}
