/* Body */
body {
  background-color: var(--bg-main);
  color: var(--text-dark);
}

/* Navbar (Elegant Glass) */
.header {
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.header .logo h1 {
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Menu */
.navmenu ul li a {
  color: var(--text-dark) !important;
}

.navmenu ul li a:hover,
.navmenu .active {
  color: var(--primary) !important;
}

/* Button */
.btn-getstarted,
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(20,184,166,0.3);
}

.btn-getstarted:hover,
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f0fdfa, #ffffff);
}

.hero h2 {
  color: var(--primary);
  font-weight: 700;
}

.hero p {
  color: var(--text-light);
}

/* Stats */
.stats-item span {
  color: var(--accent);
}

/* Card */
.card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #ecfdf5;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(20,184,166,0.08);
}

/* Icon */
.service-item .icon {
  color: var(--primary);
  background: #ecfdf5;
  border-radius: 12px;
  padding: 14px;
}

.btn-getstarted,
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: none;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(20,184,166,0.25);
}

/* Section Title */
.section-title h2 {
  color: var(--primary-dark);
  font-weight: 700;
}

/* CTA */
.call-to-action {
  background: linear-gradient(135deg, #115e59, #0f766e);
}

/* Pricing */
.pricing-item.featured {
  border-top: 4px solid var(--accent);
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: #022c2c;
}

.footer a {
  color: #99f6e4;
}

.footer a:hover {
  color: #ffffff;
}

/* Scroll Top */
.scroll-top {
  background: var(--accent);
}

section:nth-child(even) {
  background: var(--bg-soft);
}

.btn-playstore {
  background: linear-gradient(135deg, #0f766e, #14b8a6);
}

.btn-playstore {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-playstore i {
  font-size: 22px;
}

.btn-playstore .text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.btn-playstore small {
  font-size: 10px;
  opacity: 0.8;
}

.btn-playstore span {
  font-size: 14px;
  font-weight: 600;
}

.btn-playstore:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
}
.custom-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 12px 18px;
  min-width: 180px;

  border-radius: 14px;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  color: #fff;

  justify-content: center;

  margin-left: 10px; /* dorong ke kanan dikit */
}

.custom-btn .text {
  line-height: 1.2;
}

.custom-btn small {
  font-size: 11px;
}

.custom-btn span {
  font-size: 15px;
  font-weight: 600;
}

.hero-container {
  background: linear-gradient(
    135deg,
    #99f6e4 0%,
    #5eead4 40%,
    #2dd4bf 100%
  );

  border-radius: 20px;
  padding: 32px;

  box-shadow: 
    0 10px 30px rgba(15, 118, 110, 0.15),
    inset 0 1px 0 rgba(255,255,255,0.4);

  position: relative;
  overflow: hidden;
}

.hero-container::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.5), transparent);
  top: -100px;
  right: -100px;
}

.hero-container h2 {
  color: #064e3b;
  font-weight: 700;
}

.hero-container p {
  color: #065f46;
}

/* MOBILE MENU STYLE */
@media (max-width: 991px) {
  .navmenu ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 80px 25px;
    transition: 0.4s ease;
    z-index: 999;
  }

  .navmenu ul.active {
    right: 0;
  }

  .navmenu ul li {
    margin-bottom: 20px;
  }

  .navmenu ul li a {
    font-size: 16px;
    font-weight: 500;
    color: #333;
  }

  .mobile-nav-toggle {
    font-size: 26px;
    cursor: pointer;
    color: #0d6efd;
  }
}

.mobile-nav-toggle {
  color: #20c997; /* tosca */
}

.navmenu ul li a:hover {
  color: #20c997;
}

.header {
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}