@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  background: #f8f8f8;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  box-sizing: border-box;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  margin-right: 10px;
}

.logo-text h1 {
  font-size: 20px;
  color: #3c7dc6;
  margin: 0;
}

.logo-text p {
  font-size: 12px;
  color: #3c7dc6;
  margin: 0;
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li {
  display: inline;
}

.nav-links a {
  text-decoration: none;
  font-size: 16px;
  color: black;
}

.nav-links a.active,
.nav-links a:hover {
  color: #3c7dc6;
  font-weight: bold;
}

.download-btn {
  background-color: #3c7dc6;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.download-btn:hover {
  background-color: #2a5a8f;
}

.hero {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 50px;
  background: url('../img/bg_hero.png');
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 80px;
}

.hero-text {
  max-width: 670px;
  flex: 1;
  min-width: 300px;
}

.hero-text h1 {
  font-size: 64px;
  color: #3c7dc6;
  margin: 0;
}

.hero-text p {
  font-size: 20px;
  color: #333;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 20px;
  color: white;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 200px;
  justify-content: flex-start;
}

.btn-teks p{
  color: white;
  font-size: 16px;
  padding: 0;
  margin: 0;
}

.playstore img,
.appstore img {
  width: 36px;
  height: 36px;
}

.btn strong {
  font-size: 20px;
}

.playstore {
  background: #3c7dc6;
}

.appstore {
  background: #000000;
}

.hero-images {
  position: relative;
  width: 100%;
  max-width: 500px;
  flex: 1;
}

.phone {
  width: 200px;
  position: relative;
}

.phone1 {
  width: 100%;
}

.label {
  position: absolute;
  background: #3c7dc6;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
}

.label1 {
  top: 30px;
  left: 150px;
}

.label2 {
  bottom: 50px;
  right: 150px;
  background: #2a5a8f;
}

/* RESPONSIVE DESIGN */

/* Tablet (768px ke bawah) */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .hero-text h1 {
    font-size: 40px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .hero-buttons {
    justify-content: center;
    margin-top: 30px;
  }

  .btn {
    width: 180px;
    font-size: 12px;
  }

  .btn strong {
    font-size: 16px;
  }

  .playstore img,
  .appstore img {
    width: 24px;
    height: 24px;
  }

  .hero-images {
    max-width: 300px;
    margin-top: 20px;
  }
}

/* Mobile (480px ke bawah) */
@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .btn {
    width: 100%;
    max-width: 180px;
    justify-content: center;
  }

  .hero-images {
    max-width: 250px;
  }

  .label {
    font-size: 12px;
    padding: 6px 12px;
  }
}

.features {
  background-color: #ffffff;
  padding: 10px 0 0 0;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.features-content{
  overflow: hidden;
  position: relative;
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  background-color: #3c7dc6;
}

.features-back1 {
  position: absolute;
  right: -100px;
  z-index: 0;
}

.features-header h2 {
  color: #3c7dc6;
  font-size: 40px;
  font-weight: bold;
}

.features-header p {
  font-size: 18px;
  margin-top: 10px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.tab {
  background: #a5c7f1;
  color: white;
  padding: 10px 20px;
  border-radius: 8px 8px 0 0;
  margin: 80px 0 0 10px;
  cursor: pointer;
  font-weight: bold;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.tab.active {
  background: #3c7dc6;
  opacity: 1;
}

.features-content {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  text-align: left;
  background-color: #3c7dc6;
}

.features-text {
  max-width: 500px;
}

.features-text h3 {
  font-size: 40px;
  font-weight: bold;
  color: #ffffff;
}

.features-text p {
  font-size: 20px;
  color: white;
  margin-top: 10px;
}

.features-images {
  display: flex;
  justify-content: center;
  position: relative;
  gap: 20px;
  z-index: 1;
}

.phone-features {
  width: 100%;
}

/* Tablet */
@media (max-width: 1024px) {
  .features-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .features-text {
    max-width: 90%;
  }

  .tabs{
    margin: 0 0 0 0;
  }

  .features-text h3 {
    font-size: 28px;
  }

  .features-text p {
    font-size: 16px;
  }

  .features-back1 {
    opacity: 0.3;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .features-header h2 {
    font-size: 28px;
  }

  .features-header p {
    font-size: 16px;
  }

  .tab {
    font-size: 14px;
    padding: 8px 12px;
    margin: 0 0 0 0;
  }

  .features-text h3 {
    font-size: 24px;
  }

  .features-text p {
    font-size: 14px;
  }

  .phone-features {
    max-width: 250px;
  }
}

/* HP Kecil */
@media (max-width: 480px) {

  .features-header h2 {
    font-size: 24px;
  }

  .features-header p {
    font-size: 14px;
  }

  .tab{
    border-radius: 0px;
    align-items: center;
    max-width: 100%;
  }

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

  .tab {
    width: 100%;
    text-align: center;
    padding: 10px;
    margin: 0 0 0 0;
  }

  .features-text h3 {
    font-size: 20px;
  }

  .features-text p {
    font-size: 14px;
  }

  .phone-features {
    max-width: 200px;
  }
}

.hidden {
  display: none;
}

.hero-sub {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #1b4965;
  color: white;
  padding: 60px 10%;
  position: relative;
  overflow: hidden;
}

.back1 {
  position: absolute;
  left: -100px;
  bottom: -240px;
}

.back2 {
  position: absolute;
  right: -100px;
  top: -140px;
}

.hero-sub-content {
  max-width: 500px;
}

.hero-sub-content h1 {
  font-size: 28px;
  font-weight: bold;
}

.hero-sub-content p {
  font-size: 18px;
  margin-top: 60px;
}

.hero-sub-images {
  position: relative;
}

.phone-sub {
  width: 200px;
}

.phone-sub-left {
  transform: rotate(-15deg);
  position: relative;
  width: 100%;
  left: -30px;
  top: -20px;
}

.hero-sub-buttons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.btn-sub {
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 20px;
  color: white;
  font-size: 12px;
  display: inline-block;
  text-align: start;
  align-items: center;
  width: 180px;
}

.playstore-sub img,
.appstore-sub img {
  width: 36px;
  height: 36px;
}

.btn-sub strong {
  font-size: 20px;
}

.playstore-sub,
.appstore-sub {
  display: flex;
  background: black;
}

/* ================== RESPONSIVE ================== */
@media (max-width:1294px) {
  .back1{
    visibility: hidden;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .hero-sub {
      flex-direction: column;
      text-align: center;
      padding: 40px 5%;
  }

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

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

  .btn-sub {
      justify-content: center;
      text-align: left;
  }

  .phone-sub-left {
      transform: none;
      left: 0;
      top: 0;
  }

  .back2 {
    width: 360px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-sub-buttons{
    align-items: center;
    margin: 20px;
  }

  .hero-sub h1 {
      font-size: 22px;
  }

  .hero-sub p {
    margin-top: 0;
    font-size: 16px;
  }

  .btn-sub {
      width: 160px;
      font-size: 11px;
  }

  .btn-sub strong {
      font-size: 14px;
  }

  .playstore-sub img,
  .appstore-sub img {
      width: 30px;
      height: 30px;
  }

  .back2 {
      width: 260px;
  }
}

/* HP Kecil */
@media (max-width: 480px) {
  .hero-sub {
      padding: 20px 5%;
  }

  .hero-sub h1 {
      font-size: 18px;
  }

  .hero-sub p {
      font-size: 14px;
  }

  .btn-sub {
      width: 140px;
  }

  .btn-sub strong {
      font-size: 12px;
  }

  .playstore-sub img,
  .appstore-sub img {
      width: 24px;
      height: 24px;
  }
}

.about {
  background: url('../img/bg_hero.png');
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
  background-size: cover;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  position: relative;
}

.about-header {
  max-width: 1000px;
  padding: 0 20px;
}

.about-header h2 {
  color: #3c7dc6;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 15px;
}

.about-header p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

/* ==================== RESPONSIVE ==================== */

/* Tablet */
@media (max-width: 1024px) {
  .about {
      padding: 40px 15px;
  }

  .about-header h2 {
      font-size: 32px;
  }

  .about-header p {
      font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .about {
      padding: 30px 10px;
      min-height: auto;
  }

  .about-header h2 {
      font-size: 28px;
  }

  .about-header p {
      font-size: 15px;
  }
}

/* HP Kecil */
@media (max-width: 480px) {
  .about {
      padding: 20px 10px;
  }

  .about-header h2 {
      font-size: 24px;
  }

  .about-header p {
      font-size: 14px;
      text-align: justify;
  }
}


.faq-header {
  background-color: #ffffff;
  padding: 60px 0 0 0;
  display: flex;
  justify-content: center;
  text-align: center;
}

.faq-header h2 {
  color: #3c7dc6;
  font-size: 40px;
  font-weight: bold;
  margin: 0;
}

.faq-content {
  background-color: white;
  display: flex;
  justify-content: center;
  padding-top: 100px;
}

.contaier-faq {
  width: 100%;
  max-width: 600px;
}

.pns {
  position: relative;
  bottom: -6px;
  z-index: 99;
}


:root {
	--open-color: #3c7dc6;
	--closed-color: #a5c7f1;
}

/* Collapse / Expand Component */
details {
	border: 1px solid var(--closed-color);
	color: rgba(255, 255, 255, 0.9);
	background: var(--closed-color);
	cursor: pointer;
	transition: background 0.3s, border-color 0.3s;
	border-radius: 4px;
	min-height: 48px;
	max-height: 60px;
	transform-origin: top center;
	transform: rotate(0.1deg);
	transition: all 0.3s;
}

details[open] {
	border-color: var(--open-color);
	background: var(--open-color);
}

details::-webkit-details-marker {
	display: none;
}

details + details {
	margin-top: 10px;
}

details p {
	color: #fefefe;
	line-height: 1.7;
	margin: 10px 0 0;
	padding: 0 20px 15px;
  max-width: 600px;
}

/* Hover State */
details:hover {
	border-color: var(--open-color);
	color: rgba(255, 255, 255, 0.6);
}

/* Active State */
details:active {
	color: rgba(255, 255, 255, 0.9);
	border-color: darken(var(--open-color), 10%);
}

/* Primary Style */
details.primary {
	border-color: var(--closed-color);
	background: var(--closed-color);
}

details.primary[open] {
	border-color: var(--open-color);
	background: var(--open-color);
}

/* Square Style */
details.square {
	border-radius: 0;
}

/* Open State */
details[open] {
	transition: all 0.6s;
	min-height: 100px;
	max-height: 200px;
}

/* Summary Styling */
summary {
	outline: none;
	font-size: 16px;
	padding: 13px;
  font-weight: bold;
}

summary::selection {
	background: transparent;
}

summary .close {
	display: none;
}

details[open] summary .close {
	display: inline;
}

summary .open {
	display: inline;
}

details[open] summary .open {
	display: none;
}

summary::after {
	margin-top: 2px;
	float: left;
	margin-right: 11px;
	text-align: center;
	font-size: 11px;
}

details[open] summary::after {
	padding: 0 0 12px 0;
}

/* Responsif khusus untuk tablet dan mobile */
@media (max-width: 984px) {
  .faq-header h2 {
    font-size: 28px;
  }

  .faq-content {
    flex-direction: column;
    padding-top: 40px;
  }

  .container-faq {
    padding: 0 15px;
  }

  .pns {
    order: -1;
    text-align: center;
  }

  .pns img {
    width: 80%;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .faq-header h2 {
    font-size: 24px;
  }

  summary {
    font-size: 14px;
    padding: 12px;
  }

  details p {
    font-size: 13px;
  }

  .faq-content {
    padding-top: 20px;
  }

  .contaier-faq{
    padding: 0 0 0 0;
  }
}

.vertical {
  border-left: 1px solid #3c7dc6;
  padding: 30px 10px 20px 0;
}

.footer {
  background: #3c7dc6;
  color: white;
  padding: 40px 50px;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: center;
  background: white;
  padding: 20px 20px;
  border-radius: 10px;
  color: #3c7dc6;
}

.footer-logo img {
  height: 50px;
  margin-right: 10px;
}

.footer-info,
.footer-links {
  max-width: 400px;
}

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

.footer p {
  margin: 5px 0;
  font-size: 14px;
}

.footer-links a {
  color: white;
  text-decoration: none;
}

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

.footer-bottom {
  margin-top: 100px;
  border-top: 1px solid white;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.footer-bottom a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

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

/* RESPONSIVE */
/* Tablet (max 768px) */
@media (max-width: 994px) {
  .footer-content {
      flex-direction: column;
      align-items: center;
      gap: 20px;
  }

  .footer-logo {
      justify-content: center;
  }

  .footer-info,
  .footer-links {
      width: 100%;
  }

  .footer-bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin-top: 40px;
  }
}

/* Mobile (max 480px) */
@media (max-width: 480px) {
  .footer {
      padding: 30px 15px;
  }

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

  .footer p, .footer-links a {
      font-size: 13px;
  }

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

  .footer-bottom {
      font-size: 12px;
      margin-top: 10px;
  }
}

.modal-window {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.25);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;

  &.show {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  &:target {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  & > div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2em;
    background: white;
  }
  header {
    font-weight: bold;
  }
  h1 {
    font-size: 150%;
    margin: 0 0 2px;
  }
}

.modal-close {
  color: #aaa;
  line-height: 50px;
  font-size: 80%;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 70px;
  text-decoration: none;
  &:hover {
    color: black;
  }
}

/* Demo Styles */
.modal-window {
  & > div {
    border-radius: 1rem;
  }
}

.modal-window div:not(:last-of-type) {
  margin-bottom: 12px;
}

/* Tablet & Mobile */
@media (max-width: 768px) {
  .modal-window > div {
    max-width: 90%;
    padding: 15px;
  }

  .modal-window h1 {
    font-size: 20px;
  }

  .hero-sub-buttons a {
    max-width: 100%;
    justify-content: center;
    gap: 5px;
  }

  .hero-sub-buttons div {
    font-size: 10px;
  }
}

/* Mobile Kecil */
@media (max-width: 480px) {
  .modal-window > div {
    padding: 10px;
  }

  .modal-window h1 {
    font-size: 18px;
  }

  .hero-sub-buttons a {
    flex-direction: column;
    gap: 5px;
    padding: 10px;
  }

  .hero-sub-buttons img {
    width: 25px;
  }

  .hero-sub-buttons div {
    font-size: 10px;
    text-align: center;
  }

  .modal-close {
    font-size: 14px;
  }
}

/* Menu Toggle Button - Hidden by default */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 848px) {
  .navbar {
    padding: 15px 20px;
    flex-wrap: wrap;
    align-items: center;
  }

  .menu-toggle {
    display: block;
  }

  .nav-container {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: white;
    gap: 0;
    height: 0;
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .nav-links li {
    text-align: start;
    padding: 15px 0;
    border-top: 1px solid #ddd;
    width: 100%;
  }

  .download-btn {
    width: calc(90% - 40px);
    text-align: center;
    margin-bottom: 15px;
  }

  /* Saat menu aktif (tampilkan menu) */
  .nav-container.active {
    height: auto;
  }
}