/* 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 - Icommits) */
  --primary:      #1e3a8a;      /* Biru utama (deep blue) */
  --primary-dark: #172554; /* versi lebih gelap dari primary */    
  --accent:       #14b8a6;      /* Tosca */
  --accent-dark:  #0f766e;      /* Tosca gelap */
  --secondary:    #3b82f6;      /* Biru terang */
  --secondary-dark:#2563eb;     /* Biru hover */

  /* Warna Tambahan */
  --success:      #22c55e;      /* Hijau */
  --info:         #0ea5e9;      /* Biru cyan */
  --warning:      #facc15;      /* Sedikit kuning soft (opsional) */

  /* Warna Netral & Text */
  --text-dark:    #0f172a;
  --text-main:    #1e293b;
  --text-light:   #475569;
  --text-muted:   #64748b;
  --text-label:   #94a3b8;
  --bg-white:     #ffffff;
  --bg-light:     #f8fafc;
  --border-light: #e2e8f0;

  /* Warna Ikon & Background */
  --icon-phone-bg:    #e0f2fe;  /* biru muda */
  --icon-whatsapp-bg: #dcfce7;  /* hijau muda */
  --icon-email-bg:    #e0f7fa;  /* cyan soft */

  /* Gradient */
  --gradient-hero:    
    linear-gradient(135deg, #e0f2fe 0%, #ffffff 50%, #dcfce7 100%);
  --gradient-primary: 
    linear-gradient(135deg, #3b82f6, #1e3a8a);
  --gradient-accent:  
    linear-gradient(135deg, #22c55e, #16a34a);

  /* Shadow */
  --shadow-sm:        0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:        0 8px 25px rgba(0,0,0,0.12);
  --shadow-lg:        0 10px 30px rgba(0,0,0,0.2);
  --shadow-hero:      0 20px 40px rgba(30,58,138,0.15);
  --shadow-float:     0 15px 30px rgba(34,197,94,0.3);
  --shadow-bubble:    0 20px 60px rgba(59,130,246,0.25);
  --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(34, 197, 94, 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;
  }
}

/* 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: var(--accent); /* 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));
}

/* ======================== */
/*  Visi Misi Custom Section*/
/* ======================== */
.bg-gradient-blue {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 5rem 1rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.visi-misi-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.visi-misi-header {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.visi-misi-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}
@media(min-width: 992px) {
    .visi-misi-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.visi-card, .misi-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visi-card:hover, .misi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.visi-card h2, .misi-card h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
}

.misi-card ol {
    padding-left: 1.2rem;
    list-style-type: decimal;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}
.misi-card ol li {
    margin-bottom: 0.8rem;
}
.visi-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.1rem;
}

.nilai-header {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.nilai-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.nilai-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    width: 100%;
    max-width: 300px;
    transition: background 0.3s ease;
}
@media(min-width: 576px) {
    .nilai-card {
        width: calc(50% - 1.5rem);
    }
}
@media(min-width: 992px) {
    .nilai-card {
        width: calc(33.333% - 1.5rem);
    }
}

.nilai-card:hover {
    background: rgba(255, 255, 255, 0.15);
}

.nilai-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nilai-card h4 {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: white;
}
.nilai-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}