/* ============================================
   POJOK ONLINE — Premium Website Styles
   ============================================ */

/* ---------- Variables ---------- */
:root {
  --primary: #E8873C;
  --primary-dark: #8B2252;
  --gradient: linear-gradient(135deg, #E8873C 0%, #C45A3C 50%, #8B2252 100%);
  --gradient-text: linear-gradient(135deg, #F5A623, #E8873C, #C45A3C, #8B2252);
  --bg-dark: #0a0e17;
  --bg-card: #111827;
  --bg-card-hover: #1a2235;
  --bg-elevated: #151d2e;
  --text-primary: #f1f5f9;
  --text-secondary: #cbd5e1;
  --text-muted: #64748b;
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(232,135,60,0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-glow: 0 0 60px rgba(232,135,60,0.15);
  --font: 'Poppins', -apple-system, sans-serif;
  --wa-green: #25D366;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text-secondary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration: none; transition: color 0.3s; }
a:hover { color: #F5A623; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 50px;
  font-family: var(--font); font-weight: 600; font-size: 15px;
  cursor: pointer; transition: all 0.3s ease; border: none;
  text-decoration: none; white-space: nowrap;
}
.btn-icon { width: 20px; height: 20px; flex-shrink: 0; }
.btn-primary {
  background: var(--gradient); color: #fff;
  box-shadow: 0 4px 20px rgba(232,135,60,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,135,60,0.5);
  color: #fff;
}
.btn-outline {
  background: transparent; color: var(--text-primary);
  border: 2px solid rgba(255,255,255,0.15);
}
.btn-outline:hover {
  border-color: var(--primary); color: var(--primary);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(10,14,23,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-img { width: 40px; height: 40px; border-radius: 50%; }
.nav-logo-text {
  font-size: 18px; font-weight: 800; color: var(--text-primary);
  letter-spacing: 1px;
}
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  padding: 8px 18px; color: var(--text-secondary);
  font-size: 14px; font-weight: 500; border-radius: 50px;
  transition: all 0.3s; text-decoration: none;
}
.nav-links a:hover { color: var(--text-primary); background: rgba(255,255,255,0.06); }
.nav-cta {
  background: var(--gradient) !important; color: #fff !important;
  font-weight: 600 !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232,135,60,0.4); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px; background: var(--text-primary);
  transition: all 0.3s; border-radius: 2px;
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; padding: 120px 0 80px; overflow: hidden;
}
.hero-bg-effects { position: absolute; inset: 0; pointer-events: none; }
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.3;
}
.hero-glow-1 {
  width: 500px; height: 500px; top: -100px; right: -100px;
  background: radial-gradient(circle, #E8873C, transparent 70%);
  animation: float 8s ease-in-out infinite;
}
.hero-glow-2 {
  width: 400px; height: 400px; bottom: -50px; left: -50px;
  background: radial-gradient(circle, #8B2252, transparent 70%);
  animation: float 10s ease-in-out infinite reverse;
}
.hero-glow-3 {
  width: 300px; height: 300px; top: 40%; left: 50%;
  background: radial-gradient(circle, #C45A3C, transparent 70%);
  animation: float 12s ease-in-out infinite 2s;
  opacity: 0.15;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(0.95); }
}
.hero-content { text-align: center; position: relative; z-index: 1; }
.hero-badge {
  display: inline-block; padding: 8px 20px;
  background: rgba(232,135,60,0.1); border: 1px solid rgba(232,135,60,0.25);
  border-radius: 50px; font-size: 14px; font-weight: 500;
  color: var(--primary); margin-bottom: 32px;
  animation: fadeInUp 0.8s ease both;
}
.hero-logo {
  width: 100px; height: 100px; border-radius: 50%;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.15s both;
  filter: drop-shadow(0 8px 32px rgba(232,135,60,0.3));
}
.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem); font-weight: 900;
  line-height: 1.1; margin-bottom: 16px;
  animation: fadeInUp 0.8s ease 0.3s both;
}
.hero-title-main { color: var(--text-primary); display: block; }
.hero-title-accent {
  background: var(--gradient-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-tagline-wrapper {
  display: flex; align-items: center; justify-content: center; gap: 2px;
  min-height: 40px; margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.45s both;
}
.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.35rem); font-weight: 600;
  color: var(--primary); letter-spacing: 2px; text-transform: uppercase;
}
.hero-cursor {
  font-size: 1.35rem; font-weight: 300; color: var(--primary);
  animation: blink 1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem); color: var(--text-muted);
  max-width: 600px; margin: 0 auto 36px; line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.6s both;
}
.hero-subtitle strong { color: var(--text-secondary); }
.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.75s both;
}
.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 32px;
  margin-top: 56px; padding-top: 40px;
  border-top: 1px solid var(--border);
  animation: fadeInUp 0.8s ease 0.9s both;
}
.hero-stat-value { font-size: 1.5rem; font-weight: 800; color: var(--text-primary); }
.hero-stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }
.hero-stat-divider { width: 1px; height: 40px; background: var(--border); }

.hero-scroll-indicator {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeInUp 1s ease 1.2s both;
}
.hero-scroll-indicator span { font-size: 11px; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }
.hero-scroll-mouse {
  width: 24px; height: 38px; border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px; position: relative;
}
.hero-scroll-wheel {
  width: 3px; height: 8px; background: var(--primary); border-radius: 2px;
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

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

/* ============================================
   SECTIONS COMMON
   ============================================ */
.section-header { text-align: center; margin-bottom: 56px; }
.section-badge {
  display: inline-block; padding: 6px 16px;
  background: rgba(232,135,60,0.1); border: 1px solid rgba(232,135,60,0.2);
  border-radius: 50px; font-size: 13px; font-weight: 600;
  color: var(--primary); margin-bottom: 16px; letter-spacing: 0.5px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800;
  color: var(--text-primary); margin-bottom: 16px; line-height: 1.2;
}
.section-desc { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ============================================
   SERVICES
   ============================================ */
.services { padding: 100px 0; position: relative; }
.services::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 24px;
}
.service-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 28px;
  transition: all 0.4s ease; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gradient); transform: scaleX(0);
  transition: transform 0.4s ease; transform-origin: left;
}
.service-card:hover {
  transform: translateY(-8px); border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrapper { position: relative; margin-bottom: 20px; width: fit-content; }
.service-icon {
  font-size: 2.5rem; width: 70px; height: 70px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(232,135,60,0.08); border-radius: var(--radius-md);
  position: relative; z-index: 1;
}
.service-icon-glow {
  position: absolute; inset: -8px; border-radius: var(--radius-md);
  background: var(--gradient); opacity: 0; filter: blur(20px);
  transition: opacity 0.4s;
}
.service-card:hover .service-icon-glow { opacity: 0.2; }

.service-title { font-size: 1.2rem; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.service-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; }
.service-features { margin-bottom: 20px; }
.service-features li {
  font-size: 0.85rem; color: var(--text-secondary); padding: 4px 0;
}
.service-cta {
  font-size: 0.9rem; font-weight: 600; color: var(--primary);
  transition: all 0.3s; text-decoration: none;
}
.service-cta:hover { color: #F5A623; letter-spacing: 0.5px; }

/* ============================================
   WHY US
   ============================================ */
.why-us {
  padding: 100px 0; position: relative;
  background: linear-gradient(180deg, transparent, rgba(232,135,60,0.02), transparent);
}
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px;
}
.why-card {
  text-align: center; padding: 40px 28px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); transition: all 0.4s;
}
.why-card:hover {
  transform: translateY(-6px); border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
}
.why-icon { font-size: 2.5rem; margin-bottom: 16px; }
.why-card h3 {
  font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 10px;
}
.why-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ============================================
   OPERATING HOURS
   ============================================ */
.hours-section {
  padding: 100px 0; position: relative;
}
.hours-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.hours-wrapper {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.hours-table-wrapper {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table thead { background: rgba(232,135,60,0.08); }
.hours-table th {
  padding: 14px 20px; font-size: 0.8rem; font-weight: 700;
  color: var(--primary); text-transform: uppercase; letter-spacing: 1px;
  text-align: left;
}
.hours-table td {
  padding: 14px 20px; font-size: 0.9rem; border-top: 1px solid var(--border);
  color: var(--text-secondary);
}
.hours-table tr:hover { background: rgba(255,255,255,0.02); }
.badge-open {
  display: inline-block; padding: 3px 12px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 600;
  background: rgba(34,197,94,0.1); color: #22c55e; border: 1px solid rgba(34,197,94,0.2);
}
.badge-closed {
  display: inline-block; padding: 3px 12px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 600;
  background: rgba(239,68,68,0.1); color: #ef4444; border: 1px solid rgba(239,68,68,0.2);
}
.row-closed td { color: var(--text-muted); }

/* ============================================
   LOCATION
   ============================================ */
.location { padding: 100px 0; }
.location-wrapper {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 36px; align-items: start;
}
.location-map {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-card);
}
.location-info {
  display: flex; flex-direction: column; gap: 24px;
}
.location-detail {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius-md);
  transition: border-color 0.3s;
}
.location-detail:hover { border-color: var(--border-hover); }
.location-detail-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.location-detail h4 { font-size: 0.9rem; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.location-detail p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.location-detail a { color: var(--primary); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section { padding: 100px 0; }
.cta-wrapper {
  text-align: center; padding: 80px 40px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,135,60,0.15), transparent 70%);
  top: -150px; right: -100px; pointer-events: none;
}
.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800;
  color: var(--text-primary); margin: 16px 0;
}
.cta-desc {
  font-size: 1.05rem; color: var(--text-muted);
  max-width: 500px; margin: 0 auto 32px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 60px 0 0; border-top: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.3));
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
}
.footer-logo {
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}
.footer-logo img { width: 36px; height: 36px; border-radius: 50%; }
.footer-logo span { font-size: 16px; font-weight: 800; color: var(--text-primary); letter-spacing: 1px; }
.footer-tagline { font-size: 0.9rem; color: var(--text-muted); font-style: italic; }
.footer-links-group h4 {
  font-size: 0.85rem; font-weight: 700; color: var(--text-primary);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
}
.footer-links-group a {
  display: block; font-size: 0.85rem; color: var(--text-muted);
  padding: 4px 0; transition: all 0.3s; text-decoration: none;
}
.footer-links-group a:hover { color: var(--primary); padding-left: 4px; }
.footer-socials { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 50%; transition: all 0.3s; color: var(--text-muted);
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover {
  background: var(--gradient); color: #fff;
  border-color: transparent; transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(232,135,60,0.3);
}
.footer-bottom {
  padding: 20px 0; border-top: 1px solid var(--border);
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.floating-wa {
  position: fixed; bottom: 24px; right: 24px;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--wa-green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: all 0.3s; z-index: 999;
  animation: fadeInUp 1s ease 1.5s both;
}
.floating-wa svg { width: 30px; height: 30px; }
.floating-wa:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
  color: #fff;
}
.floating-wa-tooltip {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  background: #fff; color: #333; padding: 8px 16px; border-radius: 8px;
  font-size: 13px; font-weight: 600; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.floating-wa-tooltip::after {
  content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: #fff;
}
.floating-wa:hover .floating-wa-tooltip { opacity: 1; }

/* Pulse animation for floating WA */
.floating-wa::after {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%; border: 2px solid var(--wa-green);
  animation: waPulse 2s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 0; }
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 75%; height: 100vh;
    background: rgba(10,14,23,0.97); backdrop-filter: blur(20px);
    flex-direction: column; padding: 100px 32px 32px;
    gap: 8px; transition: right 0.4s ease; z-index: 1000;
    border-left: 1px solid var(--border);
  }
  .nav-links.open { right: 0; }
  .nav-links a { width: 100%; padding: 14px 20px; font-size: 16px; border-radius: var(--radius-md); }
  .nav-hamburger { display: flex; }

  .hero { padding: 100px 0 60px; min-height: 100svh; }
  .hero-logo { width: 80px; height: 80px; }
  .hero-stats { flex-direction: row; gap: 20px; flex-wrap: wrap; }
  .hero-stat-divider { display: none; }
  .hero-scroll-indicator { display: none; }

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

  .hours-wrapper { grid-template-columns: 1fr; }
  .location-wrapper { grid-template-columns: 1fr; }

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

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-lg { padding: 14px 28px; font-size: 15px; width: 100%; justify-content: center; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
}
