/* ===========================
   Custom CSS - Jokuyin
   =========================== */

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* ===========================
   Fade-in Animations
   =========================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse-slow {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
}

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

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* ===========================
   Animation Classes
   =========================== */
.animate-fade-in-up {
  animation: fadeInUp 0.7s ease forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.7s ease forwards;
}

.animate-fade-in-right {
  animation: fadeInRight 0.7s ease forwards;
}

.animate-fade-in {
  animation: fadeIn 0.7s ease forwards;
}

.animate-scale-in {
  animation: scaleIn 0.5s ease forwards;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Delay classes */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }
.delay-800 { animation-delay: 0.8s; }

/* Initially hidden for scroll animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered children */
.stagger-children > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.6s; }

/* ===========================
   Navbar
   =========================== */
.navbar-scrolled {
  background-color: rgba(8, 14, 26, 0.95) !important;
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #1E40AF, #3B82F6);
  transition: width 0.3s ease;
  border-radius: 2px;
}

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

/* ===========================
   Hero Section
   =========================== */
.hero-gradient {
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(30, 64, 175, 0.35) 0%, transparent 70%), #080e1a;
  position: relative;
  overflow: hidden;
}

.hero-gradient::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

.hero-gradient::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite reverse;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Hero dot grid overlay */
.hero-dots {
  background-image: radial-gradient(rgba(99, 130, 246, 0.15) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* ===========================
   Service Cards
   =========================== */
.service-card {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s ease,
              border-color 0.35s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.4);
}

.service-icon-wrapper {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

/* ===========================
   Pricing Cards
   =========================== */
.pricing-card {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(59, 130, 246, 0.2);
}

.pricing-card-popular {
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(30, 64, 175, 0.4);
}

.pricing-card-popular:hover {
  transform: scale(1.05) translateY(-12px);
  box-shadow: 0 30px 70px rgba(30, 64, 175, 0.5);
}

.pricing-badge {
  background: linear-gradient(90deg, #F59E0B, #FBBF24);
  animation: shimmer 2s linear infinite;
  background-size: 200% auto;
}

.price-amount {
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ===========================
   Portfolio Cards
   =========================== */
.portfolio-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.portfolio-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 64, 175, 0.95), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.portfolio-card:hover .card-overlay {
  opacity: 1;
}

.portfolio-card .portfolio-img {
  transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.1);
}

/* Portfolio gradient backgrounds */
.port-grad-1 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.port-grad-2 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.port-grad-3 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.port-grad-4 { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.port-grad-5 { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.port-grad-6 { background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%); }

/* ===========================
   Form Styles
   =========================== */
.form-input {
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.form-input:focus {
  border-color: #3B82F6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
  transform: translateY(-1px);
  outline: none;
}

.form-label {
  transition: color 0.3s ease;
}

.btn-submit {
  background: linear-gradient(135deg, #1E40AF, #3B82F6);
  transition: transform 0.2s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.btn-submit:hover::before {
  width: 300px;
  height: 300px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(30, 64, 175, 0.4);
}

.btn-submit:active {
  transform: translateY(0);
}

/* ===========================
   Floating WhatsApp Button
   =========================== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  animation: pulse-slow 2.5s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.7);
  animation-play-state: paused;
}

.whatsapp-float i {
  font-size: 1.75rem;
  color: white;
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  white-space: nowrap;
  background: #0f1a2e;
  color: white;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(10px);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #0f1a2e;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ===========================
   CTA Buttons
   =========================== */
.btn-primary {
  background: white;
  color: #1E40AF;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.25);
  background: #EFF6FF;
}

.btn-secondary {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: white;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

/* ===========================
   Stats Counter Section
   =========================== */
.stat-card {
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

/* ===========================
   Section Dividers
   =========================== */
.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #1E40AF, #3B82F6);
  border-radius: 2px;
  margin: 0 auto;
}

/* ===========================
   Testimonials
   =========================== */
.testimonial-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.1);
}

/* ===========================
   Footer
   =========================== */
.footer-link {
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-link:hover {
  color: #60a5fa;
  transform: translateX(4px);
}

.social-icon {
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: white;
}

.social-icon:hover {
  transform: translateY(-4px) scale(1.1);
  background: rgba(255, 255, 255, 0.15);
}

/* ===========================
   Mobile Hamburger Menu
   =========================== */
#mobile-menu {
  transition: max-height 0.4s ease, opacity 0.4s ease;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
}

#mobile-menu.open {
  max-height: 400px;
  opacity: 1;
}

/* ===========================
   Scrollbar Styling
   =========================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0d1526;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #1E40AF, #3B82F6);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #1E3A8A, #2563EB);
}

/* ===========================
   Responsive Utilities
   =========================== */
@media (max-width: 768px) {
  .pricing-card-popular {
    transform: scale(1);
  }
  .pricing-card-popular:hover {
    transform: translateY(-12px);
  }
  .hero-gradient::before,
  .hero-gradient::after {
    display: none;
  }
  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 54px;
    height: 54px;
  }
}

/* ===========================
   Utility
   =========================== */
.gradient-text {
  background: linear-gradient(135deg, #60a5fa, #818cf8, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-shadow {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* ===========================
   Order Success Popup
   =========================== */
@keyframes ring-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  70%  { box-shadow: 0 0 0 16px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.popup-icon-ring {
  animation: ring-pulse 1.4s ease-out infinite;
}

/* ===========================
   Editorial Light Theme
   =========================== */
:root {
  --brand: #FAD201;
  --brand-soft: #fff9d8;
  --ink: #1d1d1b;
  --muted: #909090;
  --paper: #ffffff;
  --paper-alt: #f7f7f5;
  --line: #e8e8e3;
}

body {
  background: var(--paper) !important;
  color: var(--ink) !important;
  font-family: "DM Sans", sans-serif !important;
}

h1, h2, h3 {
  font-family: "Playfair Display", serif;
  letter-spacing: -0.025em;
}

section {
  background: var(--paper) !important;
}

section:nth-of-type(even) {
  background: var(--paper-alt) !important;
}

.text-white,
.text-slate-100,
.text-slate-200,
.text-slate-300 {
  color: var(--ink) !important;
}

.text-slate-400,
.text-slate-500,
.text-slate-600,
.text-blue-100,
.text-blue-200,
.text-blue-300,
.text-blue-400,
.text-primary-400 {
  color: var(--muted) !important;
}

.gradient-text,
.price-amount {
  background: none !important;
  color: var(--ink) !important;
  -webkit-text-fill-color: var(--ink) !important;
}

/* Header */
#navbar {
  background: rgba(255, 255, 255, 0.96);
  border-top: 4px solid var(--brand);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.navbar-scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 12px 30px rgba(29, 29, 27, 0.06);
}

#navbar .nav-link,
#logo-text {
  color: var(--ink) !important;
  text-shadow: none;
}

#navbar .nav-link::after {
  height: 3px;
  background: var(--brand);
}

#navbar a[href="#kontak"].bg-blue-600,
#mobile-menu a[href="#kontak"].bg-blue-600 {
  background: var(--ink) !important;
  color: white !important;
  border-radius: 4px !important;
}

#navbar .bg-gradient-to-br {
  background: var(--brand) !important;
  box-shadow: none !important;
  border-radius: 4px !important;
}

#navbar .fa-code {
  color: var(--ink) !important;
}

.brand-logo-image {
  width: 3rem;
  height: 3rem;
  display: block;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #b88718;
  background: #fffdf7;
  box-shadow: 0 8px 20px rgba(184, 135, 24, 0.2);
}

#navbar .brand-logo-image {
  width: 3.25rem;
  height: 3.25rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#navbar a:hover .brand-logo-image {
  transform: scale(1.06);
  box-shadow: 0 10px 24px rgba(184, 135, 24, 0.3);
}

#hamburger span {
  background: var(--ink) !important;
}

#mobile-menu {
  background: white !important;
  border-bottom: 1px solid var(--line) !important;
}

#mobile-menu a {
  color: var(--ink) !important;
}

/* Hero */
.hero-gradient {
  min-height: auto !important;
  padding-top: 9.5rem !important;
  padding-bottom: 5rem !important;
  background:
    radial-gradient(circle at 82% 44%, rgba(250, 210, 1, 0.95) 0 13%, transparent 13.2%),
    radial-gradient(circle at 82% 44%, transparent 0 21%, #1d1d1b 21.2% 22.4%, transparent 22.6%),
    linear-gradient(90deg, white 0 61%, #f5f5f2 61% 100%) !important;
  border-bottom: 1px solid var(--line);
}

.hero-gradient::before {
  top: 22%;
  right: 4%;
  width: 300px;
  height: 300px;
  border: 48px solid var(--brand);
  border-radius: 50%;
  background: transparent;
  opacity: 0.25;
}

.hero-gradient::after {
  bottom: 12%;
  left: auto;
  right: 32%;
  width: 80px;
  height: 80px;
  background: var(--brand);
  border-radius: 0;
  opacity: 0.6;
  transform: rotate(18deg);
}

.hero-dots,
.hero-gradient > .bg-blue-500\/20,
.hero-gradient > .bg-indigo-500\/10,
.hero-gradient .absolute.bottom-0 {
  display: none !important;
}

.hero-gradient .grid {
  gap: 5rem;
}

.hero-gradient h1 {
  color: var(--ink) !important;
  font-size: clamp(2.9rem, 6vw, 5.4rem) !important;
  line-height: 1.02 !important;
  max-width: 760px;
}

.hero-gradient h1 span {
  color: var(--brand) !important;
  -webkit-text-stroke: 1px var(--ink);
}

.hero-gradient p {
  color: var(--muted) !important;
}

.hero-badge {
  background: var(--brand-soft);
  border-color: var(--brand);
  color: var(--ink) !important;
  border-radius: 999px !important;
}

.hero-badge span {
  background: var(--brand) !important;
}

.btn-primary,
.btn-submit {
  background: var(--ink) !important;
  color: white !important;
  border-radius: 4px !important;
  box-shadow: none !important;
}

.btn-secondary {
  border: 1px solid var(--line);
  color: var(--ink) !important;
  background: white;
  border-radius: 4px !important;
}

.hero-gradient .text-blue-200 i {
  color: var(--brand) !important;
}

.hero-gradient .hidden.lg\:flex > div > div:first-child {
  background: white !important;
  border: 1px solid var(--line) !important;
  border-radius: 8px !important;
  box-shadow: 20px 20px 0 var(--brand) !important;
}

.hero-gradient .hidden.lg\:flex .bg-\[\#111d35\] {
  background: white !important;
  border-color: var(--line) !important;
  border-radius: 6px !important;
}

.hero-gradient .bg-white\/10,
.hero-gradient .bg-white\/20 {
  background: var(--paper-alt) !important;
}

.hero-gradient .bg-blue-500,
.hero-gradient .bg-gradient-to-r {
  background: var(--brand) !important;
}

.hero-gradient .mt-20 {
  margin-top: 5rem !important;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.stat-card {
  background: transparent !important;
  border: 0 !important;
  border-right: 1px solid var(--line) !important;
  border-radius: 0 !important;
  backdrop-filter: none !important;
}

.stat-card:last-child {
  border-right: 0 !important;
}

.stat-card p:first-child {
  color: var(--ink) !important;
  font-family: "Playfair Display", serif;
}

/* Shared section styling */
section:not(#hero) {
  padding-top: 6.5rem !important;
  padding-bottom: 6.5rem !important;
}

section:not(#hero) h2 {
  color: var(--ink) !important;
  font-size: clamp(2.2rem, 4vw, 3.4rem) !important;
}

section:not(#hero) [class*="rounded-full"][class*="inline-block"] {
  background: var(--brand-soft) !important;
  color: var(--ink) !important;
  border-color: var(--brand) !important;
}

.section-divider {
  background: var(--brand);
  height: 3px;
}

/* Cards */
.service-card,
.pricing-card,
.portfolio-card,
.testimonial-card,
#kontak .bg-\[\#0f1a2e\],
#kontak .bg-\[\#0d1526\] {
  background: white !important;
  border: 1px solid var(--line) !important;
  border-radius: 6px !important;
  box-shadow: none !important;
}

.service-card:hover,
.pricing-card:hover,
.portfolio-card:hover,
.testimonial-card:hover {
  border-color: var(--ink) !important;
  box-shadow: 10px 10px 0 var(--brand) !important;
  transform: translateY(-6px) !important;
}

.service-icon-wrapper,
.service-card .bg-gradient-to-br {
  width: 58px !important;
  height: 58px !important;
  margin-left: 0 !important;
  background: var(--brand) !important;
  border-radius: 50% !important;
  box-shadow: none !important;
}

.service-card {
  text-align: left !important;
}

.service-card i,
.service-card a,
.pricing-card i {
  color: var(--ink) !important;
}

.service-card a {
  border-bottom: 2px solid var(--brand);
  padding-bottom: 2px;
}

#layanan .text-center.mt-14 {
  position: relative;
  z-index: 40;
  pointer-events: auto;
}

#consultation-wa-button {
  position: relative;
  z-index: 41;
  pointer-events: auto !important;
  isolation: isolate;
  cursor: pointer !important;
}

.pricing-card-popular {
  background: var(--brand) !important;
  color: var(--ink) !important;
  transform: scale(1.03);
  box-shadow: 12px 12px 0 var(--ink) !important;
}

.pricing-card-popular:hover {
  transform: scale(1.03) translateY(-6px) !important;
  box-shadow: 12px 18px 0 var(--ink) !important;
}

.pricing-badge {
  background: var(--ink) !important;
  color: white !important;
  border-radius: 3px !important;
}

.pricing-card a,
#portofolio > div > div:last-child a {
  background: var(--ink) !important;
  border-color: var(--ink) !important;
  color: white !important;
  border-radius: 3px !important;
  box-shadow: none !important;
}

#harga .pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

#harga .pricing-card ul {
  border-top: 2px solid rgba(29, 29, 27, 0.12);
  padding-top: 1.5rem;
}

#harga .pricing-card a {
  margin-top: auto;
}

#harga .pricing-card-purple h3,
#harga .pricing-card-purple .price-amount,
#harga .pricing-card-purple > div:first-child i {
  color: #7c3fc4 !important;
  -webkit-text-fill-color: #7c3fc4 !important;
}

#harga .pricing-card-purple > div:first-child > div {
  background: #efe6ff !important;
}

#harga .pricing-card-purple li i {
  color: #7c3fc4 !important;
}

#harga .pricing-card-purple a {
  background: linear-gradient(135deg, #7c3fc4, #8b4dd8) !important;
  border-color: #7c3fc4 !important;
}

#harga .pricing-card-popular {
  border-color: #e4a400 !important;
}

#harga .pricing-card-popular ul {
  border-top-color: rgba(29, 29, 27, 0.18);
}

#harga .pricing-card-popular li i {
  color: #1d1d1b !important;
}

#harga .pricing-card-blue h3,
#harga .pricing-card-blue > div:nth-child(2) .text-purple-400,
#harga .pricing-card-blue > div:first-child i {
  color: #0b67d8 !important;
  -webkit-text-fill-color: #0b67d8 !important;
}

#harga .pricing-card-blue > div:first-child > div {
  background: #e6f0ff !important;
}

#harga .pricing-card-blue li i {
  color: #0b67d8 !important;
}

#harga .pricing-card-blue a {
  background: linear-gradient(135deg, #0b67d8, #0757bd) !important;
  border-color: #0b67d8 !important;
  color: white !important;
  -webkit-text-fill-color: white !important;
}

.portfolio-card .relative.h-52 {
  background: var(--brand) !important;
}

.portfolio-card:nth-child(even) .relative.h-52 {
  background: #dededb !important;
}

.portfolio-card .portfolio-img i {
  color: var(--ink) !important;
  opacity: 0.75;
}

.portfolio-card .card-overlay {
  background: linear-gradient(to top, rgba(29, 29, 27, 0.92), transparent);
}

.portfolio-card .card-overlay p {
  color: white !important;
}

.portfolio-card span[class*="bg-"] {
  background: var(--paper-alt) !important;
  color: var(--muted) !important;
  border-radius: 3px !important;
}

.testimonial-card {
  position: relative;
  padding-top: 4.5rem !important;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  color: var(--brand);
  font: 700 5rem/1 "Playfair Display", serif;
}

/* Contact and form */
#kontak {
  background: linear-gradient(90deg, var(--paper-alt) 0 50%, white 50% 100%) !important;
}

#kontak a,
#kontak > div > div > div:first-child > div:last-child {
  border-radius: 4px !important;
}

.form-input {
  background: white !important;
  color: var(--ink) !important;
  border: 1px solid #d9d9d4 !important;
  border-radius: 3px !important;
}

.form-input:focus {
  border-color: var(--brand) !important;
  box-shadow: 0 0 0 3px rgba(250, 210, 1, 0.22);
}

/* Footer and popup */
footer {
  background: var(--paper-alt) !important;
  color: var(--ink) !important;
  border-top: 1px solid var(--line);
}

footer .text-white,
footer h4 {
  color: var(--ink) !important;
}

footer .bg-gradient-to-br {
  background: var(--brand) !important;
}

.social-icon {
  background: var(--ink) !important;
  color: white !important;
}

#popup-card,
#popup-detail {
  background: white !important;
  color: var(--ink) !important;
  border-color: var(--line) !important;
  border-radius: 6px !important;
}

#popup-card .text-white {
  color: var(--ink) !important;
}

::-webkit-scrollbar-track {
  background: var(--paper-alt);
}

::-webkit-scrollbar-thumb {
  background: var(--brand);
}

@media (max-width: 1024px) {
  .hero-gradient {
    background: white !important;
  }
}

@media (max-width: 768px) {
  .hero-gradient {
    padding-top: 7.5rem !important;
  }

  .hero-gradient h1 {
    font-size: 2.75rem !important;
  }

  section:not(#hero) {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }

  .stat-card:nth-child(2) {
    border-right: 0 !important;
  }

  #kontak {
    background: var(--paper-alt) !important;
  }
}

/* Hero right panel based on Jokuyin reference mockup */
.hero-gradient > .max-w-7xl > .grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(650px, 1.22fr);
  align-items: center;
}

.hero-gradient .btn-primary {
  background: var(--brand) !important;
  color: var(--ink) !important;
  border-radius: 12px !important;
  box-shadow: 0 16px 38px rgba(250, 210, 1, 0.28) !important;
}

.hero-gradient .btn-secondary {
  border-radius: 12px !important;
  box-shadow: 0 10px 28px rgba(29, 29, 27, 0.06);
}

.hero-workspace {
  width: min(100%, 760px);
  margin-left: auto;
}

.hero-dotted {
  background-image: radial-gradient(rgba(250, 210, 1, 0.55) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: 0.7;
}

.hero-benefit-panel,
.hero-flow-panel,
.hero-stats-strip {
  position: relative;
  z-index: 1;
  border-radius: 18px;
}

.hero-benefit-panel {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  box-shadow: 0 22px 60px rgba(29, 29, 27, 0.06);
  padding: 1.9rem;
  backdrop-filter: blur(16px);
}

.hero-benefit-panel .grid {
  gap: 1rem !important;
}

.hero-benefit-panel h3,
.hero-flow-panel h3 {
  font-family: "DM Sans", sans-serif;
  letter-spacing: -0.04em;
  color: #071018 !important;
}

.hero-benefit-card {
  min-height: 156px;
  padding: 1.35rem 1rem;
  text-align: center;
  border-radius: 14px;
  background: linear-gradient(145deg, #fff9df 0%, #ffffff 72%);
  box-shadow: inset 0 0 0 1px rgba(250, 210, 1, 0.13);
}

.hero-benefit-card i {
  font-size: 3rem;
  color: var(--brand) !important;
  filter: drop-shadow(0 10px 16px rgba(250, 210, 1, 0.26));
}

.hero-benefit-card p {
  color: #071018 !important;
  line-height: 1.2;
}

.hero-benefit-card span {
  display: block;
  color: #505050;
  font-size: 0.9rem;
  line-height: 1.45;
}

.hero-flow-panel {
  margin-top: 1.25rem;
  padding: 1.9rem;
  background:
    radial-gradient(circle at 22% 30%, rgba(250, 210, 1, 0.12), transparent 25%),
    radial-gradient(circle at 78% 72%, rgba(250, 210, 1, 0.12), transparent 25%),
    linear-gradient(135deg, #101820, #05090d);
  color: white;
  overflow: hidden;
  box-shadow: 0 24px 55px rgba(7, 16, 24, 0.2);
}

.hero-flow-panel .grid {
  gap: 1.5rem !important;
}

.hero-flow-panel h3 {
  color: white !important;
}

.hero-title-line {
  display: inline-block;
  width: 44px;
  height: 4px;
  border-radius: 999px;
  background: var(--brand);
}

.hero-flow-line {
  position: absolute;
  left: 13%;
  right: 13%;
  top: 51%;
  border-top: 2px dashed rgba(255, 255, 255, 0.55);
}

.hero-flow-step {
  position: relative;
  text-align: center;
}

.hero-step-number {
  position: absolute;
  top: -1.65rem;
  left: 50%;
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #3a4854;
  color: white;
  font-weight: 800;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.45);
}

.hero-step-icon {
  width: 4.4rem;
  height: 4.4rem;
  margin: 0 auto 0.8rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 12px 25px rgba(250, 210, 1, 0.32);
}

.hero-step-icon i {
  color: white !important;
  font-size: 1.8rem;
}

.hero-flow-step p {
  color: white !important;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.hero-flow-step small {
  display: block;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  line-height: 1.35;
}

.hero-stats-strip {
  margin-top: 1.25rem;
  padding: 1.45rem 1.35rem;
  background: linear-gradient(135deg, #fffdf5, white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(29, 29, 27, 0.06);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  padding: 0 0.9rem;
  border-right: 1px solid var(--line);
}

.hero-stat-item:first-child {
  padding-left: 0;
}

.hero-stat-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.hero-stat-item > span {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--ink);
  flex-shrink: 0;
}

.hero-stat-item i {
  color: var(--ink) !important;
  font-size: 1.1rem;
}

.hero-stat-item strong {
  display: block;
  color: #071018;
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  line-height: 1;
  font-weight: 900;
}

.hero-stat-item small {
  display: block;
  margin-top: 0.25rem;
  color: #505050;
  font-size: 0.8rem;
  line-height: 1.2;
  white-space: normal;
}

@media (max-width: 1280px) {
  .hero-gradient > .max-w-7xl > .grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(560px, 1.15fr);
  }

  .hero-benefit-card {
    padding-inline: 0.75rem;
  }

  .hero-stat-item {
    gap: 0.7rem;
    padding-inline: 0.7rem;
  }

  .hero-stat-item strong {
    font-size: 1.35rem;
  }
}

@media (max-width: 1024px) {
  .hero-gradient > .max-w-7xl > .grid {
    display: block;
  }
}
