@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #333333;
  overflow-x: hidden;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 100px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #ffffff;
  transition: all 0.5s ease;
}

@keyframes slideDownSichuan {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }

  50% {
    transform: translateY(10%);
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.navbar .nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(0);
}

.navbar .logo .logo-img {
  height: 40px;
}

.navbar .nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.navbar .nav-links a {
  text-decoration: none;
  color: #8a8a8a;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
  padding-bottom: 5px;
}

.navbar .nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  border-radius: 2px;
  bottom: 0;
  right: 25%;
  background-color: #FF4F9D;
  transition: width 0.3s ease-out;
}

.navbar .nav-links a:hover,
.navbar .nav-links a.active {
  color: #FF4F9D;
}

.navbar .nav-links a:hover::after,
.navbar .nav-links a.active::after {
  width: 50%;
  left: 25%;
}

.navbar .auth-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.navbar .auth-links a {
  text-decoration: none;
  font-size: 15px;
}

.navbar .auth-links .start-demo {
  border: solid 2px #FF4F9D;
  color: #FF4F9D;
  font-weight: 600;
  padding: 8px 30px;
  border-radius: 20px;
}

.navbar .theme-toggle {
  cursor: pointer;
  font-size: 24px;
}

.burger-menu {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

@keyframes fadeInSpicy {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}

.hero .text {
  flex: 1;
}

.hero h1 {
  color: #FF4F9D;
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  margin-bottom: 20px;
}

.hero h2 {
  max-width: 80%;
  font-size: 44px;
  margin: 10px 0;
  margin-bottom: 20px;
}

.hero p {
  font-size: 14px;
  max-width: 60%;
  color: #666;
  margin-bottom: 50px;
}

.hero .text .buttons {
  display: flex;
  gap: 15px;
}

.hero .text .buttons a {
  text-decoration: none;
  color: #ffffff;
  background-color: #FF4F9D;
  padding: 10px 25px;
  font-size: 14px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;

}

.hero .text .buttons a.secondary {
  border: 1px solid #FF4F9D;
  background-color: #ffffff;
  color: #FF4F9D;
}

.hero .image {
  flex: 1;
}

.hero .image img {
  max-width: 120%;
  height: auto;
}


@media (max-width: 1089px) {
  .navbar {
    padding: 20px;
  }

  @keyframes slideDown {
    0% {
      transform: translateY(-20px);
      opacity: 0;
    }

    50% {
      transform: translateY(10px);
    }

    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .navbar .nav-links {
    display: none;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s ease-in-out;
    transform-origin: top;
  }

  .navbar .logo img {
    height: 30px;
  }

  .navbar .nav-links.active {
    display: flex;
  }

  .burger-menu {
    display: block;
  }

  .hero {
    flex-direction: column;
    padding: 150px 20px;
  }

  .hero .text {
    max-width: 100%;
    text-align: center;
  }

  .hero h1,
  .hero h2,
  .hero p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero .text .buttons {
    justify-content: center;
  }

  .hero .image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .hero .image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
  }
}

/* Features Section */
.feature-in-container {
  text-align: center;
  padding: 70px 100px;
}

.feature-in-title {
  font-size: 18px;
  color: #FF4F9D;
  margin-bottom: 10px;
}

.feature-in-subtitle {
  font-size: 24px;
  font-weight: 700;
  color: #464646;
  margin-bottom: 20px;
}

.feature-in-description {
  font-size: 14px;
  color: #8f8f8f;
  margin-bottom: 40px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.feature-card {
  background-color: #ffffff;
  border: 2px solid #ffe0f2;
  border-radius: 20px;
  width: 210px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(255, 103, 192, 0.342);
  transition: all 0.3s ease;
  transform: translateY(-10px);
  text-align: left;
}

.feature-card:hover {
  border: 2px solid #FF4F9D;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 20px;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  padding: 15px;
}

.feature-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 107, 181, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.feature-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #464646;
}

.feature-description {
  font-size: 12px;
  color: #929292;
  margin-bottom: 20px;
}

.feature-link {
  font-size: 13px;
  font-weight: 600;
  color: #FF4F9D;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feature-link i {
  font-size: 13px;
}

/* Testimonial Section */
.container-testimonial {
  text-align: center;
  padding: 50px 20px;
}

.header-testimonial {
  color: #ff4081;
  font-size: 18px;
  margin-bottom: 10px;
  margin-top: 30px;
}

.title-testimonial {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.subtitle-testimonial {
  font-size: 13px;
  width: 40%;
  margin: 0 auto;
  color: #929292;
  margin-bottom: 40px;
}

.testimonials {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.testimonial {
  background: #fff;
  border: 1px solid #ffa6cd83;
  border-radius: 8px;
  padding: 25px;
  width: 250px;
  box-shadow: 0 40px 100px rgba(255, 86, 179, 0.274);
  position: relative;
}

.testimonial p {
  font-size: 12px;
  color: #777;
  margin-bottom: 20px;
}

.testimonial .icon img {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.11);
  border-radius: 80%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.name {
  font-weight: 700;
  margin-top: 40px;
}

.position {
  font-size: 14px;
  color: #777;
}

.stats {
  background-color: #DB5892;
  padding: 30px 80px;
  color: #fff;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 100px;
  margin-bottom: 50px;
}

.stat {
  text-align: left;
  margin: 30px;
  flex: 1;
}

.stat .number {
  font-size: 26px;
  margin: 10px 0;
  position: relative;
  display: inline-block;
}

.stat .number {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.stat .number::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 24%;
  width: 4px;
  height: 50%;
  background: #fff;
}


.stat .description {
  font-size: 12px;
}


@media (max-width: 768px) {
  .title-testimonial {
    font-size: 28px;
  }

  .subtitle-testimonial {
    font-size: 14px;
  }

  .testimonials {
    flex-direction: column;
    align-items: center;
  }

  .testimonial {
    width: 100%;
    max-width: 300px;
  }

  .stats {
    flex-direction: column;
    align-items: center;
  }

}

@media (max-width: 480px) {
  .header-testimonial {
    font-size: 16px;
  }

  .title-testimonial {
    font-size: 24px;
  }

  .subtitle-testimonial {
    font-size: 12px;
  }

  .testimonial p {
    font-size: 12px;
  }

  .stat .number {
    font-size: 20px;
  }

  .stat .description {
    font-size: 12px;
  }
}

/* Pricing Section */
.container-pricing {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 50px;
  text-align: center;
}

.header-pricing {
  margin-bottom: 20px;
}

.header-pricing h1 {
  font-size: 18px;
  color: #FF4F9D;
  font-weight: 400;
  margin-top: 20px;
}

.header-pricing h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.header-pricing p {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 80px;
}

.pricing-table {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.pricing-card {
  background: linear-gradient(to bottom, #ffedf5, #ffffff);
  border: 1px solid #ff4f9e38;
  border-radius: 30px;
  padding: 20px;
  width: 270px;
  box-shadow: 0 15px 40px rgba(255, 94, 183, 0.274);
  position: relative;
  text-align: left;
  animation: scaleUp 0.5s ease-in-out;
  margin-bottom: 100px;
}

.pricing-card.recommended {
  border: 2px solid #ff4f9e71;
  background: linear-gradient(to bottom, #ffffff, #ffffff);
  transform: scale(1.05);
  transition: transform 0.5s ease-in-out;
}

.pricing-card.recommended:hover {
  transform: scale(1.1);
}

.pricing-card.recommended::before {
  content: "Recommended";
  position: absolute;
  top: -8px;
  right: -10px;
  background: #FF4F9D;
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 12px;
}

.pricing-card h2 {
  font-size: 20px;
  color: #1a1a1a;
  margin-bottom: 10px 0;
}

.pricing-card p {
  font-size: 13px;
  color: #adadad;
  margin-bottom: 10px;
}

.pricing-card .price {
  font-size: 42px;
  color: #FF4F9D;
  font-weight: 650;
}

.pricing-card .price span.rp {
  font-size: 16px;
  color: #FF4F9D;
  margin-left: 5px;
  font-weight: 400;
}

.pricing-card .price span.bln {
  font-size: 16px;
  color: #FF4F9D;
  font-weight: 400;
}

.pricing-card .discount {
  font-size: 14px;
  color: #a5a5a5;
  text-decoration: line-through;
  display: inline-block;
  margin-right: 3px;
}

.pricing-card .discount-badge {
  background: #ffe8f2;
  color: #FF4F9D;
  padding: 5px 10px;
  border: none;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 600;
  margin-top: 5px;
  margin-bottom: 10px;
  display: inline-block;
}

.pricing-card .btn {
  background: linear-gradient(to bottom, #ff4f9ee8, #FFDDEC);
  color: #fff;
  padding: 10px 20px;
  border: 1px solid #FFA6CD;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
  text-align: center;
  display: block;
  width: 100%;
  transition: background 0.3s ease;
}

.pricing-card .btn:hover {
  background: linear-gradient(to bottom, #ff4f9ec4, #FFDDEC);
}

.pricing-card .footer-card {
  font-size: 12px;
  color: #6c757d;
  margin-top: 20px;
  text-align: center;
  display: block;
}

.pricing-card .footer-card hr {
  border: 0;
  border-top: 1px solid #e0e0e0;
  margin: 20px 0;
}

.pricing-card .footer-card a {
  color: #FF4F9D;
  text-decoration: none;
  font-weight: 600;
}

.pricing-card .footer-card a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .pricing-table {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    width: 85%;
    max-width: 300px;
  }

  .pricing-card.recommended {
    order: -1;
  }
}

/* FAQ Section */
.faq-container {
  display: flex;
  flex-direction: row;
  max-width: 1100px;
  width: 90%;
  padding: 20px;
  margin: 0 auto;
  padding-left: 3%;
  margin-bottom: 100px;
}


.left-section {
  flex: 1;
  padding-right: 20px;
}

.left-section h1 {
  font-size: 40px;
  color: #333;
  margin: 0;
  margin-top: 50px;
}

.left-section h1 span {
  color: #ff007a;
  font-size: 18px;
  font-weight: 400;
}

.left-section p {
  color: #8f8f8f;
  font-size: 14px;
  max-width: 400px;
}

.right-section {
  flex: 1;
  margin-top: 80px;
}

.faq-item {
  border: 1px solid #eee;
  border-radius: 5px;
  margin-bottom: 10px;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  cursor: pointer; 
}

.faq-item h3 {
  font-size: 16px;
  color: #333;
  margin: 0;
}

.faq-item p {
  font-size: 12px;
  color: #9e9e9e;
  margin-top: 10px;
}

.faq-item i {
  color: #ffffff;
  margin-left: 10px;
  background-color: #FFA6CD;
  border-radius: 50%;
  padding: 5px;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.faq-item.active p {
  display: block;
}

.faq-item p {
  display: none;
}

@media (max-width: 768px) {
  .faq-container {
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 100px;
  }

  .left-section {
    margin-bottom: 20px;
    text-align: center;
    padding: 0 20px;
  }

  .left-section h1 {
    font-size: 26px;
  }

  .left-section p {
    font-size: 12px;
    max-width: 100%;
  }

  .faq-item {
    width: 94%;
    max-width: 500px;
  }

  .faq-item h3 {
    font-size: 14px;
  }

  .faq-item p {
    font-size: 12px;
  }

  .faq-item i {
    width: 20px;
    height: 20px;
    padding: 4px;
  }
}

/* Contact Section */
.container-task {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  background: linear-gradient(to bottom, #ffcae1a1, #ffffff);
  padding: 50px 20px;
  margin-bottom: 30px;
}

.contact-info {
  padding: 30px;
  margin: 20px;
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  margin-left: 100px;
}

.contact-form {
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 8px 50px rgba(255, 100, 203, 0.342);
  padding: 0 30px 0 30px;
  margin: 20px;
  flex: 1;
  min-width: 300px;
  max-width: 320px;
  margin-top: 80px;
  margin-right: 130px;
  margin-bottom: 60px;
}

.contact-info .title-get-in-touch {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-form .title-send-message {
  font-size: 32px;
  text-align: center;
}

.contact-info p,
.contact-form p {
  font-size: 12px;
  line-height: 1.9;
  color: #919191;
  max-width: 100%;
  margin-bottom: 30px;
}

.contact-info .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-info .info-item i {
  font-size: 20px;
  color: #ffffff;
  margin-right: 15px;
  background: #FF4F9D;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info .info-item span {
  font-size: 13px;
  color: #868686;
}

.contact-info .social-icons {
  display: flex;
  margin-top: 15px;
}

.contact-info .social-icons a {
  color: #ffffff;
  font-size: 20px;
  margin-right: 15px;
  text-decoration: none;
  background: #FF4F9D;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.199);
  padding: 10px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info .follow-us {
  margin-top: 30px;
}

.contact-info .follow-us hr {
  border: 0;
  border-top: 2px solid #ccc;
  margin-bottom: 10px;
  width: 80%;
  margin-left: 0;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form form input,
.contact-form form textarea {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
  font-size: 14px;
}

.contact-form form button {
  background-color: #FF4F9D;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 13px 40px;
  font-size: 14px;
  cursor: pointer;
  align-self: flex-end;
}

@media (max-width: 768px) {
  .container-task {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {

  .contact-info,
  .contact-form {
    padding: 20px;
    margin: 10px;
  }

  .contact-info .title-get-in-touch {
    font-size: 24px;
  }

  .contact-form .title-send-message {
    font-size: 20px;
  }

  .contact-info p,
  .contact-form p {
    font-size: 12px;
  }

  .contact-info .info-item i,
  .contact-info .social-icons a {
    width: 30px;
    height: 30px;
    font-size: 16px;
    padding: 5px;
  }

  .contact-form form input,
  .contact-form form textarea {
    font-size: 12px;
    padding: 8px;
  }

  .contact-form form button {
    font-size: 12px;
    padding: 6px 12px;
  }

  .contact-form {
    margin: 0 auto;
    max-width: 90%;
  }
}

/* Footer */
.footer {
  display: flex;
  justify-content: space-around;
  background: linear-gradient(to bottom, #e71c74a1, #fdbde3);
  padding: 50px 120px;
  text-align: left;
}

.footer div {
  max-width: 300px;
  color: #fff;
}

.footer h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.footer p {
  font-size: 12px;
  line-height: 1.6;
}

.footer hr {
  border: 0;
  border-top: 2px solid white;
  margin: 10px 0;
  width: 50px;
}

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

.footer ul li {
  margin: 10px 0;
}

.footer ul li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.footer .logo img {
  margin-top: 20px;
  width: 170px;
  height: auto;
}

.footer-bottom {
  color: #969696;
  text-align: center;
  margin: 0 150px;
  padding: 20px 0;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 5px 0;
}

.footer-bottom span {
  color: #FF4F9D;
  font-weight: bold;
  font-size: 14px;
}

.footer-bottom a {
  color: #FF4F9D;
  text-decoration: none;
}

@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .footer div {
    margin-bottom: 30px;
    text-align: center;
  }

  .footer hr {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 20px 10px;
  }

  .footer h3 {
    font-size: 20px;
  }

  .footer p,
  .footer ul li a {
    font-size: 12px;
  }
}

/* Loading Overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.966);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

.loading-overlay.hide {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #e6e6e6;
  border-top: 5px solid #FF4F9D;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}