/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

/* ======================== */
/*     ROOT VARIABLES       */
/* ======================== */
:root {
  /* Warna Utama (Brand Colors) */
  --primary:      #000;      /* Navy utama #003366;  */
  --primary-dark: #002244;      /* Navy gelap untuk hover */
  --accent:       #d4af37;      /* Gold / kuning keemasan #d4af37; */
  --accent-dark:  #b8860b;      /* Gold gelap untuk hover */
  --orange:       #ff6600;      /* Orange accent (shadow button primary) */
  --whatsapp:     #25d366;      /* WhatsApp green */
  --whatsapp-dark:#1ebe5d;      /* WhatsApp hover */
  --success:      #22c55e;      /* Ready stock */
  --warning:      #f59e0b;      /* Pre-order orange */

  /* Warna Netral & Text */
  --text-dark:    #000000;
  --text-main:    #333333;
  --text-light:   #555555;
  --text-muted:   #777777;
  --text-label:   #999999;
  --bg-white:     #ffffff;
  --bg-light:     #fafafa;
  --border-light: #eeeeee;

  /* Warna Ikon & Background */
  --icon-phone-bg:    #ffe5d9;
  --icon-whatsapp-bg: #d4edda;
  --icon-email-bg:    #fff3cd;

  /* Gradient */
  --gradient-hero:    linear-gradient(135deg, #e8f4fd 0%, #ffffff 50%, #fff5eb 100%);
  --gradient-whatsapp:linear-gradient(135deg, #25d366, #1ebe5d);
  --gradient-gold:    linear-gradient(135deg, #d4af37, #b8860b);

  /* Shadow */
  --shadow-sm:        0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:        0 8px 25px rgba(0,0,0,0.15);
  --shadow-lg:        0 10px 30px rgba(0,0,0,0.5);
  --shadow-hero:      0 20px 40px rgba(0,0,0,0.08);
  --shadow-float:     0 15px 30px rgba(37,211,102,0.4);
  --shadow-bubble:    0 20px 60px rgba(255,102,0,0.3);
  --shadow-contact:   0 30px 60px rgba(0,0,0,0.15);

  /* Transisi default */
  --transition: all 0.3s ease;
}

/* Base Styles */
* {
  font-family: "Poppins", sans-serif;
}
html {
  scroll-behavior: smooth;
}

/* Hero Gradient */
.gradient-hero {
  background: var(--gradient-hero);
}

/* Card Hover Effects */
.card-hover {
  transition: var(--transition);
}
.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

/* Worker Card */
.worker-card {
  transition: var(--transition);
}
.worker-card:hover {
  transform: scale(1.03);
}

/* Button Primary */
.btn-primary {
  transition: var(--transition);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.4);
}

/* Button Secondary */
.btn-secondary {
  transition: var(--transition);
}
.btn-secondary:hover {
  background: var(--primary);
  color: white;
}

/* Float Animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
.float-animation {
  animation: float 3s ease-in-out infinite;
}

/* Fade In Up Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Logo Scroll Animation */
.logo-scroll {
  animation: scroll 20s linear infinite;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: white;
  box-shadow: var(--shadow-sm);
  height: 80px;
}

/* Logo Bubble */
.logo-bubble {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-circle {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  font-size: 20px;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.5px;
}

.logo-subtitle {
  font-size: 10px;
  color: var(--primary);
  font-weight: 500;
  line-height: 1;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-item {
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}

.nav-item.active {
  color: var(--accent);
  border-bottom: 3px solid var(--accent);
}

.nav-item:hover {
  color: var(--accent);
}

.nav-dropdown {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Contact Section */
.contact-section {
  background: white;
  padding: 60px 20px;
  min-height: 75vh;
  display: flex;
  align-items: center;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
}

.illustration-bubble {
  width: 350px;
  height: 350px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(197, 167, 34, 0.3);
}

.worker-illustration {
  width: 280px;
  height: 280px;
}

.contact-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 40px;
  line-height: 1.3;
}

.contact-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 20px;
}

.contact-column h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-item:hover {
  transform: translateX(4px);
  color: var(--accent);
}

.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.icon-phone {
  background: var(--icon-phone-bg);
  color: var(--accent);
}

.icon-whatsapp {
  background: var(--icon-whatsapp-bg);
  color: var(--whatsapp);
}

.icon-email {
  background: #fff3cd;
  color: #ff9800;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 12px;
  color: #999;
  font-weight: 500;
}

.contact-value {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

/* Footer */
.footer {
  background: var(--primary);
  color: white;
  padding: 60px 20px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
}

.footer-link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--accent);
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================= */
/* FLOATING BUTTONS - MODERN UI  */
/* ============================= */

.floating-container {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.floating-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  position: relative;
}

.floating-btn:hover {
  transform: translateY(-4px);
}

/* WhatsApp */
.whatsapp-btn {
  background: var(--success);
  font-size: 32px; /* tinggal besarin angkanya */
}

.whatsapp-btn:hover {
  box-shadow: 0 15px 30px var(--shadow-float);
}

/* Scroll Button */
.scroll-btn {
  background: var(--accent);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.scroll-btn.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Tooltip */
.tooltip {
  position: absolute;
  right: 65px;
  background: #111;
  color: white;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.floating-btn:hover .tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-content h2 {
    font-size: 28px;
  }

  .contact-columns {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    gap: 15px;
  }

  .nav-item {
    font-size: 12px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  @media (max-width: 768px) {

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  /* Biar ilustrasi tetap hidup */
  .contact-illustration {
    order: -1; /* pindahin ke atas */
  }

  .custom-bubble {
    width: 260px;
    height: 260px;
    margin: 0 auto;
  }

  .cs-image {
    width: 85%;
    height: auto;
  }

  /* Floating box biar ga berantakan */
  .floating-box {
    font-size: 12px;
    padding: 8px 12px;
  }

  .float-1 {
    top: 10px;
    right: 0;
  }

  .float-2 {
    bottom: 10px;
    left: 0;
  }

  /* Judul */
  .contact-content h2 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 25px;
  }

  /* Kolom jadi stack tapi tetap clean */
  .contact-columns {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  /* Card feel biar mirip desktop */
  .contact-item {
    justify-content: center;
    text-align: left;
    background: #fafafa;
    padding: 12px 14px;
    border-radius: 12px;
  }

  .contact-item:hover {
    transform: none; /* mobile jangan geser */
  }

  .contact-icon {
    min-width: 36px;
  }

  .contact-info {
    text-align: left;
  }
}
}

/* Box Sizing */
body {
  box-sizing: border-box;
}

.hero-image {
  position: relative;
  height: 520px;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(0, 51, 102, 0.6),
    rgba(0, 51, 102, 0.1)
  );
}
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 8% 100px; /* atas & bawah penting */
  background: url("img/hero1.png") no-repeat;
  background-size: cover;
  background-position: 70% center; /* geser gambar sedikit ke kiri */
  overflow: hidden;
}

/* GRADIENT PUTIH KE KIRI */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.85) 0%,
    rgba(255,255,255,0.65) 40%,
    rgba(255,255,255,0.1) 100%
  );
}

/* CONTENT */
.hero-content {
  position: relative;
  max-width: 650px;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(0,51,102,0.1);
  color: var(--primary);
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 14px;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--accent);
}

.hero-content p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.btn-primary {
  background: var(--accent);
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
}

.btn-secondary {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
}

/* GLASS CARD */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  max-width: 450px;
}

.hero-stats strong {
  font-size: 20px;
  color: var(--primary);
  display: block;
}

.hero-stats span {
  font-size: 14px;
  color: #555;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.stat-icon {
  width: 45px;
  height: 45px;
  background: rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--accent);
  font-size: 18px;
}

.trusted-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.trusted-logo {
  height: 40px;
  object-fit: contain;
  
  transition: all 0.3s ease;
}

.trusted-logo:hover {
  
  transform: scale(1.05);
}
.logo-slider {
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  gap: 80px;
  animation: scroll 20s linear infinite;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.illustration-bubble {
  background: radial-gradient(circle at center, var(--accent) 0%, var(--accent-dark) 100%);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@keyframes float2 {
  0% { transform: translateY(0); }
  50% { transform: translateY(8px); }
  100% { transform: translateY(0); }
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

.animate-float2 {
  animation: float2 5s ease-in-out infinite;
}
.recommendation {
  padding: 40px 5%;
  background: var(--primary);
  color: white;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.section-header h2 {
  font-size: 26px;
  font-weight: 600;
}

.lihat-semua {
  background: var(--accent);
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none;
  color: black;
  font-weight: 500;
  transition: 0.3s;
}

.lihat-semua:hover {
  background: var(--accent-dark);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
}

.product-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.product-image {
  position: relative;
}

.product-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.pre-order {
  background: orange;
  color: white;
}

.ready-stock {
  background: #22c55e;
  color: white;
}

.product-info {
  padding: 15px;
}

.product-info h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  min-height: 40px;
  color: #1a1a1a; /* lebih tegas */
}

.price {
  display: flex;
  gap: 8px;
  align-items: center;
}

.current {
  font-weight: bold;
  font-size: 16px;
  color: #b8860b; /* gold lebih dalam biar kontras */
}

.old {
  text-decoration: line-through;
  font-size: 13px;
  color: #777; /* jangan terlalu pucat */
}

.product-actions {
  display: flex;
  justify-content: space-around;
  padding: 12px 0;
  border-top: 1px solid #eee; /* lebih soft */
  font-size: 18px;
  color: #555; /* lebih jelas */
  background: #fafafa;
}

.product-actions i {
  cursor: pointer;
  transition: 0.3s;
}

.product-actions i:hover {
  color: var(--accent);
}

@media (max-width: 480px) {

  /* Navbar */
  .navbar {
    height: 65px;
    padding: 0 15px;
  }

  .logo-text {
    font-size: 18px;
  }

  /* Hero */
 .hero-section {
    min-height: 100vh; /* tetap full layar */
    padding: 100px 20px 60px;
    background-position: 70% center;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-section {
    padding: 40px 15px;
  }

  .illustration-bubble {
    width: 220px;
    height: 220px;
  }

  .worker-illustration {
    width: 180px;
    height: 180px;
  }

  .contact-content h2 {
    font-size: 22px;
  }

  /* Floating Button */
  .floating-btn {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }

  .tooltip {
    display: none;
  }

}

@media (max-width: 1024px) {

  .hero-section {
    padding: 0 5%;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .contact-container {
    gap: 40px;
  }

  .illustration-bubble {
    width: 300px;
    height: 300px;
  }

  .worker-illustration {
    width: 240px;
    height: 240px;
  }

}
@media (max-width: 768px) {

  .nav-menu {
    position: fixed;
    top: 65px;
    right: -100%;
    flex-direction: column;
    background: white;
    width: 220px;
    height: 100vh;
    padding: 30px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: 0.3s;
  }

  .nav-menu.active {
    right: 0;
  }

}

/* ============================= */
/* GLOBAL RESPONSIVE FIX */
/* ============================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

section {
  width: 100%;
  overflow: hidden;
}
/* Hamburger Button */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #003366;
  border-radius: 3px;
  transition: 0.3s;
}

/* Mobile Navbar */
@media (max-width: 768px) {

  .navbar {
    height: 65px;
    padding: 0 20px;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 65px;
    right: -100%;
    flex-direction: column;
    background: white;
    width: 250px;
    height: 100vh;
    padding: 40px 30px;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    transition: 0.4s ease;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-item {
    font-size: 16px;
  }
}
/* ============================= */
/* HERO RESPONSIVE IMPROVEMENT */
/* ============================= */

@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {

  .hero-section {
    padding: 100px 20px 60px;
    background-position: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}
/* ============================= */
/* CONTACT RESPONSIVE */
/* ============================= */

@media (max-width: 768px) {

  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .contact-columns {
    grid-template-columns: 1fr;
  }

  .illustration-bubble {
    width: 220px;
    height: 220px;
  }

  .worker-illustration {
    width: 180px;
    height: 180px;
  }
}
/* ============================= */
/* PRODUCT GRID RESPONSIVE */
/* ============================= */

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-image img {
    height: 160px;
  }
}

@media (max-width: 400px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {

  .floating-container {
    right: 15px;
    bottom: 15px;
  }

  .floating-btn {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .tooltip {
    display: none;
  }
}
.hero-content h1 {
  font-size: clamp(28px, 5vw, 48px);
}

/* Custom color mapping (pengganti Tailwind) */
.bg-primary { background: var(--primary); }
.bg-primary-light { background: rgba(30,58,138,0.1); }

.bg-accent { background: var(--accent); }
.bg-accent-light { background: rgba(34,197,94,0.1); }

.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }

.border-light { border: 1px solid var(--border-light); }

/* Gradient pengganti */
.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-accent {
  background: var(--gradient-accent);
}

/* Button */
.btn-outline {
  background: rgba(30,58,138,0.05);
  color: var(--primary);
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.text-accent {
  color: var(--accent);
}

.bg-accent {
  background: var(--accent);
}

.bg-accent-dark {
  background: var(--accent-dark);
}

.hover\:bg-accent:hover {
  background: var(--accent);
}

.hover\:bg-accent-dark:hover {
  background: var(--accent-dark);
}

/* PRIMARY (biru) */
.bg-primary { background-color: var(--primary); }
.text-primary { color: var(--primary); }

/* ACCENT (hijau) */
.bg-accent { background-color: var(--accent); }
.text-accent { color: var(--accent); }

/* HOVER */
.bg-accent-hover { background-color: var(--accent-dark); }

/* OPACITY */
.bg-accent\/20 { background-color: rgba(34, 197, 94, 0.2); }

/* GRADIENT SUPPORT */
.from-green { --tw-gradient-from: var(--accent); }
.via-green-dark { --tw-gradient-stops: var(--accent-dark); }
.to-primary { --tw-gradient-to: var(--primary); }

/* FIX GRADIENT (penting) */
.bg-gradient-to-br {
  background-image: linear-gradient(
    to bottom right,
    var(--accent),
    var(--accent-dark),
    var(--primary)
  );
}

.bg-gradient-to-r {
  background-image: linear-gradient(
    to right,
    var(--accent),
    var(--accent-dark)
  );
}

.bg-primary-dark {
  background-color: var(--primary-dark);
}

.text-primary-dark {
  color: var(--primary-dark);
}

.hover\:bg-primary-dark:hover {
  background-color: var(--primary-dark);
}

.custom-bubble {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bubble-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: yellow; /* biar ikut branding */
  opacity: 0.25;
  filter: blur(60px);
}

.floating-box {
  position: absolute;
  background: white;
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  font-size: 14px;
  font-weight: 500;
}

.float-1 {
  top: 20px;
  right: 10px;
  animation: float 4s ease-in-out infinite;
}

.float-2 {
  bottom: 40px;
  left: 0;
  animation: float2 5s ease-in-out infinite;
}

.cs-image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
}


/* ============================= */
/* FORM STYLES - MODERN UI */
/* ============================= */

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
   body {
  font-family: "Poppins", sans-serif;
  background: var(--bg-light);
  color: var(--text-main);
  
}

.main-wrapper {
  padding: 40px 20px;
  max-width: 1400px;
  margin: auto;
}

/* CONTAINER */
.container{
  max-width: 900px;
  margin: 40px auto;
  background: var(--bg-white);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.form-section {
  margin-bottom: 40px;
}

.section-heading {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}

/* HEADER */
.header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 40px 25px;
  text-align: center;
}

.header h1 {
  font-size: 28px;
  font-weight: 700;
}

.header p {
  opacity: 0.8;
  margin-top: 8px;
}

/* FORM */
.form-content {
  padding: 30px;
}

.section-title {
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--primary);
}

/* JENIS BUTTON (GANTI RADIO) */
.radio-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 25px;
}

.jenis-btn {
  padding: 14px;
  border-radius: 12px;
  border: 2px solid #eee;
  background: #f5f5f5;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

.jenis-btn:hover {
  border-color: var(--accent);
}

/* ACTIVE (KETIKA DIPILIH) */
.jenis-btn.active {
  background: var(--accent);
  color: black;
  border-color: var(--accent-dark);
  font-weight: 600;
}

/* TEXTAREA & INPUT */
textarea,
input,
select {
  width: 100%;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1.5px solid #e5e7eb;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
  transition: all 0.25s ease;
  background: #fff;
}

textarea:focus,
input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.15);
  transform: translateY(-1px);
}

textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

input[type="date"],
input[type="time"],
input[type="text"] {
  height: 52px;
}

.upload-box {
  border: 2px dashed #e5e7eb;
  padding: 40px 20px;
  border-radius: 16px;
  text-align: center;
  cursor: pointer;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  background: linear-gradient(145deg, #fafafa, #ffffff);
}

/* HOVER */
.upload-box:hover {
  border-color: var(--accent);
  background: #f9fafb;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* ICON */
.upload-icon {
  font-size: 42px;
  color: #9ca3af;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

/* TITLE */
.upload-title {
  font-weight: 600;
  color: #374151;
}

/* SUBTITLE */
.upload-subtitle {
  font-size: 13px;
  color: #9ca3af;
}

/* HOVER EFFECT */
.upload-box:hover .upload-icon {
  color: var(--accent);
  transform: scale(1.15);
}

.upload-box:hover .upload-title {
  color: var(--primary);
}

/* BUDGET */
.budget-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.budget-btn {
  padding: 10px 18px;
  border-radius: 50px;
  border: 1px solid #ddd;
  cursor: pointer;
  background: white;
  transition: var(--transition);
}

.budget-btn.active {
  background: var(--accent);
  color: black;
  border-color: var(--accent-dark);
}

/* PROMO */
.promo {
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  margin: 25px 0;
}

.promo strong {
  color: var(--accent-dark);
}

/* BUTTON */
.btn-submit {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  background: var(--accent);
  color: black;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-submit:hover {
  background: var(--accent-dark);
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .radio-group {
    grid-template-columns: repeat(4, 1fr);
  }

  .form-content {
    padding: 40px;
  }
}

@media (max-width: 480px) {
  .header h1 {
    font-size: 22px;
  }

  .container {
    margin: 10px;
  }
}

/* FORM GROUP */
.form-group {
  margin-bottom: 26px;
  display: flex;
  flex-direction: column;
}

/* LABEL */
.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 8px;
}
/* INPUT & SELECT */
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1.5px solid #e5e7eb;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  transition: all 0.25s ease;
  background: #fff;
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
}

.form-group input {
  height: 52px;
}

/* FOCUS EFFECT */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.15);
  transform: translateY(-1px);
}

/* PLACEHOLDER */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}

/* SELECT STYLE */
.form-group select {
  cursor: pointer;
  background-color: #fff;
}

/* OPTIONAL: HOVER EFFECT */
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: #cbd5e1;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row .form-group {
  flex: 1;
  min-width: 250px;
}

.input-row {
  display: flex;
  gap: 12px;
}

.input-row input {
  flex: 1;
}

/* COUNTER */
.counter-box {
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: center;
  margin: 10px 0;
}

.counter-box button {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  cursor: pointer;
}

/* WORKER BOX */
.worker-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f9fafb;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

/* TEXT */
.worker-info {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}

/* COUNTER */
.counter-box span {
  width: 40px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
}

/* PRICE GRID */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.price-item {
  background: #f9fafb;
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  font-size: 13px;
}

.price-item strong {
  display: block;
  margin-top: 4px;
  color: var(--accent);
}

/* MODAL OVERLAY */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.65); /* navy gelap transparan */
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

/* BOX */
.modal-box {
  width: 90%;
  max-width: 720px;
  background: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: fadeIn 0.3s ease;
  border: 1px solid #e5e7eb;
}

/* HEADER */
.modal-box h2 {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 20px;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
}

/* CONTENT */
.modal-content {
  max-height: 420px;
  overflow-y: auto;
  padding: 24px;
  font-size: 13px;
  line-height: 1.7;
  color: #4b5563;
}

/* SCROLL biar aesthetic */
.modal-content::-webkit-scrollbar {
  width: 6px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}

/* BUTTON WRAPPER */
.modal-actions {
  display: flex;
  gap: 10px;
  padding: 16px;
  border-top: 1px solid #e5e7eb;
}

/* BUTTON BASE */
.btn-yes, .btn-no {
  flex: 1;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* SETUJU */
.btn-yes {
  background: var(--accent);
  color: black;
  border: none;
}

.btn-yes:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* TIDAK SETUJU */
.btn-no {
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  color: #374151;
}

.btn-no:hover {
  background: #e5e7eb;
}

/* ANIMATION */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(25px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* BOX KHUSUS DI DALAM MODAL */
.highlight-box {
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--accent);
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 20px;
}

.highlight-box strong {
  color: var(--primary);
}

/* QUESTION */
.question {
  font-weight: 600;
  margin-top: 10px;
  color: var(--primary);
}

/* LIST */
.modal-content ul {
  margin: 10px 0 15px 20px;
  font-size: 13px;
  color: #4b5563;
}

/* BUTTON PILIHAN */
/* WRAPPER */
.choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 15px;
}

/* BASE BUTTON */
.btn-choice {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;

  /* penting biar sama ukuran */
  display: flex;
  align-items: center;
  justify-content: center;

  border: 1.5px solid #e5e7eb;
  background: #f9fafb;
}

/* HOVER */
.btn-choice:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ACTIVE (dipilih) */
.btn-choice.active {
  background: var(--accent);
  color: black;
  border-color: var(--accent-dark);
  font-weight: 600;
}

/* OUTLINE FIX (BIAR GA ANEH) */
.btn-choice.outline {
  background: #f9fafb; /* samain dulu */
  border: 1.5px solid #e5e7eb;
}

/* OPTIONAL: beda warna pas aktif */
.btn-choice.outline.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary-dark);
}

/* NOTE */
.note {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 15px;
}