:root {
  --primary: #00a2ea;
  /* biru utama */
  --secondary: #2c2e67;
  /* biru tua */
  --bg: #f5f9ff;
  --text: #1b2230;
  --muted: #6b7280;
  --card: #ffffff;
  --ring: rgba(0, 162, 234, .25);
  --grad: linear-gradient(135deg, #00a2ea 0%, #2c2e67 100%);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  height: 100%
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none
}

main {
  flex: 1
}

/* Header / Navbar */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(110%) blur(8px);
  background: rgba(255, 255, 255, .95);
  border-top: 4px solid var(--primary);
  border-bottom: 1px solid rgba(44, 46, 103, .1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .05)
}

.container {
  max-width: 1300px;
  margin-inline: auto;
  padding: 0 24px
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 16px
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 4px 0
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08)
}

.brand span {
  letter-spacing: .3px
}

nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center
}

.menu {
  display: flex;
  gap: 4px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0
}

.menu>a {
  padding: 10px 9px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  white-space: nowrap
}

.menu>a:hover {
  background: var(--ring);
  color: var(--primary)
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 24px;
  color: var(--secondary);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s ease
}

.menu-toggle:hover {
  background: var(--ring)
}

/* Dropdown Menu */
.menu-dropdown {
  position: relative
}

.menu-dropdown-toggle {
  padding: 10px 9px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer
}

.menu-dropdown-toggle i {
  font-size: 10px;
  transition: transform 0.3s ease;
  margin-left: 2px
}

.menu-dropdown-toggle:hover {
  background: var(--ring);
  color: var(--primary)
}

.menu-dropdown.active .menu-dropdown-toggle {
  background: var(--ring);
  color: var(--primary)
}

.menu-dropdown.active .menu-dropdown-toggle i {
  transform: rotate(180deg)
}

.menu-dropdown-content {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  border: 1px solid #e8eef7;
  border-radius: 12px;
  padding: 8px 0;
  min-width: 240px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  z-index: 100
}

.menu-dropdown.active .menu-dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.menu-dropdown-content a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: all 0.2s ease;
  border-radius: 0
}

.menu-dropdown-content a:first-child {
  border-radius: 12px 12px 0 0
}

.menu-dropdown-content a:last-child {
  border-radius: 0 0 12px 12px
}

.menu-dropdown-content a:hover {
  background: var(--ring);
  color: var(--primary);
  padding-left: 24px
}

.menu-dropdown-content a i {
  font-size: 14px;
  width: 16px;
  text-align: center
}

/* Hero Slider */
.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  background: #000;
  margin-top: 0;
  padding: 0
}

.hero-slider .wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 140px;
  z-index: 3;
  pointer-events: none
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1
}

.hero-slide.active {
  opacity: 1;
  z-index: 2
}

.hero-slide-image {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44, 46, 103, .7) 0%, rgba(0, 162, 234, .6) 100%);
  z-index: 1
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  min-height: 600px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px 140px;
  color: white
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .2);
  backdrop-filter: blur(10px);
  color: white;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease-out
}

.hero-slide-content .hero-title {
  font-size: 52px;
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 800;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .3);
  animation: fadeInUp 0.8s ease-out;
  max-width: 800px
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, .95);
  text-shadow: 0 1px 5px rgba(0, 0, 0, .2);
  animation: fadeInUp 0.9s ease-out;
  max-width: 700px
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out
}

.btn-outline-white {
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, .3)
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, .25);
  border-color: rgba(255, 255, 255, .5);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .3)
}

.hero-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .2);
  backdrop-filter: blur(10px);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: white;
  font-size: 18px;
  transition: all 0.3s ease
}

.hero-nav-arrow:hover {
  background: rgba(255, 255, 255, .3);
  transform: translateY(-50%) scale(1.1)
}

.hero-nav-prev {
  left: 24px
}

.hero-nav-next {
  right: 24px
}

.hero-dots {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent
}

.hero-dot.active {
  background: white;
  width: 32px;
  border-radius: 6px;
  border-color: rgba(255, 255, 255, .3)
}

.hero-dot:hover {
  background: rgba(255, 255, 255, .8)
}

.hero-fallback {
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 50%, #f0f7ff 100%);
  padding-bottom: 0
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(0, 162, 234, .25), transparent 60%),
    radial-gradient(900px 500px at -10% 10%, rgba(44, 46, 103, .20), transparent 60%),
    linear-gradient(135deg, #f8fbff 0%, #ffffff 50%, #f0f7ff 100%);
  padding-bottom: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(0, 162, 234, .08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(44, 46, 103, .06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  padding: 100px 0 80px;
  position: relative;
  z-index: 1
}

.hero-inner>div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(0, 162, 234, .15);
  color: var(--secondary);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .8px;
  text-transform: uppercase;
  width: fit-content;
  animation: fadeInUp 0.6s ease-out
}

.title {
  font-size: 48px;
  line-height: 1.15;
  margin: 20px 0;
  font-weight: 800;
  color: var(--secondary);
  animation: fadeInUp 0.8s ease-out
}

.subtitle {
  color: var(--muted);
  font-size: 19px;
  max-width: 55ch;
  line-height: 1.7;
  margin-bottom: 8px;
  animation: fadeInUp 1s ease-out
}

.cta {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s ease-out
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 24px rgba(0, 162, 234, .18);
  cursor: pointer
}

.btn-primary {
  background: var(--grad);
  color: white
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 162, 234, .3);
  cursor: pointer
}

.btn-outline {
  background: white;
  color: var(--secondary);
  border-color: #e6eaf5;
  cursor: pointer
}

.btn-outline:hover {
  background: var(--ring);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(44, 46, 103, .15);
  cursor: pointer
}

.hero-card {
  background: var(--card);
  border: 1px solid #eef2ff;
  border-radius: 20px;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  box-shadow: 0 20px 50px rgba(44, 46, 103, .10);
  margin-top: 40px;
  animation: fadeInUp 1.4s ease-out
}

.hero-card .item {
  background: #f9fbff;
  border-radius: 16px;
  padding: 18px;
  border: 1px dashed rgba(44, 46, 103, .15);
  transition: all 0.3s ease
}

.hero-card .item:hover {
  background: #f0f7ff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 162, 234, .1)
}

.hero-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(44, 46, 103, .2);
  animation: fadeInRight 1s ease-out;
  transform-style: preserve-3d
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 162, 234, .1) 0%, rgba(44, 46, 103, .1) 100%);
  z-index: 1;
  pointer-events: none
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease
}

.hero-image-wrapper:hover img {
  transform: scale(1.05)
}

.hero .wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 2
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

/* Banner / Carousel */
.banner {
  background: linear-gradient(180deg, #ffffff, #f6fbff)
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #e8eefc;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .06)
}

.slides {
  display: flex;
  transition: transform .6s ease
}

.slide {
  min-width: 100%;
  height: 320px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 30px
}

.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .35))
}

.slide>.caption {
  position: relative;
  z-index: 2;
  text-align: center
}

.dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12px;
  display: flex;
  gap: 8px
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .6);
  cursor: pointer
}

.dot.active {
  background: #fff
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .8);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer
}

.nav-arrow:hover {
  background: white
}

.nav-arrow.left {
  left: 12px
}

.nav-arrow.right {
  right: 12px
}

/* Sections */
section {
  padding: 72px 0
}

section:first-of-type {
  padding-top: 0
}

#banner {
  padding-top: 80px
}

.section-header {
  margin-bottom: 28px
}

.kicker {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(44, 46, 103, .08);
  color: var(--secondary);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .6px
}

h2 {
  margin: 10px 0 0;
  font-size: 32px;
  color: var(--secondary)
}

.lead {
  color: var(--muted)
}

.grid {
  display: grid;
  gap: 18px
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr))
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr))
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr))
}

.card {
  background: var(--card);
  border: 1px solid #e8eef7;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, .05);
  position: relative;
  overflow: hidden
}

.feature-card {
  min-height: 180px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: block
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .12)
}

.feature-card.has-bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0
}

.feature-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44, 46, 103, .75) 0%, rgba(0, 162, 234, .7) 100%);
  z-index: 1
}

.feature-card-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 180px
}

.feature-card-content h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700
}

.feature-card.has-bg-image .feature-card-content {
  color: white
}

.feature-card.has-bg-image .feature-card-content h3 {
  color: white !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .4)
}

.feature-card.has-bg-image .feature-card-content p {
  color: rgba(255, 255, 255, .95) !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .3)
}

.feature-card:not(.has-bg-image) .feature-card-content h3 {
  color: var(--secondary) !important;
  text-shadow: none
}

.feature-card:not(.has-bg-image) .feature-card-content p {
  color: var(--muted) !important;
  text-shadow: none
}

.feature-card-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6
}

.card h3 {
  margin: 6px 0 4px;
  font-size: 18px;
  color: var(--secondary)
}

.about-content {
  line-height: 1.7;
  color: var(--text);
  text-align: justify
}

.about-content p {
  margin: 0 0 12px
}

.about-content p:last-child {
  margin-bottom: 0
}

.about-content ul,
.about-content ol {
  margin: 12px 0;
  padding-left: 24px
}

.about-content li {
  margin-bottom: 8px
}

.about-content[style*="text-align: justify"] {
  text-align: justify !important
}

.about-content[style*="text-align: center"] {
  text-align: center !important
}

.about-content[style*="text-align: right"] {
  text-align: right !important
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 162, 234, .12);
  color: #056192;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px
}

/* Pagination */
.pagination-wrapper {
  margin-top: 48px;
  display: flex;
  justify-content: center
}

.pagination-nav {
  display: inline-block
}

.pagination {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap
}

.pagination-item {
  display: inline-block
}

.pagination-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  background: white;
  border: 1px solid #e8eef7;
  color: var(--secondary);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  gap: 6px
}

.pagination-link:hover:not(.current):not([aria-disabled="true"]) {
  background: var(--ring);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 162, 234, .15)
}

.pagination-link.current {
  background: var(--grad);
  color: white;
  border-color: transparent;
  cursor: default
}

.pagination-item.disabled .pagination-link {
  opacity: .5;
  cursor: not-allowed;
  background: #f5f7fa
}

.pagination-item.disabled .pagination-link:hover {
  transform: none;
  box-shadow: none
}

.pagination-prev,
.pagination-next {
  padding: 0 16px;
  min-width: auto
}

.pagination-prev span,
.pagination-next span {
  display: inline-block
}

/* Facilities Grid (Modern) */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px
}

.facility-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  transition: all 0.4s ease;
  cursor: pointer;
  background: #000
}

.facility-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 162, 234, .15)
}

.facility-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  opacity: 0.9
}

.facility-card:hover .facility-image {
  transform: scale(1.1);
  opacity: 1
}

.facility-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
  transition: all 0.4s ease
}

.facility-card:hover .facility-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.95) 100%)
}

.facility-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  z-index: 2;
  transform: translateY(10px);
  transition: transform 0.4s ease
}

.facility-card:hover .facility-content {
  transform: translateY(0)
}

.facility-content h3 {
  margin: 0 0 8px;
  font-size: 20px;
  color: white;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .3)
}

.facility-content p {
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.wbk-wbbm-content {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6
}

.wbk-wbbm-content p {
  margin: 0 0 8px
}

.wbk-wbbm-content p:last-child {
  margin-bottom: 0
}

.wbk-wbbm-content ul,
.wbk-wbbm-content ol {
  margin: 8px 0;
  padding-left: 20px
}

.wbk-wbbm-content li {
  margin-bottom: 4px
}

@keyframes slideLeft {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

@keyframes slideRight {
  0% {
    transform: translateX(-50%)
  }

  100% {
    transform: translateX(0)
  }
}

/* Galleries Infinity Slider (arah berlawanan) */
.galleries-slider-wrapper {
  position: relative;
  overflow: hidden;
  margin: 32px 0;
  padding: 20px 0
}

.galleries-slider-track {
  display: flex;
  gap: 24px;
  animation: slideRight 30s linear infinite;
  will-change: transform
}

.galleries-slider-track:hover {
  animation-play-state: paused
}

.gallery-card {
  flex: 0 0 320px;
  background: var(--card);
  border: 1px solid #e8eef7;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0, 0, 0, .05);
  transition: transform 0.3s ease;
  cursor: pointer
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .1)
}

.gallery-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block
}

.gallery-content {
  padding: 20px
}

/* Galleries Grid */
.galleries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px
}

.gallery-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  transition: all 0.4s ease;
  cursor: pointer;
  background: #000
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 162, 234, .15)
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  opacity: 0.9
}

.gallery-card:hover .gallery-image {
  transform: scale(1.1);
  opacity: 1
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
  transition: all 0.4s ease
}

.gallery-card:hover .gallery-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.95) 100%)
}

.gallery-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  z-index: 2;
  transform: translateY(10px);
  transition: transform 0.4s ease
}

.gallery-card:hover .gallery-content {
  transform: translateY(0)
}

.gallery-content h3 {
  margin: 0 0 8px;
  font-size: 20px;
  color: white;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .3)
}

.gallery-description-preview {
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.gallery-description-preview * {
  color: inherit !important;
  margin: 0 !important;
  font-size: inherit !important;
  line-height: inherit !important;
}

/* Gallery Modal */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, .9);
  backdrop-filter: blur(4px)
}

.gallery-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column
}

.gallery-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10002;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(4px)
}

.gallery-modal-close:hover {
  color: #fff;
  background: rgba(0, 0, 0, .7)
}

.gallery-modal-content {
  max-width: 900px;
  width: 90%;
  max-height: 85vh;
  margin: auto;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
  animation: zoomIn 0.3s ease;
  background: white;
  overflow: hidden
}

.gallery-modal-body {
  overflow-y: auto;
  padding: 24px;
  background: #fff;
  flex: 1
}

#galleryModalImage {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  background: #000
}

.gallery-modal-caption {
  text-align: left;
  color: var(--text);
  padding: 0;
  max-width: 100%;
  margin: 0
}

.gallery-modal-caption>h3#galleryModalTitle {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary);
  text-align: left;
  border-bottom: 1px solid #eee;
  padding-bottom: 12px
}

.gallery-modal-caption #galleryModalDescription {
  text-align: justify
}

.gallery-modal-caption #galleryModalDescription p {
  margin: 0 0 15px;
  font-size: 16px;
  line-height: 1.8;
  opacity: .9
}

.gallery-modal-caption #galleryModalDescription p:last-child {
  margin-bottom: 0
}

.gallery-modal-caption #galleryModalDescription h2 {
  margin: 20px 0 10px;
  font-size: 22px;
  font-weight: 600
}

.gallery-modal-caption #galleryModalDescription h2:first-child {
  margin-top: 0
}

.gallery-modal-caption #galleryModalDescription h3 {
  margin: 20px 0 10px;
  font-size: 20px;
  font-weight: 600
}

.gallery-modal-caption #galleryModalDescription h3:first-child {
  margin-top: 0
}

.gallery-modal-caption #galleryModalDescription ul,
.gallery-modal-caption #galleryModalDescription ol {
  margin: 10px 0 15px;
  padding-left: 25px
}

.gallery-modal-caption #galleryModalDescription li {
  margin-bottom: 8px;
  line-height: 1.6
}

.gallery-modal-caption #galleryModalDescription strong {
  font-weight: 600
}

.gallery-modal-caption #galleryModalDescription em {
  font-style: italic
}

/* Font Awesome Icons di Modal - Pastikan icon ter-render dengan benar */
.gallery-modal-caption #galleryModalDescription i {
  font-style: normal !important;
  display: inline-block !important;
  text-rendering: auto !important;
  -webkit-font-smoothing: antialiased !important
}

.gallery-modal-caption #galleryModalDescription i[class*="fa-"] {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 5 Free", "Font Awesome 5 Pro", FontAwesome !important;
  font-variant: normal !important
}

.gallery-modal-caption #galleryModalDescription i.fas,
.gallery-modal-caption #galleryModalDescription i.fa-solid {
  font-weight: 900 !important
}

.gallery-modal-caption #galleryModalDescription i.far,
.gallery-modal-caption #galleryModalDescription i.fa-regular {
  font-weight: 400 !important
}

.gallery-modal-caption #galleryModalDescription i.fab,
.gallery-modal-caption #galleryModalDescription i.fa-brands {
  font-weight: 400 !important
}

.gallery-modal-caption #galleryModalDescription i.fal,
.gallery-modal-caption #galleryModalDescription i.fa-light {
  font-weight: 300 !important
}

.gallery-modal-caption #galleryModalDescription i.fad,
.gallery-modal-caption #galleryModalDescription i.fa-duotone {
  font-weight: 900 !important
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0
  }

  to {
    transform: scale(1);
    opacity: 1
  }
}

/* Dokter */
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 8px 0 18px
}

.filters button {
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid #e5e9f6;
  background: white;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.2s ease
}

.filters button:hover {
  background: #f0f7ff;
  border-color: var(--primary)
}

.filters button.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary)
}

.schedule-controls {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px
}

.schedule-search {
  position: relative;
  max-width: 400px
}

.schedule-search i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 16px;
  pointer-events: none
}

.schedule-search input {
  width: 100%;
  padding: 12px 16px 12px 42px;
  border: 1px solid #e8eef7;
  border-radius: 12px;
  font-size: 15px;
  transition: all 0.2s ease;
  background: white
}

.schedule-search input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 162, 234, .1)
}

.schedule-search input::placeholder {
  color: var(--muted)
}

.no-results {
  text-align: center;
  padding: 40px 20px;
  color: var(--muted)
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px
}

th,
td {
  text-align: left;
  padding: 12px 14px
}

thead th {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #536
}

tbody tr {
  background: white;
  border: 1px solid #e9effa
}

tbody tr td:first-child {
  border-radius: 12px 0 0 12px
}

tbody tr td:last-child {
  border-radius: 0 12px 12px 0
}

tbody tr[style*="display: none"] {
  display: none !important
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px
}

.form .field {
  display: grid;
  gap: 6px;
  margin-bottom: 14px
}

.form input,
.form textarea {
  border: 1px solid #dfe6f7;
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  outline: none
}

.form input:focus,
.form textarea:focus {
  box-shadow: 0 0 0 6px var(--ring);
  border-color: var(--primary)
}

.form button,
.form button.btn {
  cursor: pointer !important
}

.form button:hover,
.form button.btn:hover {
  cursor: pointer !important
}

iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 16px
}

/* Contact Image Section */
.contact-image-header a:hover {
  color: var(--secondary);
  text-decoration: underline
}

.contact-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px
}

.contact-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease
}

.contact-image:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 70px rgba(0, 0, 0, .18)
}

/* Footer */
.footer {
  background: var(--secondary);
  color: #c8d0ff;
  margin-top: auto
}

.footer a {
  color: #e3e8ff
}

.footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between
}

.footer .container>div:first-child {
  flex: 1;
  min-width: 200px
}

.footer .container>div:last-child {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.footer small {
  display: block;
  margin-top: 8px;
  font-size: 0.875rem;
  opacity: 0.8
}

.footer small i {
  margin-right: 6px
}

/* Utilities */
.mt-0 {
  margin-top: 0
}

.mb-0 {
  margin-bottom: 0
}

.center {
  text-align: center
}

.hidden {
  display: none
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, .16);
  color: white
}

/* Responsive */
@media (max-width: 980px) {
  .container {
    padding: 0 16px
  }

  .nav {
    height: 72px;
    gap: 16px
  }

  nav {
    justify-content: flex-end
  }

  .menu {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid #e8eef7;
    padding: 12px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
    max-height: calc(100vh - 72px);
    overflow-y: auto
  }

  .menu.open {
    display: flex
  }

  .menu>a {
    padding: 14px 20px;
    border-radius: 0;
    width: 100%;
    display: flex
  }

  .menu>a:hover {
    background: var(--ring);
    padding-left: 24px
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center
  }

  .menu-dropdown {
    width: 100%
  }

  .menu-dropdown-toggle {
    width: 100%;
    padding: 14px 20px;
    border-radius: 0;
    justify-content: space-between
  }

  .menu-dropdown-content {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-top: 1px solid #f0f0f0;
    border-radius: 0;
    margin: 0;
    padding: 0;
    display: none;
    min-width: auto
  }

  .menu-dropdown.active .menu-dropdown-content {
    display: block
  }

  .menu-dropdown-content a {
    padding: 12px 20px 12px 36px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px
  }

  .menu-dropdown-content a:hover {
    padding-left: 40px
  }

  .menu-dropdown-content a i {
    font-size: 14px;
    width: 16px;
    text-align: center
  }

  .hero-slider {
    min-height: 500px
  }

  .hero-carousel {
    height: 500px
  }

  .hero-slide-content {
    min-height: 500px;
    padding: 60px 16px 100px
  }

  .hero-slide-content .hero-title {
    font-size: 36px;
    line-height: 1.2
  }

  .hero-subtitle {
    font-size: 18px
  }

  .hero-nav-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px
  }

  .hero-nav-prev {
    left: 12px
  }

  .hero-nav-next {
    right: 12px
  }

  .hero-dots {
    bottom: 50px
  }

  #banner {
    padding-top: 60px
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 60px 0;
    gap: 40px
  }

  .hero-image-wrapper {
    height: 350px !important
  }

  .title {
    font-size: 36px
  }

  .subtitle {
    font-size: 17px
  }

  .cta {
    flex-direction: column
  }

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

  .hero-card {
    grid-template-columns: 1fr
  }

  .grid-2 {
    grid-template-columns: 1fr
  }

  .grid-3 {
    grid-template-columns: 1fr 1fr
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr
  }

  .contact {
    grid-template-columns: 1fr
  }

  .contact-image-wrapper {
    padding: 0 16px
  }

  .contact-image {
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .1)
  }

  /* Facilities Grid Tablet */
  .facilities-grid {
    gap: 16px
  }

  .facility-card {
    height: 280px
  }

  .facility-content {
    padding: 16px
  }

  .facility-content h3 {
    font-size: 18px;
    margin-bottom: 8px
  }

  .gallery-card {
    flex: 0 0 280px
  }

  .gallery-image {
    height: 180px
  }

  .gallery-content {
    padding: 16px
  }

  .gallery-content h3 {
    font-size: 16px;
    margin-bottom: 8px
  }

  .facility-content p {
    font-size: 13px
  }

  .facilities-slider-wrapper {
    margin: 24px 0;
    padding: 16px 0
  }

  .facilities-slider-track {
    gap: 16px
  }
}

@media (max-width: 640px) {
  .title {
    font-size: 34px
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr
  }

  .slide {
    height: 240px
  }

  /* Facilities Grid Mobile */
  .facilities-grid {
    gap: 16px;
    grid-template-columns: 1fr
  }

  .facility-card {
    height: 260px
  }

  .gallery-card {
    flex: 0 0 260px
  }

  .gallery-image {
    height: 160px
  }

  .galleries-slider-track {
    gap: 12px;
    animation-duration: 25s
  }

  /* Schedule Table */
  .schedule-table-container {
    max-height: 500px
  }

  table {
    font-size: 13px
  }

  th,
  td {
    padding: 10px 8px
  }

  .schedule-controls {
    flex-direction: column;
    gap: 12px
  }

  .schedule-search {
    max-width: 100%
  }

  .filters {
    flex-wrap: wrap;
    gap: 8px
  }

  .filters button {
    padding: 6px 10px;
    font-size: 13px
  }

  /* Floating FAQ Button */
  .floating-faq-btn {
    right: 12px;
    min-height: 55px;
    min-width: 60px;
    font-size: 12px;
    padding: 6px 10px;
    gap: 3px
  }

  .floating-faq-btn i {
    font-size: 16px;
    flex-shrink: 0
  }

  .floating-faq-btn span {
    font-size: 11px
  }

  .floating-faq-btn:hover {
    transform: translateY(-50%) scale(1.03)
  }

  /* Gallery Modal Mobile */
  .gallery-modal-close {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 30px
  }

  .gallery-modal-content {
    max-width: 95%;
    max-height: 85vh
  }

  .gallery-modal-caption {
    padding: 16px;
    max-width: 100%
  }

  .gallery-modal-caption>h3#galleryModalTitle {
    font-size: 20px;
    margin-bottom: 16px
  }

  .gallery-modal-caption #galleryModalDescription {
    font-size: 14px;
    line-height: 1.6
  }

  .gallery-modal-caption #galleryModalDescription p {
    font-size: 14px;
    margin-bottom: 12px
  }

  .gallery-modal-caption #galleryModalDescription h2 {
    font-size: 18px;
    margin: 16px 0 8px
  }

  .gallery-modal-caption #galleryModalDescription h3 {
    font-size: 16px;
    margin: 14px 0 6px
  }

  .gallery-modal-caption #galleryModalDescription ul,
  .gallery-modal-caption #galleryModalDescription ol {
    padding-left: 20px;
    margin: 8px 0 12px
  }

  /* Footer Mobile */
  .footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 16px
  }

  .footer .container>div:first-child {
    width: 100%;
    min-width: auto
  }

  .footer .container>div:last-child {
    width: 100%;
    justify-content: flex-start
  }

  .footer small {
    display: block;
    margin-top: 12px;
    font-size: 0.8rem;
    line-height: 1.5
  }

  .footer small i {
    font-size: 0.875rem
  }

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

  .pill i {
    font-size: 14px
  }
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px
}

th,
td {
  text-align: left;
  padding: 12px 14px
}

th {
  background: #f8fbff;
  color: var(--secondary);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
  border-bottom: 2px solid #e8eef7;
  position: sticky;
  top: 0;
  z-index: 5
}

tbody tr {
  background: white;
  border-radius: 12px;
  transition: all 0.2s ease
}

tbody tr:hover {
  background: #f8fbff;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08)
}

tbody tr[style*="display: none"] {
  display: none !important
}

.schedule-table-container {
  max-height: 600px;
  overflow-y: auto;
  overflow-x: auto;
  border-radius: 12px;
  position: relative
}

.schedule-table-container::-webkit-scrollbar {
  width: 8px;
  height: 8px
}

.schedule-table-container::-webkit-scrollbar-track {
  background: #f5f7fa;
  border-radius: 8px
}

.schedule-table-container::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 8px;
  transition: background 0.2s
}

.schedule-table-container::-webkit-scrollbar-thumb:hover {
  background: #94a3b8
}

.schedule-table-container table thead th {
  position: sticky;
  top: 0;
  z-index: 10
}

/* Floating FAQ Button */
.floating-faq-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  background: var(--primary);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .2);
  z-index: 100;
  transition: all 0.3s ease;
  height: auto;
  min-height: 60px;
  width: auto;
  min-width: 70px;
  padding: 8px 12px;
  overflow: hidden;
  gap: 4px
}

.floating-faq-btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  order: 2
}

.floating-faq-btn span {
  display: inline;
  white-space: nowrap;
  flex-shrink: 0;
  order: 1;
  font-size: 12px;
  line-height: 1.2
}

.floating-faq-btn:hover {
  background: var(--secondary);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .3)
}

/* Share Buttons */
.share-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin: 24px 0;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px
}

.share-label {
  font-weight: 600;
  color: var(--secondary);
  margin-right: 8px
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  color: white
}

.share-wa {
  background: #25D366
}

.share-wa:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, .3)
}

.share-fb {
  background: #1877F2
}

.share-fb:hover {
  background: #166FE5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(24, 119, 242, .3)
}

.share-ig {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%)
}

.share-ig:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(225, 48, 108, .3);
  opacity: 0.9
}

.share-btn i {
  font-size: 18px
}

@media (max-width: 640px) {
  .share-buttons {
    flex-direction: column;
    align-items: stretch
  }

  .share-btn {
    justify-content: center;
    width: 100%
  }
}

/* Article Cards */
.article-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden
}

.article-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem
}

.article-card-content h3 {
  flex-shrink: 0
}

.article-card-content p {
  flex: 1;
  margin-bottom: 1rem
}

.article-card-btn {
  margin-top: auto;
  align-self: flex-start;
  padding: 8px 12px;
  font-size: 14px
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px
}

.testimonial-card {
  background: var(--card);
  border: 1px solid #e8eef7;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.3s ease
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .12);
  border-color: var(--primary)
}

.testimonial-card:hover::before {
  opacity: 1
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #FFD700;
  font-size: 16px
}

.testimonial-text {
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 20px;
  font-style: italic;
  position: relative;
  padding-left: 20px;
  text-align: justify
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -8px;
  font-size: 48px;
  color: var(--primary);
  opacity: .2;
  font-family: Georgia, serif;
  line-height: 1
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid #e8eef7
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 162, 234, .2)
}

.testimonial-info h4 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary)
}

.testimonial-info p {
  margin: 0;
  font-size: 13px;
  color: var(--muted)
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .testimonial-card {
    padding: 24px
  }
}

@media (max-width: 640px) {
  .testimonials-grid {
    gap: 16px
  }

  .testimonial-card {
    padding: 20px
  }

  .testimonial-text {
    font-size: 14px;
    padding-left: 16px
  }

  .testimonial-avatar {
    width: 44px;
    height: 44px;
    font-size: 18px
  }
}

/* FAQ Page */
.faq-toc {
  max-width: 900px;
  margin: 0 auto 3rem auto;
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 1.5rem 2rem
}

.faq-toc h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--secondary);
  font-size: 20px;
  font-weight: 700
}

.faq-toc ol {
  padding-left: 20px;
  margin: 0
}

.faq-toc li {
  margin-bottom: 0.75rem
}

.faq-toc li:last-child {
  margin-bottom: 0
}

.faq-toc a {
  text-decoration: none;
  font-weight: 600;
  color: var(--primary);
  transition: all 0.2s ease
}

.faq-toc a:hover {
  text-decoration: underline;
  color: var(--secondary)
}

.faq-list {
  max-width: 900px;
  margin: 0 auto
}

.faq-item {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.4;
  margin-bottom: 0
}

.faq-question::before {
  content: "Q. ";
  color: var(--primary)
}

.faq-answer {
  line-height: 1.8;
  color: var(--text);
  margin-top: 1rem;
  font-size: 0.95rem
}

.faq-answer p,
.faq-answer ul {
  margin-top: 0;
  margin-bottom: 1rem
}

.faq-answer ul {
  padding-left: 20px
}

.faq-answer ul li {
  margin-bottom: 0.5rem
}

.faq-answer strong {
  color: var(--secondary);
  font-weight: 700
}

/* Premium Gallery Modal */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 24px;
}

.gallery-modal.show {
  opacity: 1;
  visibility: visible;
}

.gallery-modal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: -1;
}

.gallery-modal-content {
  background: white;
  border-radius: 24px;
  max-width: 1000px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: scale(0.9) translateY(20px);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
}

.gallery-modal.show .gallery-modal-content {
  transform: scale(1) translateY(0);
}

.gallery-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: white;
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-modal-close:hover {
  background: var(--primary);
  color: white;
  transform: rotate(90deg);
}

#galleryModalImage {
  width: 100%;
  max-height: 60vh;
  object-fit: contain;
  background: #0f172a;
}

.gallery-modal-body {
  padding: 32px;
  overflow-y: auto;
  background: white;
}

.gallery-modal-caption h3 {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: -0.025em;
}

.gallery-modal-caption #galleryModalDescription {
  color: #475569;
  line-height: 1.8;
  font-size: 16px;
}

/* Scrollbar for modal body */
.gallery-modal-body::-webkit-scrollbar {
  width: 6px;
}

.gallery-modal-body::-webkit-scrollbar-track {
  background: #f1f5f9;
}

.gallery-modal-body::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

.gallery-modal-body::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Unit Gallery Specific */
.unit-gallery-container {
  max-width: 1100px !important;
  width: 100% !important;
  background: white !important;
  border-radius: 24px !important;
  padding: 40px !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: scale(0.9) translateY(20px);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-modal.show .unit-gallery-container {
  transform: scale(1) translateY(0);
}

.unit-gallery-container h3 {
  font-size: 28px !important;
  margin-bottom: 32px !important;
  font-weight: 850 !important;
}

@media (max-width: 640px) {
  .gallery-modal {
    padding: 16px;
  }

  .gallery-modal-content,
  .unit-gallery-container {
    border-radius: 16px;
  }

  .gallery-modal-body {
    padding: 20px;
  }

  .gallery-modal-caption h3 {
    font-size: 18px;
  }
}

/* Floating WhatsApp Multi-Channel */
.wa-chat-container {
  position: fixed;
  bottom: 80px;
  right: 16px;
  z-index: 1000;
}

.wa-chat-menu {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 320px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wa-chat-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.wa-chat-header {
  background: #25D366;
  padding: 20px;
  color: white;
  display: flex;
  align-items: center;
  gap: 15px;
}

.wa-chat-header i {
  font-size: 32px;
}

.wa-header-text strong {
  display: block;
  font-size: 16px;
}

.wa-header-text span {
  font-size: 12px;
  opacity: 0.9;
}

.wa-chat-body {
  padding: 15px;
  background: #f8f9fa;
}

.wa-chat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px;
  background: white;
  border-radius: 12px;
  text-decoration: none;
  color: var(--secondary);
  margin-bottom: 10px;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.wa-chat-item:last-child {
  margin-bottom: 0;
}

.wa-chat-item:hover {
  transform: translateX(-5px);
  border-color: #25D366;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.wa-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.wa-item-icon.info {
  background: #e0f2fe;
  color: #0ea5e9;
}

.wa-item-icon.pengaduan {
  background: #fff1f2;
  color: #f43f5e;
}

.wa-item-text strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

.wa-item-text span {
  font-size: 11px;
  color: var(--muted);
}

.floating-whatsapp {
  background: #25D366;
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, .35);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 10px 20px;
  gap: 10px;
  cursor: pointer;
}

.floating-whatsapp i {
  font-size: 22px;
}

.floating-whatsapp:hover {
  background: #20BA5A;
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(37, 211, 102, .45);
}

@media (max-width: 640px) {
  .wa-chat-container {
    bottom: 75px;
  }

  .wa-chat-menu {
    width: 280px;
    right: -5px;
  }

  .wa-chat-header {
    padding: 15px;
  }

  .floating-whatsapp {
    padding: 8px 16px;
    font-size: 13px;
  }
}

@import url('announcement-slider.css');