@import url('https://fonts.cdnfonts.com/css/helvetica-neue');

*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
  margin: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  overflow-x: hidden;
}

/* Internet Page Navbar CSS */
.topbar-navbar {
  width: 100%;
  padding: 20px 30px;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #eee;
  position: relative;
}

.topbar-nav-container {
  max-width: 1600px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-nav-left {
  flex-shrink: 0;
}

.topbar-company-logo {
  height: 54px;
  object-fit: contain;
  display: block;
}

.topbar-nav-center {
  display: flex;
  gap: 75px;
  align-items: center;
}

.topbar-nav-center a,
.topbar-menu-link.topbar-dropdown-toggle {
  color: #0047BB;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  transition: color 0.3s ease;
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.topbar-nav-center a:hover,
.topbar-nav-center a.active {
  color: #0047BB;
}

.topbar-nav-right {
  display: flex;
  align-items: center;
}

.topbar-try-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid #0047BB;
  color: #0047BB;
  padding: 10px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  font-size: 17px;
  transition: all 0.2s ease;
  font-family: inherit;
}

.topbar-try-btn:hover {
  background-color: #0047BB;
  color: white;
}

.topbar-dropdown {
  display: none;
  background: #f9f9f9;
  border-top: 1px solid #ccc;
  padding: 1rem;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 999;
  font-family: inherit;
}

.topbar-dropdown.show {
  display: block;
}

.topbar-dropdown-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: auto;
}

.topbar-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 8px;
  background: #f9f9f9;
  text-decoration: none;
  color: #111;
  transition: background 0.3s;
  font-family: inherit;
}

.topbar-dropdown-item:hover {
  background: #f1f1f1;
}

.topbar-item-icon {
  width: 24px;
  height: 24px;
  margin-top: 0.2rem;
}

.topbar-item-title {
  font-weight: bold;
  margin-bottom: 0.25rem;
  font-family: inherit;
}

.topbar-item-description {
  font-size: 14px;
  color: #666;
  font-family: inherit;
}

.topbar-hamburger {
  display: none;
  cursor: pointer;
}

.topbar-hamburger img {
  width: 30px;
  height: 30px;
}

.topbar-nav-menu {
  display: none;
  flex-direction: column;
  list-style: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100vw;
  height: calc(100vh - 80px);
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  padding: 20px 20px;
  z-index: 1000;
  overflow-y: auto;
  font-family: inherit;
}

.topbar-nav-menu.show {
  display: flex;
}

.topbar-nav-menu ul,
.topbar-mobile-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.topbar-nav-menu li {
  width: 100%;
  list-style: none;
}

.topbar-nav-menu a {
  display: block;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: bold;
  color: #0047BB;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  border-radius: 4px;
}

.topbar-nav-menu a:hover {
  background-color: rgba(0, 71, 187, 0.1);
}

.topbar-nav-menu li:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.topbar-mobile-submenu li:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.topbar-nav-menu a,
.topbar-mobile-submenu li a {
  padding: 14px 20px;
  display: block;
}

.topbar-mobile-submenu {
  display: none;
  flex-direction: column;
  gap: 12px;
  margin-top: 0;
}

.topbar-mobile-dropdown.open .topbar-mobile-submenu {
  display: flex;
  margin-top: 10px;
}

.topbar-mobile-submenu li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 12px;
  background-color: #f4f7fb;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.topbar-mobile-submenu li img.topbar-icon {
  width: 28px;
  height: 28px;
  margin-right: 12px;
  flex-shrink: 0;
}

.topbar-mobile-submenu .topbar-card-text {
  display: flex;
  flex-direction: column;
}

.topbar-mobile-submenu .topbar-card-text .topbar-title {
  font-size: 16px;
  font-weight: 600;
  color: #0047BB;
}

.topbar-mobile-submenu .topbar-card-text .topbar-desc {
  font-size: 13px;
  color: #333;
  margin-top: 4px;
}

@media screen and (max-width: 768px) {
  .topbar-nav-center,
  .topbar-nav-right {
    display: none !important;
  }

  .topbar-hamburger {
    display: block;
    position: relative;
    z-index: 1100;
  }

  .topbar-dropdown {
    display: none !important;
  }
}


.hero {
  display: flex;
  align-items: center;   /* This vertically centers image + text */
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
  gap: 3rem;             /* Adds more horizontal space between text & image */
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 50%;
}

.hero-subtitle {
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 1rem 0;
}

.hero-description {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.btn-primary {
  background-color: #002366;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #023ba5;
}

.hero-image {
  flex: 1 1 45%;
  max-width: 500px;
  display: flex;
  justify-content: center;   /* Ensure the image centers inside its container */
}

.hero-image img {
  width: 100%;
  border-radius: 0.75rem;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: left;
  }

  .hero-text {
    flex: 1 1 100%;
  }

  .hero-image {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-title {
    flex-direction: column;
    text-align: left;
  }

  .hero-subtitle {
    flex-direction: column;
    text-align: left;
  }

  .hero-description {
    flex-direction: column;
    text-align: left;
  }

  .btn-primary {
    text-align: left;
  }

  .cta-buttons {
    display: flex;
    justify-content: flex-start;
  }
}

/* Intro Section */
.catpin-intro-section {
  padding: 100px 20px 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.catpin-intro-section h1 {
  font-size: 2rem;
  color: #002366;
  margin-bottom: 20px;
}

.catpin-intro-section p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Catpin Section */
.catpin-scroll-section {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  padding: 0 60px;
}

.catpin-image-container {
  flex: 1;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.catpin-image-container img {
  max-width: 500px;
  width: 100%;
  height: 600px; /* atur tinggi gambar */
  object-fit: cover;
  border-radius: 12px;
  transition: opacity 0.3s ease-in-out;
}

.catpin-text-container {
  flex: 1;
}

.catpin-text-panel {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0.3;
  transform: translateY(40px);
  transition: all 0.4s ease;
}

.catpin-text-panel.active {
  opacity: 1;
  transform: translateY(0);
}

.catpin-text-panel h2 {
  font-size: 1.8rem;
  color: #002366;
  margin-bottom: 15px;
}

.catpin-text-panel p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.mobile-image {
  display: none;
}

@media (max-width: 768px) {
  .catpin-scroll-section {
    flex-direction: column;
    padding: 20px;
  }

  .catpin-intro-section {
    flex-direction: column;
    text-align: left;
  }

  .catpin-image-container {
    display: none; /* Sembunyikan gambar besar utama di mobile */
  }

  /* Tambahan: wrapper baru untuk tiap teks + gambar */
  .catpin-text-panel {
    height: auto;
    padding: 0 0 40px;
    opacity: 1 !important;
    transform: none;
    transition: none;
    text-align: left;
  }

  .catpin-text-panel h2 {
    font-size: 1.3rem;
    color: #002366;
    margin-bottom: 10px;
  }

  .catpin-text-panel p {
    font-size: 1rem;
    line-height: 1.5;
  }

  /* Gambar baru per panel (hanya muncul di mobile) */
  .catpin-text-panel .mobile-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-top: 15px;
    border-radius: 8px;
  }
}

/*CTA Last*/
.cta-modern {
  background: linear-gradient(to right, #4124e4 40%, #2320da 60%);
  position: relative;
  border-radius: 24px;
  padding: 60px 40px;
  color: white;
  max-width: 1000px;
  margin: 50px auto;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cta-modern::after {
  content: "";
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 60%, transparent 100%);
  border-radius: 50%;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-content p {
  font-size: 1rem;
  margin-bottom: 24px;
  color: #ffe6d0;
}

.cta-buttons a {
  position: relative;
  display: inline-block;
  background: black;
  color: white;
  padding: 14px 22px;
  margin-right: 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
  box-shadow: inset 2px 2px 6px rgba(255,255,255,0.15);
  overflow: hidden;
  padding-right: 48px; /* extra space for the circle */
}

.cta-buttons a::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, white 30%, #aaa 100%);
  border-radius: 50%;
  opacity: 0.8;
}

.cta-buttons a:hover {
  background: #222;
}

@media (max-width: 600px) {
  .cta-modern {
    padding: 40px 20px;
    margin: 20px; /* tambahkan margin agar tidak mentok ke sisi layar */
  }

  .cta-content {
    max-width: 300px; /* batasi lebar konten agar text wrapping seperti gambar pertama */
  }

  .cta-content h2 {
    font-size: 1.5rem; /* sesuaikan ukuran font agar proporsional di mobile */
    line-height: 1.2;
  }

  .cta-content p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .cta-buttons a {
    display: inline-block; /* tetap inline button-nya */
    margin-right: 0;
    margin-top: 20px;
  }
}

/*First Desc*/
.whygaidz-section {
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  padding: 60px 30px;
  position: relative;
}

.whygaidz-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
}

.whygaidz-section.reverse .whygaidz-container {
  flex-direction: row-reverse;
}

.whygaidz-image-col,
.whygaidz-text-col {
  flex: 1;
  min-width: 300px;
  padding: 20px 40px;
}

.whygaidz-image-col {
  display: flex;
  justify-content: center;
}

.whygaidz-main-img {
  max-width: 500px;
  width: 100%;
  height: auto;
}

.whygaidz-title {
  font-size: 32px;
  color: #0a1a4f;
  margin-bottom: 20px;
}

.whygaidz-text {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .whygaidz-container,
  .whygaidz-section.reverse .whygaidz-container {
    flex-direction: column;
    text-align: center;
  }

  .whygaidz-text {
    text-align: left;
    flex-direction: column;
  }
  
  .whygaidz-text-col {
    padding: 20px;
  }
  
  .whygaidz-image-col {
    display: none;
  }
}

/*FAQ*/
.faqx-section {
  width: 100%;
  margin-top: 100px;
}

.faqx-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.faqx-col {
  padding: 60px;
  flex: 1;
}

.faqx-info {
  color: black;
  width: 41.6667%;
  display: flex;
  align-items: center;
}

.faqx-info-content {
  max-width: 450px;
}

.faqx-info-content h6 {
  color: #0047BB;
  font-size: 18px;
  font-weight: 400;
}

.faqx-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
}

.faqx-subtitle {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 40px;
}

.faqx-accordion {
  width: 58.3333%;
}

.faqx-list {
  max-width: 800px;
}

.faqx-item {
  border-bottom: 1px solid #666;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.faqx-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faqx-question p {
  font-size: 20px;
  font-weight: 600;
  color: black;
}

.faqx-toggle-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.faqx-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 20px;
  color: black;
}

.faqx-answer p {
  font-size: 17px;
  line-height: 26px;
  padding-top: 10px;
}

.faqx-item.active .faqx-answer {
  max-height: 300px;
}

.faqx-item.active .faqx-toggle-icon {
  transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 1024px) {
  .faqx-info {
    width: 100%;
    text-align: center;
  }

  .faqx-accordion {
    width: 100%;
  }

  .faqx-info-content {
    margin: 0 auto;
  }

  .faqx-title {
    font-size: 32px;
  }

  .faqx-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .faqx-col {
    padding: 30px;
  }

  .faqx-title {
    font-size: 28px;
  }

  .faqx-subtitle {
    font-size: 15px;
  }

  .faqx-question p {
    font-size: 18px;
  }

  .faqx-answer p {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .faqx-container {
    flex-direction: column;
  }

  .faqx-col {
    flex: unset;
    width: 100%;
  }
}

/* ================= FOOTER STYLE ================= */
.footer {
  background-color: #04144f;
  color: #fff;
   padding: 60px 30px 100px; /* padding bottom diperbesar */
  font-family: 'Inter', sans-serif;
   margin-top: 80px; /* Tambahkan ini */
   margin-bottom: 80px; /* Tambahkan ini */
   min-height: 800px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: flex-start; /* changed from space-between */
}

.footer-col {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-group {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-left: 40px; /* spacing from brand */
}

.footer-brand h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 16px 0 12px;
}

.footer-brand p {
  font-size: 14px;
  color: #cfcfcf;
  line-height: 1.5;
}

.footer-brand h4 {
  margin-top: 20px;
  font-weight: 600;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin: 10px 0 20px;
}

.footer-social img {
  width: 32px;
  height: 32px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ffffff; /* Warna default link */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #0e60e4; /* Warna saat hover */
  text-decoration: underline;
}

.footer address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

.footer-certification {
  background-color: #04144f;
  color: #d0d0d0;
  padding: 40px 30px 20px;
  font-family: 'Inter', sans-serif;
  text-align: center;
   margin-top: 150px;
}

.cert-divider {
  border: none;
  border-top: 1px solid #1c2d5c;
  margin-bottom: 30px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.cert-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cert-text {
  font-size: 16px;
  max-width: 600px;
  line-height: 1.5;
}

.cert-text strong {
  color: #ffffff;
}

.cert-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.cert-logos img {
  height: 45px;
  max-width: 100px;
  object-fit: contain;
}

.footer-bottom-text {
  margin-top: 40px;
  font-size: 14px;
  color: #ccc;
}

.footer-brand img {
  max-width: 180px; /* Sesuaikan ukuran sesuai kebutuhan */
  height: auto;
  display: block;
  margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-col,
  .footer-group {
    flex: 1 1 100%;
    flex-direction: column;
    margin-left: 0;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .cert-logos img {
    height: 35px;
    max-width: 80px;
  }

  .cert-text {
    font-size: 14px;
  }

  .footer-certification {
    padding: 30px 20px 15px;
  }

  .footer-bottom-text {
    font-size: 12px;
  }

  .footer-brand img {
    max-width: 140px;
  }
}

