* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0a0a0a;
  font-family: 'Segoe UI', Arial, sans-serif;
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #1a1a1a;
}
::-webkit-scrollbar-thumb {
  background: cyan;
  border-radius: 5px;
}

/* Navbar */
.navbar {
  background: rgba(10, 15, 30, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid cyan;
  padding: 15px 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.navbar-brand i {
  color: cyan;
  margin-right: 8px;
}

.navbar-brand span {
  color: cyan;
}

.menu-toggle {
  background: rgba(0, 255, 255, 0.2);
  border: none;
  color: white;
  padding: 10px 15px;
  border-radius: 10px;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  z-index: 3000;
}

.menu-toggle:active {
  transform: scale(0.95);
}

.menu-toggle:hover {
  background: rgba(0, 255, 255, 0.4);
  transform: scale(1.05);
}

/* Desktop Menu */
.desktop-menu {
  background: rgba(10, 15, 30, 0.95);
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 255, 255, 0.3);
  position: sticky;
  top: 70px;
  z-index: 999;
}

.desktop-menu a {
  color: #a0b3d9;
  text-decoration: none;
  padding: 8px 20px;
  margin: 0 5px;
  border-radius: 8px;
  transition: all 0.3s;
  font-weight: 500;
}

.desktop-menu a:hover,
.desktop-menu a.active {
  color: cyan;
  background: rgba(0, 255, 255, 0.1);
}

/* Mobile Menu - Slide dari KIRI */

.mobile-menu .menu-item {
    pointer-events: auto !important;
}

.mobile-menu .menu-item * {
    pointer-events: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100%;
  background: #0a0f1a;
  z-index: 2000;
  transition: left 0.3s ease;
  border-right: 2px solid cyan;
  box-shadow: 5px 0 20px rgba(0, 255, 255, 0.2);
}

.mobile-menu.active {
  left: 0;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1999;
  display: none;
}

.overlay.active {
  display: block;
}

.mobile-menu .menu-header {
  padding: 20px;
  border-bottom: 2px solid cyan;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu .menu-header .logo {
  font-size: 1.3rem;
  font-weight: bold;
  color: white;
}

.mobile-menu .menu-header .logo i {
  color: cyan;
}

.mobile-menu .menu-header .logo span {
  color: cyan;
}

.mobile-menu .close-btn {
  background: none;
  border: none;
  color: cyan;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.3s;
}

.mobile-menu .close-btn:hover {
  transform: rotate(90deg);
}

.mobile-menu .menu-item {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  color: white;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
  position: relative;
  z-index: 2001;
}

.mobile-menu .menu-item i {
  width: 30px;
  color: cyan;
  font-size: 1.2rem;
}

.mobile-menu .menu-item:hover {
  background: rgba(0, 255, 255, 0.1);
  padding-left: 25px;
  color: cyan;
}

.mobile-menu .menu-item .badge {
  margin-left: auto;
  background: cyan;
  color: black;
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 20px;
  pointer-events: none;
}

/* Hero Section */
.hero {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #0a0a0a 0%, #0f0f1a 100%);
  position: relative;
}

.hero-badge {
  display: inline-block;
  background: rgba(0, 255, 255, 0.1);
  padding: 6px 16px;
  border-radius: 30px;
  color: cyan;
  font-size: 0.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 255, 255, 0.3);
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.text-gradient {
  background: linear-gradient(135deg, cyan, #0088ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  color: #aaa;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-primary, .btn-outline {
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, cyan, #00cccc);
  color: black;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
  color: black;
}

.btn-outline {
  border: 2px solid cyan;
  color: cyan;
  background: transparent;
}

.btn-outline:hover {
  background: cyan;
  color: black;
}

.hero-stats {
  display: flex;
  gap: 30px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: cyan;
}

.stat-label {
  color: #aaa;
  font-size: 0.8rem;
}

/* Carousel Custom */
.carousel-custom {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.carousel-custom .carousel-inner {
  border-radius: 20px;
}

.carousel-custom img {
  height: 450px;
  object-fit: cover;
}

.carousel-custom .carousel-caption {
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  border-radius: 0 0 20px 20px;
}

.carousel-custom .carousel-caption h5 {
  color: cyan;
  font-weight: bold;
}

.carousel-custom .carousel-control-prev,
.carousel-custom .carousel-control-next {
  display: none !important;
}

.carousel-custom .carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-custom .carousel-indicators button {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.5);
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-shrink: 0;
}

.carousel-custom .carousel-indicators button.active {
  background: cyan;
  width: 10px !important;
  height: 10px !important;
}

/* Packages Section */
.packages, .features, .contact {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-badge {
  display: inline-block;
  background: rgba(0, 255, 255, 0.1);
  padding: 5px 15px;
  border-radius: 20px;
  color: cyan;
  font-size: 0.8rem;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.section-header p {
  color: #aaa;
}

/* Package Cards */
.package-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 0;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.package-card:hover {
  transform: translateY(-5px);
  border-color: cyan;
  box-shadow: 0 5px 20px rgba(0, 255, 255, 0.2);
}

.package-card.popular {
  border-color: cyan;
  transform: translateY(-5px);
}

.popular-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, cyan, #0088ff);
  color: black;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: bold;
  z-index: 1;
}

.package-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.package-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.package-card:hover .package-img img {
  transform: scale(1.05);
}

.package-icon {
  font-size: 2rem;
  color: cyan;
  margin: 15px 0 0 20px;
  display: inline-block;
}

.package-card h3 {
  color: white;
  margin: 10px 0 5px 20px;
  font-size: 1.3rem;
}

.package-price {
  font-size: 1.8rem;
  font-weight: bold;
  color: cyan;
  margin: 10px 0 10px 20px;
}

.package-price span {
  font-size: 0.8rem;
  color: #aaa;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 20px;
}

.package-features li {
  color: #ccc;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.package-features li i {
  color: cyan;
  width: 20px;
  font-size: 0.9rem;
}

.btn-package {
  display: block;
  background: rgba(0, 255, 255, 0.1);
  color: cyan;
  text-align: center;
  padding: 12px;
  margin: 15px 20px 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: bold;
}

.btn-package:hover {
  background: cyan;
  color: black;
}

/* Feature Cards */
.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: cyan;
}

.feature-icon {
  font-size: 2rem;
  color: cyan;
  margin-bottom: 15px;
}

.feature-card h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: #aaa;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Contact Section */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  transition: all 0.3s;
}

.contact-item:hover {
  border-color: cyan;
  transform: translateX(5px);
}

.contact-icon {
  font-size: 2rem;
  color: cyan;
  margin-bottom: 10px;
}

.contact-item h4 {
  color: white;
  margin-bottom: 5px;
}

.contact-item p {
  color: #aaa;
  margin-bottom: 10px;
}

.contact-item a {
  color: cyan;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
}

.contact-item a:hover {
  letter-spacing: 1px;
}

.contact-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
}

.contact-form .form-control {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 12px;
}

.contact-form .form-control:focus {
  border-color: cyan;
  box-shadow: none;
  background: rgba(0, 0, 0, 0.7);
}

.contact-form .form-control::placeholder {
  color: #666;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, cyan, #00cccc);
  color: black;
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  transition: all 0.3s;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, #0f0f1a, #0a0a0a);
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid rgba(0, 255, 255, 0.1);
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.cta-content h2 {
  font-size: 2rem;
  color: white;
  margin-bottom: 15px;
}

.cta-content p {
  color: #aaa;
  margin-bottom: 25px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, cyan, #00cccc);
  color: black;
  padding: 12px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
  color: black;
}

/* Footer */
.footer {
  background: #050505;
  padding: 50px 0 20px;
  border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.footer-brand i {
  color: cyan;
}

.footer-brand span {
  color: cyan;
}

.footer p {
  color: #888;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: cyan;
  transition: all 0.3s;
  text-decoration: none;
}

.footer-social a:hover {
  background: cyan;
  color: black;
  transform: translateY(-3px);
}

.footer h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #888;
  text-decoration: none;
  transition: all 0.3s;
}

.footer ul li a:hover {
  color: cyan;
  padding-left: 5px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 8px;
  color: white;
}

.newsletter-form input:focus {
  outline: none;
  border-color: cyan;
}

.newsletter-form button {
  background: cyan;
  border: none;
  width: 40px;
  border-radius: 8px;
  color: black;
  transition: all 0.3s;
}

.newsletter-form button:hover {
  transform: scale(1.05);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  color: #666;
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
    text-align: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .section-header h2 {
    font-size: 1.8rem;
  }
  .hero-text {
    text-align: center;
  }
  .hero-badge {
    display: table;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .carousel-custom img {
    height: 280px;
  }
  .carousel-custom .carousel-indicators button {
    width: 6px !important;
    height: 6px !important;
  }
  .desktop-menu {
    display: none;
  }
}

@media (max-width: 991px) {
  .desktop-menu {
    display: none;
  }
}

/* Animations */
.btn-primary, .btn-outline, .btn-package, .btn-cta, .btn-submit {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}