* {
  box-sizing: border-box;
}

:root {
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --font-heading: "Manrope", "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: #0d1b2a;
  background: #f6f8fc;
}

@keyframes gradientDrift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes floatAura {
  0%, 100% { transform: translateY(0px) scale(1); opacity: 0.35; }
  50% { transform: translateY(-14px) scale(1.06); opacity: 0.55; }
}

@keyframes cardGlow {
  0%, 100% { box-shadow: 0 14px 26px rgba(11, 42, 89, 0.09); }
  50% { box-shadow: 0 18px 34px rgba(23, 114, 225, 0.17); }
}

a {
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #07162f;
  border-bottom: 1px solid rgba(104, 161, 226, 0.2);
}

.header-content {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo,
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  color: #ffffff;
}

.logo-icon {
  width: 62px;
  height: 62px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(22, 144, 255, 0.35);
  background: linear-gradient(140deg, #0e6eff, #12c4e8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.logo-icon-image {
  background: #ffffff;
}

.logo-fallback {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
}

.logo-text h1,
.footer-logo h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.logo-text p,
.footer-logo p {
  margin: 0;
  font-size: 0.78rem;
  color: #9ab4d5;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  color: #cfd8e8;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
  font-family: var(--font-heading);
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link-login {
  color: #6ed2ff;
}

.nav-signup-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(90deg, #1b66ff, #08b7df);
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 0.92rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.mobile-menu-btn {
  display: none;
  border: 0;
  background: none;
  color: #fff;
  font-size: 1.3rem;
}

#menuIconClose {
  display: none;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 0 0 16px;
}

.mobile-nav .btn {
  width: fit-content;
}

.mobile-nav .nav-signup-btn {
  padding: 10px 16px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  min-height: 750px;
  padding-top: 100px;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background: radial-gradient(circle at 70% 22%, rgba(90, 202, 224, 0.22), transparent 43%),
    radial-gradient(circle at 12% 56%, rgba(42, 102, 236, 0.2), transparent 44%),
    linear-gradient(100deg, #173069, #105766);
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(8, 18, 35, 0.2), rgba(8, 18, 35, 0.35));
}

.hero-container {
  position: relative;
  z-index: 2;
  min-height: 630px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider {
  position: relative;
  width: 100%;
  min-height: 610px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  align-items: center;
  padding: 28px 24px;
  border-radius: 28px;
  overflow: hidden;
}

.hero-slide::before,
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-slide::before {
  background: var(--slide-bg-gradient, linear-gradient(120deg, #1f5fbf, #13b5d6));
  z-index: 0;
}

.hero-slide::after {
  background-image: var(--slide-bg-image);
  background-size: cover;
  background-position: center;
  opacity: var(--slide-bg-image-opacity, 0);
  z-index: 0;
}

.hero-slide > * {
  position: relative;
  z-index: 1;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateX(0);
}

.hero-content {
  max-width: 760px;
  color: #fff;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #eaf2ff;
  font-size: 0.98rem;
  font-weight: 600;
  padding: 10px 18px;
  margin-bottom: 26px;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 5rem);
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-family: var(--font-heading);
}

.hero-subtitle {
  margin-top: 28px;
  margin-bottom: 42px;
  color: #d6e1f6;
  font-size: 1.15rem;
  line-height: 1.45;
  max-width: 760px;
}

.hero-kicker {
  margin: 18px 0 0;
  color: #bfe7ff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  max-width: 740px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-white {
  background: #fff;
  color: #08305e;
  border-radius: 999px;
  padding: 16px 34px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.btn-outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  padding: 16px 34px;
  font-size: 1rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.07);
  font-family: var(--font-heading);
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.9rem;
  z-index: 3;
}

.hero-prev {
  left: 12px;
}

.hero-next {
  right: 12px;
}

.hero-graphic-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-graphic {
  width: min(420px, 78vw);
  height: min(420px, 78vw);
  border-radius: 50%;
  background: rgba(111, 206, 240, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero-graphic i {
  font-size: clamp(5.2rem, 9vw, 8rem);
  color: #ffffff;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(220, 236, 255, 0.45);
}

.hero-dot.is-active {
  width: 58px;
  border-radius: 999px;
  background: #ffffff;
}

.section {
  padding: 84px 0;
  position: relative;
  overflow: hidden;
}

.section-white {
  background:
    radial-gradient(circle at 18% 18%, rgba(75, 170, 255, 0.12), transparent 38%),
    radial-gradient(circle at 84% 82%, rgba(104, 103, 255, 0.1), transparent 34%),
    linear-gradient(180deg, #ffffff, #f8fbff);
}

.section-gray {
  background:
    radial-gradient(circle at 14% 86%, rgba(41, 152, 255, 0.16), transparent 40%),
    radial-gradient(circle at 86% 18%, rgba(27, 209, 227, 0.12), transparent 35%),
    linear-gradient(180deg, #f4f8ff, #eef3ff);
}

.section::before,
.section::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
  animation: floatAura 7s ease-in-out infinite;
}

.section::before {
  width: 320px;
  height: 320px;
  left: -120px;
  top: 24px;
  background: radial-gradient(circle, rgba(84, 182, 255, 0.2), rgba(84, 182, 255, 0));
}

.section::after {
  width: 260px;
  height: 260px;
  right: -90px;
  bottom: -50px;
  background: radial-gradient(circle, rgba(138, 108, 255, 0.2), rgba(138, 108, 255, 0));
  animation-delay: 1.2s;
}

.section > .container,
.section > .container-small {
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.section-title {
  margin: 0;
  color: #10213e;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-family: var(--font-heading);
}

.section-subtitle {
  margin: 10px auto 0;
  max-width: 720px;
  color: #54627a;
}

.services-grid {
  margin-top: 12px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.kategori-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.kategori-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #dde7f6;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: 0 10px 26px rgba(12, 38, 82, 0.1);
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.kategori-card::after {
  content: "";
  position: absolute;
  top: -30%;
  left: -40%;
  width: 42%;
  height: 180%;
  transform: rotate(18deg) translateX(-120%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0));
  transition: transform 0.7s ease;
}

.kategori-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 38px rgba(12, 38, 82, 0.2);
  border-color: rgba(38, 139, 255, 0.35);
}

.kategori-card:hover::after {
  transform: rotate(18deg) translateX(360%);
}

.kategori-card-header {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  color: #fff;
  position: relative;
}

.kategori-card-header h3 {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-heading);
}

.kategori-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.kategori-stm .kategori-card-header {
  background: linear-gradient(100deg, #2c7cf0, #2264df);
}

.kategori-mta .kategori-card-header {
  background: linear-gradient(100deg, #1ab8d5, #0e9ab8);
}

.kategori-me .kategori-card-header {
  background: linear-gradient(100deg, #ad45ff, #7d23ec);
}

.kategori-bkp .kategori-card-header {
  background: linear-gradient(100deg, #05c045, #00a63c);
}

.kategori-card-body {
  padding: 20px 22px;
}

.kategori-card-body h5 {
  color: #1d2a41;
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 700;
}

.kategori-card-body ul {
  margin: 0 0 14px;
  padding-left: 0;
  list-style: none;
}

.kategori-card-body li {
  margin-bottom: 7px;
  color: #40506b;
  font-size: 0.9rem;
}

.kategori-card-body li i {
  margin-right: 8px;
}

.kategori-stm .kategori-card-body li i { color: #2f74eb; }
.kategori-mta .kategori-card-body li i { color: #179fbd; }
.kategori-me .kategori-card-body li i { color: #9236f4; }
.kategori-bkp .kategori-card-body li i { color: #00ab3d; }

.kategori-card-body a {
  color: #1d65cf;
}

.kategori-table-wrapper {
  background: #fff;
  border: 1px solid #dfe8f6;
  border-radius: 16px;
  overflow-x: auto;
  box-shadow: 0 14px 26px rgba(11, 42, 89, 0.06);
}

.kategori-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.kategori-table thead th {
  background: linear-gradient(140deg, #0b5db4, #1198d6);
  color: #fff;
  font-weight: 700;
  padding: 14px;
  text-align: center;
}

.kategori-table td {
  vertical-align: top;
  padding: 16px;
  border: 1px solid #e5ecf8;
}

.kategori-content h5 {
  color: #0f2649;
  font-size: 0.95rem;
  margin-top: 0;
  margin-bottom: 10px;
}

.kategori-content ul {
  margin: 0 0 12px;
  padding-left: 0;
  list-style: none;
}

.kategori-content li {
  margin-bottom: 6px;
  color: #45566f;
  font-size: 0.92rem;
}

.kategori-content li i {
  color: #0f7ecf;
  margin-right: 6px;
}

.kategori-content a {
  color: #0f7ecf;
}

.service-card {
  --card-rgb: 44, 124, 240;
  background: linear-gradient(165deg, #ffffff 0%, #f4f8ff 100%);
  border-radius: 16px;
  border: 1px solid #dfe8f6;
  padding: 26px;
  box-shadow: 0 14px 26px rgba(11, 42, 89, 0.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% -12%, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0) 48%),
    linear-gradient(145deg, rgba(var(--card-rgb), 0.18), rgba(255, 255, 255, 0.08) 58%, rgba(255, 255, 255, 0.28));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 1;
}

.service-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -42px;
  top: -46px;
  border-radius: 50%;
  background: rgba(var(--card-rgb), 0.12);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transform: scale(0.8);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(42, 134, 250, 0.34);
  box-shadow: 0 24px 38px rgba(16, 70, 141, 0.2), 0 0 0 1px rgba(var(--card-rgb), 0.12) inset;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.service-card > * {
  position: relative;
  z-index: 2;
}

.service-card:hover h4 {
  color: rgb(var(--card-rgb));
}

.service-card:hover .service-icon {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 10px 20px rgba(var(--card-rgb), 0.36);
}

.services-grid .row .col-md-4:nth-child(3n+1) .service-card { --card-rgb: 44, 124, 240; }
.services-grid .row .col-md-4:nth-child(3n+2) .service-card { --card-rgb: 138, 46, 255; }
.services-grid .row .col-md-4:nth-child(3n) .service-card { --card-rgb: 10, 169, 201; }

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #0d63bb, #00a8d9);
  color: #fff;
  margin-bottom: 14px;
}

.service-icon i,
.service-icon svg {
  font-size: 1.2rem;
}

.service-card h4 {
  margin: 0 0 10px;
  color: #10213e;
  font-family: var(--font-heading);
  line-height: 1.25;
}

.service-card p {
  margin: 0;
  color: #45566f;
  line-height: 1.75;
}

.service-card .service-description {
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
  hyphens: auto;
}

.accordion-item,
.contact-card,
.contact-form-container {
  background: linear-gradient(170deg, #ffffff 0%, #f5f9ff 100%);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.accordion-item:hover,
.contact-card:hover,
.contact-form-container:hover {
  transform: translateY(-4px);
  border-color: rgba(58, 143, 248, 0.32);
  box-shadow: 0 20px 30px rgba(14, 67, 140, 0.15);
}

.container-small {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 12px;
}

.about-content {
  border-left: 4px solid #0f7ecf;
  background: #fff;
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: 0 12px 24px rgba(11, 42, 89, 0.06);
  color: #45566f;
}

.accordion-list {
  display: grid;
  gap: 14px;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion-item {
  border: 1px solid #dde7f6;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

#faq .accordion {
  gap: 16px;
}

#faq .accordion-item {
  border-radius: 18px;
}

#faq .accordion-item:first-child {
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

#faq .accordion-item:last-child {
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
}

#faq .accordion-item .accordion-header {
  border-radius: 18px;
}

#faq .accordion-item .accordion-content.is-open {
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
}

#contact .accordion {
  gap: 16px;
}

#contact .accordion-item {
  border-radius: 18px;
}

#contact .accordion-item:first-child {
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

#contact .accordion-item:last-child {
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
}

#contact .accordion-item .accordion-header {
  border-radius: 18px;
}

#contact .accordion-item .accordion-content.is-open {
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
}

.accordion-header,
.faq-question {
  width: 100%;
  border: 0;
  padding: 17px 18px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: #0f2649;
  font-family: var(--font-heading);
}

.faq-question {
  border-top: 1px solid #ebf0f8;
  font-weight: 600;
  padding: 13px 18px;
}

.accordion-content,
.faq-answer {
  display: none;
  padding: 0 18px 16px;
  color: #475772;
}

.faq-answer ul,
.faq-answer ol {
  margin: 0;
  padding-left: 18px;
}

.accordion-content.is-open,
.faq-answer.is-open {
  display: block;
}

.cta-section {
  background: linear-gradient(125deg, #0f4696, #10a7d7, #2974f4);
  background-size: 220% 220%;
  animation: gradientDrift 10s ease infinite;
  color: #fff;
  text-align: center;
  padding: 76px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before,
.cta-section::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.cta-section::before {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  left: -90px;
  top: -120px;
  animation: floatAura 7s ease-in-out infinite;
}

.cta-section::after {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  right: -90px;
  bottom: -110px;
  animation: floatAura 9s ease-in-out infinite;
}

.cta-section h3 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-family: var(--font-heading);
}

.cta-section p {
  margin: 14px auto 22px;
  max-width: 650px;
  color: #d6f3ff;
}

.btn-white-solid {
  background: #fff;
  color: #094b87;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  border: 1px solid #e3ebf8;
  border-radius: 12px;
  padding: 16px;
  background: #fdfefe;
}

.contact-card h4 {
  margin: 0 0 8px;
  color: #0f2649;
  font-family: var(--font-heading);
}

.contact-info {
  color: #425574;
  font-size: 0.95rem;
}

.contact-info p {
  margin-bottom: 8px;
}

.contact-info a {
  color: #0f7ecf;
}

#contact .accordion-header {
  padding: 20px 24px;
}

#contact .accordion-header span {
  color: #1b2436;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

#contact .accordion-header i {
  color: #6a7485;
  font-size: 1.05rem;
}

#contact .accordion-content {
  padding: 0 22px 20px;
}

#contact .contact-card {
  padding: 24px;
  border-radius: 16px;
}

#contact .contact-card h4 {
  margin: 0 0 14px;
  color: #1a2335;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: uppercase;
}

#contact .contact-info {
  font-size: 1rem;
  color: #4f5d71;
  font-weight: 500;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: break-word;
}

#contact .contact-info p {
  margin: 0 0 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

#contact .contact-info p:last-child {
  margin-bottom: 0;
}

#contact .contact-info i {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #d8e9ff;
  color: #1e63ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

#contact .contact-info a,
#contact .contact-info span,
#contact .contact-info strong {
  overflow-wrap: anywhere;
  word-break: break-word;
}

#contact .contact-info a {
  color: #4f5d71;
  font-weight: 500;
}

#contact .contact-info a:hover {
  color: #2d5ece;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0f7ecf;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.vendor-logo img {
  max-height: 68px;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 8px;
}

.map-form-section {
  padding: 72px 0;
  background:
    radial-gradient(circle at 12% 25%, rgba(91, 166, 255, 0.14), transparent 35%),
    radial-gradient(circle at 88% 85%, rgba(73, 205, 234, 0.12), transparent 35%),
    linear-gradient(180deg, #f6f9ff, #eff4ff);
}

.map-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.map-form-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.map-container {
  min-height: 360px;
  height: 360px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 26px rgba(11, 42, 89, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

.map-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 34px rgba(11, 42, 89, 0.17);
}

.address-card {
  border-radius: 16px;
  padding: 20px 22px;
  background: linear-gradient(135deg, #243bdb 0%, #0c76d1 48%, #11b4d8 100%);
  color: #fff;
  box-shadow: 0 18px 30px rgba(26, 74, 172, 0.2);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  overflow: hidden;
  min-height: 150px;
}

.address-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.address-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.address-card-body {
  position: relative;
  z-index: 1;
}

.address-card-body h4 {
  margin: 0 0 6px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.05rem;
}

.address-card-body p {
  margin: 0;
  line-height: 1.35;
  white-space: pre-line;
  color: rgba(255, 255, 255, 0.93);
}

.contact-form-container {
  background: #fff;
  border: 1px solid #dce7f4;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 14px 26px rgba(11, 42, 89, 0.07);
}

.contact-form-container h3 {
  margin-top: 0;
  margin-bottom: 14px;
  color: #0f2649;
  font-family: var(--font-heading);
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: #3f5171;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #ccdaed;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}

.form-group.has-error label {
  color: #b42318;
  font-weight: 600;
}

.form-group .is-invalid {
  border-color: #d92d20;
  background-color: #fff7f7;
  box-shadow: 0 0 0 3px rgba(217, 45, 32, 0.14);
}

.form-group .is-invalid:focus {
  outline: none;
  border-color: #b42318;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.2);
}

.btn-full {
  width: 100%;
  margin-top: 6px;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 700;
  font-family: var(--font-heading);
}

.footer {
  background: linear-gradient(180deg, #06142c, #081022, #0d1b35);
  background-size: 180% 180%;
  animation: gradientDrift 12s ease infinite;
  color: #b9c8e1;
  padding-top: 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
}

.footer-desc {
  color: #92a8ca;
  margin-top: 10px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(25, 111, 228, 0.35), rgba(24, 196, 226, 0.35));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 16px rgba(30, 129, 236, 0.35);
}

.footer-col h4 {
  margin: 0 0 10px;
  color: #fff;
  font-family: var(--font-heading);
}

.footer-links,
.footer-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-info li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #b9c8e1;
}

.footer-info li {
  display: flex;
  gap: 9px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  margin-top: 34px;
  padding: 16px 0;
  color: #89a3c6;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1f5fbf, #17b4d6);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(10, 44, 95, 0.35);
  cursor: pointer;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.95);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.back-to-top i {
  font-size: 0.95rem;
}

.back-to-top:hover {
  transform: translateY(-2px) scale(1);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.category-description-cell {
  white-space: normal !important;
  word-break: break-word;
  overflow-wrap: anywhere;
  max-width: 520px;
}

.category-description-cell p,
.category-description-cell a,
.category-description-cell span {
  white-space: normal !important;
  word-break: break-word;
  overflow-wrap: anywhere;
}

@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: inline-flex;
  }

  .mobile-nav.is-open {
    display: flex;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-title {
    font-size: clamp(2rem, 7vw, 3.2rem);
  }

  .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 28px;
  }

  .hero-nav {
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
  }

  .hero-dots {
    bottom: 10px;
  }

  .map-form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .map-form-right {
    gap: 16px;
  }

  .map-container {
    min-height: 300px;
    height: 300px;
  }

  .map-container iframe {
    min-height: 300px;
  }

  .kategori-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .hero {
    min-height: 680px;
  }

  .hero-nav {
    display: none;
  }

  .hero-chip {
    font-size: 0.85rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.08rem;
  }

  .section {
    padding: 62px 0;
  }

  .kategori-cards {
    grid-template-columns: 1fr;
  }

  #contact .accordion-header {
    padding: 16px 14px;
  }

  #contact .accordion-content {
    padding: 0 14px 14px;
  }

  #contact .contact-card {
    padding: 16px 14px;
  }

  #contact .contact-info p {
    gap: 10px;
  }

  #contact .contact-info i {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    font-size: 1.05rem;
  }
}
