/* General Styles */
:root {
  --primary-color: #4361ee;
  --secondary-color: #3f37c9;
  --accent-color: #4cc9f0;
  --text-color: #212529;
  --light-bg: #f8f9fa;
  --dark-bg: #0f1624;
  --success: #4caf50;
  --white: #ffffff;
  --gray: #6c757d;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  overflow-x: hidden;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
}
.img-fluid {
    max-width: 100%;
    max-height: 400px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.btn {
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border: none;
}

.btn-outline-light {
  border: 2px solid var(--white);
}

.btn-outline-light:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

/* Header and Navigation */
header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.5s ease;
}

header.scrolled {
  background-color: var(--dark-bg);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 15px 0;
  background-color: transparent;
  transition: all 0.5s ease;
}

.navbar-brand {
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 700;
}

.navbar-brand i {
  color: var(--accent-color);
  animation: pulse 2s infinite;
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: 500;
  margin: 0 10px;
  position: relative;
  padding: 5px 0;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}
/*Sidebar*/
/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #2a3f7e 100%);
  color: var(--white);
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI3MjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBmaWxsPSJub25lIiBkPSJNMCAwaDEwMjR2NzIwSDB6Ii8+PGNpcmNsZSBzdHJva2Utb3BhY2l0eT0iLjA1IiBzdHJva2U9IiNGRkYiIGZpbGwtb3BhY2l0eT0iLjAyIiBmaWxsPSIjRkZGIiBjeD0iNTEyIiBjeT0iMzYwIiByPSIzNTkuNSIvPjxjaXJjbGUgc3Ryb2tlLW9wYWNpdHk9Ii4xIiBzdHJva2U9IiNGRkYiIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjRkZGIiBjeD0iNTEyIiBjeT0iMzYwIiByPSIyNzIuNSIvPjxjaXJjbGUgc3Ryb2tlLW9wYWNpdHk9Ii4xIiBzdHJva2U9IiNGRkYiIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjRkZGIiBjeD0iNTEyIiBjeT0iMzYwIiByPSIxODUuNSIvPjwvZz48L3N2Zz4=');
  background-size: cover;
  opacity: 0.2;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-image {
  position: relative;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 10%;
  animation: float 5s ease-in-out infinite reverse;
}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(15px, -15px);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background-color: var(--white);
}

.feature-box {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
}

.feature-icon i {
  font-size: 2rem;
  color: var(--white);
}

.feature-box h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

  /* Styling untuk  Tentang Kami */
  .company-history-item {
    padding: 20px;
    border-left: 4px solid var(--primary);
    background-color: #ffffff;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  }
  
  .vision-mission-box {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  }
  
  .mission-list {
    list-style: none;
    padding-left: 0;
  }
  
  .mission-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
  }
  
  .mission-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
  }
  
  .gallery-item {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
  }
  
  .gallery-item:hover {
    transform: translateY(-5px);
  }
  
  .gallery-item img {
    height: 200px;
    object-fit: cover;
    width: 100%;
  }
  
  .section-subtitle {
    color: var(--primary);
    position: relative;
    padding-bottom: 10px;
  }
  
  .section-subtitle:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary);
  }
  
  .additional-info-item {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  }

/* Paket Section */
.paket-section {
  padding: 80px 0;
  background-color: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.paket-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI2MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTAgNDUuODQ2YzE5LjM0MiA1LjE4MyAzOC42ODQgMTAuMzY3IDU2LjE0NCAxMC4zNjcgMTcuNDYgMCAzMy4wMzgtNS4xODQgNTAuNDk4LTEwLjM2NyAxNy40Ni01LjE4NCAzNi44MDEtMTAuMzY4IDU2LjE0Mi0xMC4zNjggMTkuMzQxIDAgMzguNjgzIDUuMTg0IDU2LjE0MiAxMC4zNjggMTcuNDYgNS4xODMgMzMuMDM5IDEwLjM2NyA1MC40OTggMTAuMzY3IDE3LjQ2IDAgMzMuMDM5LTUuMTg0IDUwLjQ5OS0xMC4zNjcgMTcuNDYtNS4xODQgMzYuODAxLTEwLjM2OCA1Ni4xNDItMTAuMzY4IDE5LjM0MSAwIDM4LjY4MyA1LjE4NCA1Ni4xNDMgMTAuMzY4IDE3LjQ1OSA1LjE4MyAzMy4wMzggMTAuMzY3IDUwLjQ5NyAxMC4zNjcgMTcuNDYgMCAzMy4wMzktNS4xODQgNTAuNDk5LTEwLjM2NyAxNy40Ni01LjE4NCAzNi44MDEtMTAuMzY4IDU2LjE0Mi0xMC4zNjggMTkuMzQxIDAgMzguNjgzIDUuMTg0IDU2LjE0MyAxMC4zNjggMTcuNDU5IDUuMTgzIDMzLjAzOCAxMC4zNjcgNTAuNDk3IDEwLjM2NyAxNy40NiAwIDMzLjAzOS01LjE4NCA1MC40OTktMTAuMzY3IDE3LjQ2LTUuMTg0IDM2LjgwMS0xMC4zNjggNTYuMTQyLTEwLjM2OHMzOC42ODMgNS4xODQgNTYuMTQzIDEwLjM2OGMxNy40NTkgNS4xODMgMzMuMDM4IDEwLjM2NyA1MC40OTcgMTAuMzY3IDE3LjQ2IDAgMzMuMDM4LTUuMTg0IDUwLjQ5OC0xMC4zNjcgMTcuNDYtNS4xODQgMzYuODAxLTEwLjM2OCA1Ni4xNDMtMTAuMzY4IDE5LjM0MSAwIDM4LjY4MyA1LjE4NCA1Ni4xNDIgMTAuMzY4IDE3LjQ2IDUuMTgzIDMzLjAzOSAxMC4zNjcgNTAuNDk4IDEwLjM2NyAxNy40NiAwIDMzLjAzOS01LjE4NCA1MC40OTktMTAuMzY3IDE3LjQ2LTUuMTg0IDM2LjgwMS0xMC4zNjggNTYuMTQyLTEwLjM2OHYxMDguODI4aC0xNDQwVjQ1Ljg0NnoiIGZpbGwtb3BhY2l0eT0iLjAzIiBmaWxsPSIjMEYxNjI0IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4=');
  background-size: cover;
  background-position: center bottom;
  opacity: 1;
}

.paket-section h2 {
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.price-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  z-index: 1;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
}

.price-card.featured::before {
  content: 'TERPOPULER';
  position: absolute;
  top: 16px;
  right: -35px;
  transform: rotate(45deg);
  background: var(--primary-color);
  color: var(--white);
  padding: 5px 40px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.price-header {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: var(--white);
  padding: 25px 20px;
  text-align: center;
}

.price-header h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.price span {
  font-size: 1rem;
  font-weight: normal;
}

.speed {
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 5px 15px;
  display: inline-block;
}

.price-body {
  padding: 25px;
}

.price-body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.price-body ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.price-body ul li i {
  color: var(--success);
  margin-right: 10px;
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  text-align: center;
}

.stat-item {
  margin-bottom: 20px;
}

.stat-value {
  font-size: 3rem;
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Testimonial Section */
.testimonial-section {
  padding: 80px 0;
  background-color: var(--white);
}

.testimonial-section h2 {
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
}

.testimonial-card {
  background: var(--white);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  position: absolute;
  top: 10px;
  left: 25px;
  font-size: 5rem;
  color: rgba(0, 0, 0, 0.05);
  line-height: 1;
}

.testimonial-text {
  margin-bottom: 20px;
  font-style: italic;
  color: #555;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.testimonial-author .name {
  font-weight: 600;
  margin-bottom: 0;
}

.testimonial-author .position {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 0;
}

/* Footer */
.footer {
  background-color: var(--dark-bg);
  color: var(--white);
}

.footer h5 {
  font-weight: 700;
  color: var(--white);
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
}

.footer a:hover {
  color: var(--accent-color);
}

.contact-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.contact-list li i {
  margin-right: 10px;
  color: var(--accent-color);
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-5px);
}

.newsletter-form .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  border-radius: 30px 0 0 30px;
  padding: 12px 20px;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .btn {
  border-radius: 0 30px 30px 0;
  padding: 12px 25px;
}

/* Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .navbar-nav {
    background-color: var(--dark-bg);
    padding: 20px;
    border-radius: 5px;
    margin-top: 15px;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 120px 0 80px;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .stat-value {
    font-size: 2.5rem;
  }
  
  .feature-box,
  .price-card,
  .testimonial-card {
    margin-bottom: 30px;
  }
}

/* Loading Animation */
.loading-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: all 0.5s ease;
}

.loading-animation.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader {
  width: 80px;
  height: 80px;
  border: 5px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border-top-color: var(--accent-color);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
