/* Base styles */
* {
  font-family: "Inter", sans-serif;
  font-size: 16px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .display-4 {
    font-size: 1.75rem !important;
  }
  h2 {
    font-size: 1.5rem !important;
  }
  .hero-section .row {
    flex-direction: column-reverse;
  }
  .hero-image {
    margin-top: 2rem;
    display: none;
  }
  .container-hero {
    padding-top: 8% !important;
  }
  .navbar-collapse {
    background: white;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 0.5rem;
  }
  .feature-card {
    margin-bottom: 1.5rem;
  }
}
/* Floating animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.discount-banner {
  background-color: #f4b600 !important;
  animation: float 3s ease-in-out infinite, animate__pulse 2s infinite;
}

/* CTA Section */
.section-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3rem 25%;
}
.section-cta .container {
  max-width: 800px;
}

@media (max-width: 768px) {
  .section-cta {
    padding: 2rem 1rem;
  }
}
/* Typography */
.display-4 {
  font-size: 2.25rem !important;
  line-height: 1.2;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  /* color: transparent; */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
  font-size: 2rem !important;
}

h5.card-title {
  font-size: 1.25rem;
}

.card-text {
  font-size: 1rem;
}

/* Navigation */
.navbar {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.9) !important;
  transition: all 0.3s ease;
}

.navbar-brand img {
  transition: transform 0.3s ease;
}
.navbar-brand:hover img {
  transform: scale(1.05);
}

.nav-link {
  position: relative;
  font-size: 1rem;
  color: #2d3748;
  padding: 0.75rem 1.5rem;
  margin: 0 0.25rem;
  transition: color 0.3s ease;
}

.nav-contact {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.nav-contact i {
  margin-right: 0.5rem;
}

.nav-link:hover {
  color: #4f46e5;
}
.nav-link i {
  margin-right: 0.5rem;
  transition: transform 0.3s ease;
}
.nav-link:hover i {
  transform: translateY(-2px);
}
.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #4f46e5;
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}

/* About Us Section */
.bg-gradient-primary {
  background: linear-gradient(180deg, #4bbcf6 0%, #006ce1 100%);
}

#about, #testimoni {
  position: relative;
  overflow: hidden;
}

#about::before, #testimoni::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  top: -50px;
  right: -50px;
}

#about::after, #testimoni::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  bottom: -100px;
  left: -100px;
}

#about img, #testimoni .card {
  max-width: 80%;
  height: auto;
  margin: 0 auto;
  display: block;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

#about .card-title {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
#about .card-text {
  color: rgba(255, 255, 255, 0.8);
}
#about img:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.25);
}

#testimoni .card:hover, #about img:hover, #testimoni .card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.25);
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.85);
}

/* Testimoni Section */
#testimoni {
  background: linear-gradient(180deg, #4bbcf6 0%, #006ce1 100%);
  color: white;
}
#testimoni .card {
  background: rgba(255, 255, 255, 0.9) !important;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border: 1px solid rgba(79, 70, 229, 0.3) !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.1) !important;
  padding: 2rem;
}
#testimoni .card-text {
  color: #2d3748 !important;
}
#testimoni .text-muted {
  color: #6c757d !important;
}

/* Buttons */
.btn {
  font-size: 1rem;
}

.btn-lg {
  font-size: 1.1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #4F46E5 0%, #3730A3 100%);
  border: none;
  box-shadow: 0 4px 6px rgba(79, 70, 229, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(79, 70, 229, 0.3);
  background: linear-gradient(135deg, #3730A3 0%, #4F46E5 100%);
}

.btn-light {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  color: #2d3748;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #5ebdf7 0%, #015edb 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  padding: 2rem 0;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  top: -50px;
  right: -50px;
}
.hero-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  bottom: -100px;
  left: -100px;
}
.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.hero-section p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.hero-section li {
  font-size: 0.9rem;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media (max-width: 768px) {
  .hero-section {
    min-height: 50vh;
    flex-direction: column;
    text-align: center;
    margin-top: 1.5rem;
  }
  .hero-section img {
    max-width: 90%;
    margin-bottom: 2rem;
    animation: floatMobile 6s ease-in-out infinite;
  }
}
@keyframes floatMobile {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
/* Feature Cards */
.feature-card {
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(79, 70, 229, 0.2);
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-card i {
  font-size: 2.5rem;
  color: #4f46e5;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  margin-bottom: 1rem;
  display: inline-block;
}
.feature-card:hover i {
  transform: scale(1.2) rotate(5deg);
  color: #3730a3;
}
.feature-card .card-title {
  transition: color 0.3s ease;
}
.feature-card:hover .card-title {
  color: #4f46e5;
}

/* Navbar Responsive */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .navbar-nav {
    margin: 1rem 0;
  }
  .nav-link {
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
  }
  .nav-link:hover {
    background-color: rgba(79, 70, 229, 0.1);
  }
  .d-flex {
    flex-direction: row;
    gap: 0.5rem;
  }
}
/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-up {
  animation: fadeInUp 1s ease;
}

/* Utilities */
.text-success {
  color: #4f46e5 !important;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #4bbcf6 0%, #006ce1 100%);
  padding: 4rem 0 2rem;
  color: #fff;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.footer-brand img {
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}
.footer-brand:hover img {
  transform: scale(1.05);
}

.social-links a {
  color: #fff;
  font-size: 1rem;
  opacity: 0.7;
  transition: all 0.3s ease;
}
.social-links a:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.footer-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.footer-card:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

.footer-links li {
  margin-bottom: 0.75rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}
.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

.newsletter-form .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}
.newsletter-form .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter-form .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

.footer-bottom-links a {
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-bottom-links a:hover {
  color: #fff !important;
}

@media (max-width: 767.98px) {
  .footer-bottom-links {
    margin-top: 1rem;
  }
}
/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.whatsapp-float:hover {
  background-color: #20ba5a;
  color: #FFF;
  transform: scale(1.1);
}
.whatsapp-float i {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 25px;
  }
}
/* Solusi Section */
#masalah {
  padding: 3rem 0;
  background-color: #f8f9fa;
  padding: 4rem 0;
  background-color: #f8f9fa;
}
#masalah .card {
  border-radius: 1rem;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  border: none;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
#masalah .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}
#masalah .card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.3);
}
#masalah .card:hover::before {
  opacity: 1;
}
#masalah .card-title {
  font-size: 1.5rem;
  color: #343a40;
  transition: color 0.3s ease;
}
#masalah .card:hover .card-title {
  color: #4f46e5;
}
#masalah .card-text {
  color: #6c757d;
  transition: color 0.3s ease;
}
#masalah .card:hover .card-text {
  color: #4f46e5;
}

.card-title {
  font-size: 1.5rem;
  color: #343a40;
}

.card-text {
  color: #6c757d;
}

.text-primary {
  color: #007bff !important;
}

#testimoni {
  background-color: #f8f9fa;
  padding: 3rem 0;
}
#testimoni .card {
  border-radius: 1rem;
  animation: bounce 7s infinite;
}

@media (max-width: 768px) {
  #testimoni .card {
    margin-bottom: 2rem;
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-title {
  font-size: 1.5rem;
  color: #343a40;
}

.card-text {
  color: #6c757d;
}

.text-primary {
  color: #007bff !important;
}

/* Advertisement Banner Styles */
#advertisement {
  background-color: #4f46e5;
  color: #ffffff;
  padding: 3rem 0;
  text-align: center;
  transition: background-color 0.3s ease;
}
#advertisement h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
#advertisement p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #ffffff;
}
#advertisement button {
  font-size: 1.1rem;
  background-color: #ffffff;
  color: #4f46e5;
  border: none;
  padding: 0.75rem 1.5rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}
#advertisement button:hover {
  background-color: #4f46e5;
  color: #ffffff;
}
#advertisement img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}
#advertisement img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  #advertisement h2 {
    font-size: 2rem;
  }
  #advertisement p, #advertisement button {
    font-size: 1rem;
  }
}
.image-stack-container {
  padding-left: 20%;
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
}
.image-stack-container img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateX(100%);
  z-index: 0;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}
.image-stack-container img.stack {
  opacity: 0;
  transform: translateX(-100%);
}
.image-stack-container img.active {
  opacity: 1;
  transform: translateX(0) scale(1.02);
  z-index: 1;
  animation: fadeIn 0.6s ease-in-out;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.controls {
  position: absolute;
  bottom: -50px;
  display: flex;
  gap: 1rem;
}
.controls button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

#pricing .display-4 {
  margin-bottom: 120px !important;
}
#pricing .wrap-content .col-card {
  padding: 0;
  border-right: 3px solid #f8f9fa;
  position: relative;
}
#pricing .wrap-content .col-card:last-child {
  border: none;
}
#pricing .wrap-content .col-card .wrap-best {
  background: #007bff;
  padding: 10px;
  text-align: center;
  position: absolute;
  width: 100%;
  top: -42px;
  border-radius: 10px 10px 0px 0px;
  transition: top 0.3s ease;
}
#pricing .wrap-content .col-card .wrap-best h6 {
  color: white;
  font-size: 18px;
  margin: 0;
}
#pricing .wrap-content .col-card:hover {
  border: none;
}
#pricing .wrap-content .col-card:hover .card-pricing {
  box-shadow: 0px 0px 20px 1px #eaeaea;
  border-radius: 10px;
  transform: translateY(-30px);
  height: 107%;
  z-index: 9;
}
#pricing .wrap-content .col-card:hover .wrap-best {
  top: -70px;
}
#pricing .wrap-content .card-pricing {
  position: relative;
  background: white;
  text-align: center;
  padding: 40px 20px;
  transition: height 0.3s ease, box-shadow 0.3s ease, border-radius 0.3s ease, transform 0.3s ease;
  border-radius: 4px;
  transform: translateY(0);
  height: 100%;
}
#pricing .wrap-content .card-pricing .t-title {
  font-weight: 700;
  color: #007bff;
  margin-bottom: 20px;
  font-size: 22px;
}
#pricing .wrap-content .card-pricing .wrap-price {
  margin-bottom: 30px;
}
#pricing .wrap-content .card-pricing .wrap-price .price {
  height: 110px;
  align-content: center;
}
#pricing .wrap-content .card-pricing .wrap-price .t-corret {
  font-size: 27px;
  display: inline;
  position: relative;
  color: #858080;
  text-decoration: line-through;
  font-style: italic;
  font-weight: bold;
  opacity: 0.8;
}
#pricing .wrap-content .card-pricing .wrap-price .t-price {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 0px;
}
#pricing .wrap-content .card-pricing .wrap-price .t-price sup {
  font-size: 22px;
  top: -20px;
  right: 2px;
  font-weight: 600;
}
#pricing .wrap-content .card-pricing .wrap-price .desc {
  margin-top: 20px;
}
#pricing .wrap-content .card-pricing .wrap-price .desc .t-order {
  font-weight: 700;
  font-size: 20px;
}
#pricing .wrap-content .card-pricing .wrap-price .desc .t-order span {
  font-weight: 500;
}
#pricing .wrap-content .card-pricing .wrap-price .desc .t-sub {
  font-weight: 700;
  font-size: 18px;
  color: #3831a5;
}
#pricing .wrap-content .card-pricing .list {
  height: 225px;
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
}
#pricing .wrap-content .card-pricing .action {
  height: 80px;
}
#pricing .wrap-content .br-15-left {
  border-radius: 15px 0px 0px 15px;
}
#pricing .wrap-content .br-15-right {
  border-radius: 0px 15px 15px 0px;
}

@media (max-width: 768px) {
  #pricing .display-4 {
    margin-bottom: 60px !important;
  }
  #pricing .wrap-content .col-card {
    padding: 10px 20px;
  }
  #pricing .wrap-content .col-card .wrap-best {
    padding: 15px;
    position: relative;
    z-index: 1;
    top: 10px;
  }
  #pricing .wrap-content .col-card:last-child {
    margin-top: 50px;
  }
  #pricing .wrap-content .card-pricing {
    border-radius: 15px;
    padding: 20px;
  }
  #pricing .wrap-content .card-pricing .list {
    height: auto;
  }
}/*# sourceMappingURL=styles.css.map */