@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
  --brand: #2bb3a3;
  --brand2: #1fa58e;
  --accent: #14c9b4;
  --light: #f4f8f9;
  --dark: #0b2522;
  --text: #2a3b3b
}

body {
  margin: 0;
  background: #f8fbfa;
  color: var(--text);
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif
}

html,
body {
  height: 100%
}

body:not(.admin-layout) {
  min-height: 100vh;
  display: flex;
  flex-direction: column
}

body:not(.admin-layout)>header,
body:not(.admin-layout)>section,
body:not(.admin-layout)>main {
  padding-bottom: 24px
}

.navbar {
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .06);
  border-bottom: 1px solid #eef4f3;
  position: sticky;
  top: 0;
  z-index: 1000
}

.navbar .container,
.navbar .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 64px
}

.navbar .nav-link,
.navbar-brand {
  color: #0b6d62
}

.navbar .nav-link {
  opacity: .92;
  transition: .2s
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  opacity: 1;
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 4px
}

.navbar-brand {
  font-weight: 700;
  color: #123c37
}

.navbar-toggler {
  border: none
}

.navbar-toggler:focus {
  box-shadow: none
}

/* Ensure burger menu visible on light navbar background */
.navbar.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(11,109,98,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}
.navbar.navbar-dark .navbar-toggler {
  border-color: rgba(11,109,98,.35)
}

/* Fix brand color on hover for dark variant rendered on white background */
.navbar.navbar-dark .navbar-brand,
.navbar.navbar-dark .navbar-brand:hover,
.navbar.navbar-dark .navbar-brand:focus {
  color: #123c37
}

/* Keep brand and toggler aligned; ensure toggler sits at far right on mobile */
.navbar .navbar-brand { display: flex; align-items: center; gap: .5rem; padding: .5rem 0; flex: 1 1 auto; min-width: 0; white-space: nowrap }
.navbar .navbar-toggler { flex: 0 0 auto; display: flex; align-items: center; height: 44px; padding: .25rem .5rem }
.navbar .navbar-brand { font-size: clamp(.95rem, 1rem + .3vw, 1.25rem) }
.navbar .navbar-toggler-icon { width: 1.75rem; height: 1.75rem; background-size: 1.75rem 1.75rem }
.navbar .navbar-brand { line-height: 1 }
.navbar .navbar-toggler { margin-top: 0 !important; margin-bottom: 0 !important; align-self: center }
@media (max-width: 991.98px) {
  .navbar .container, .navbar .container-fluid { display: flex; align-items: center; flex-wrap: wrap; justify-content: space-between }
  .navbar .navbar-toggler { margin-left: auto }
  .navbar .navbar-collapse { flex-basis: 100%; flex-grow: 1; width: 100%; background: #fff; border-radius: 12px; margin-top: .5rem; box-shadow: 0 10px 22px rgba(0,0,0,.06); overflow: hidden }
  .navbar .navbar-nav { flex-direction: column; align-items: stretch; padding: .25rem 0 }
  .navbar .navbar-nav.ms-auto { margin-left: 0 !important }
  .navbar .nav-link { padding: .75rem 1rem }
}
/* Ensure brand+toggler stay on the same row for narrow phones */
@media (max-width: 480px) {
  .navbar .container, .navbar .container-fluid { min-height: 56px }
  .navbar .navbar-brand { max-width: calc(100% - 64px); overflow: hidden; text-overflow: ellipsis; padding: 0 }
  .logo { height: 34px }
  .navbar .navbar-toggler { height: 56px; padding: .25rem .6rem }
  .navbar .navbar-toggler-icon { width: 1.6rem; height: 1.6rem; background-size: 1.6rem 1.6rem; margin: 0 }
}
@media (max-width: 390px) {
  .navbar .container, .navbar .container-fluid { min-height: 54px }
  .navbar .navbar-brand { padding: 0; max-width: calc(100% - 64px) }
  .logo { height: 32px }
  .navbar .navbar-toggler { height: 54px }
}

/* Desktop/Laptop: hide burger and show full menu */
@media (min-width: 992px) {
  .navbar .navbar-toggler { display: none !important }
  .navbar .navbar-collapse { display: flex !important; flex-basis: auto !important; width: auto !important; box-shadow: none; background: transparent; margin-top: 0 }
  .navbar .navbar-nav { flex-direction: row; align-items: center; gap: .25rem }
  .navbar .nav-link { padding: .5rem .75rem }
}
@media (max-width: 360px) {
  .navbar .navbar-brand { font-size: .95rem }
  .logo { height: 32px }
  .navbar .navbar-toggler { height: 40px; padding: .2rem .45rem }
}

/* Smooth slide animation for collapse area */
.navbar .navbar-collapse.collapse { transition: height .3s ease }

/* Clean link style */
.navbar .nav-link { border-radius: 10px }
.navbar .nav-link:hover { background: #eef7f5 }

.btn-brand {
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: .6rem 1rem;
  box-shadow: 0 8px 18px rgba(31, 165, 142, .25);
  transition: .2s
}

.btn-brand:hover {
  background: linear-gradient(135deg, var(--brand2), var(--brand));
  transform: translateY(-1px)
}

.hero {
  position: relative;
  background: linear-gradient(180deg, #eaf7f5, #ffffff);
  overflow: hidden
}

.hero::before {
  content: '';
  position: absolute;
  inset: auto -10% auto -10%;
  top: -120px;
  height: 240px;
  background: radial-gradient(600px 120px at 20% 30%, rgba(43, 179, 163, .25), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0
}

.hero::after {
  content: '';
  position: absolute;
  right: -5%;
  bottom: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(20, 201, 180, .18), transparent 60%);
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0
}

.hero-banner {
  max-width: 860px;
  margin: 1rem auto 2rem
}

@media(min-width:992px) {
  .hero-banner {
    max-width: 780px
  }
}

@media(max-width:576px) {
  .hero-banner {
    max-width: 100%
  }
}

.hero-banner .carousel-item img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .08)
}

.hero-slider img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .08)
}

@media (max-width:768px) {
  .hero-slider img {
    height: 320px
  }
}

@media (max-width:480px) {
  .hero-slider img {
    height: 220px
  }
}

.hero-slider {
  margin-bottom: 1.5rem
}

.hero .container {
  position: relative;
  z-index: 1
}

.hero-title {
  font-weight: 700;
  color: #123c37;
  font-size: clamp(1.6rem, 3.8vw, 2.6rem);
  line-height: 1.25
}
@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.3rem, 5.2vw, 2rem)
  }
}
@media (max-width: 360px) {
  .hero-title {
    font-size: clamp(1.2rem, 5.6vw, 1.8rem)
  }
}

.hero-actions {
  gap: .6rem
}

.search-group {
  position: relative
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #6d8f8a;
  font-size: 18px
}

@keyframes float {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }

  100% {
    transform: translateY(0)
  }
}

.card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
  transition: .25s;
  background: #fff
}

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

.card img {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px
}

.category-card {
  transition: .25s;
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .5)
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .12)
}

.category-card .icon {
  font-size: 28px;
  color: var(--brand)
}

.cat-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  box-shadow: 0 10px 24px rgba(31, 165, 142, .25);
  border: 2px solid rgba(255, 255, 255, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: .25s
}

.cat-icon::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(20, 201, 180, .18), transparent 60%);
  filter: blur(6px);
  z-index: 0
}

.cat-icon>* {
  position: relative;
  z-index: 1
}

.cat-icon:hover {
  transform: translateY(-2px)
}

.catalog-hero {
  background: linear-gradient(180deg, #f5fbfa, #ffffff);
  border-radius: 16px;
  padding: 1.25rem 1.25rem;
  margin-bottom: 1rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .06)
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease
}

.reveal-visible {
  opacity: 1;
  transform: none
}

.badge-media {
  background: #e8fffb;
  color: #0b6d62;
  border-radius: 999px;
  padding: .25rem .6rem
}

.stat {
  background: #f0f6f6;
  border-radius: 12px;
  padding: .5rem 1rem;
  margin-right: .5rem
}

.footer {
  background: #f6fbfa;
  color: #607d8b
}

.carousel-caption {
  background: rgba(0, 0, 0, .35);
  border-radius: 10px;
  padding: .6rem 1rem
}

.search-input {
  border-radius: 999px;
  border: 1px solid #d9e3e8;
  padding: .7rem 1.1rem;
  transition: .2s
}

.search-group .search-input {
  padding-left: 2.2rem
}

.btn-outline-brand {
  border: 1px solid var(--brand);
  color: var(--brand);
  background: transparent;
  border-radius: 16px;
  padding: .6rem 1rem;
  transition: .2s
}

.btn-outline-brand:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-1px)
}

.search-input:focus {
  outline: none;
  box-shadow: 0 0 0 .25rem rgba(43, 179, 163, .25);
  border-color: var(--brand)
}

.menu-card {
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(6px)
}

.menu-card .icon {
  font-size: 30px;
  color: var(--brand)
}

.media-thumb {
  width: 100%;
  height: 150px;
  object-fit: cover
}

.catalog-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px
}

.thumb-wrap {
  position: relative
}

.badge-overlay {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2
}

.star {
  font-size: 26px;
  color: #cfd8dc;
  cursor: pointer;
  transition: .15s
}

.star.active {
  color: var(--brand)
}

.pdf-frame {
  width: 100%;
  height: 580px;
  border: 1px solid #e0e0e0;
  border-radius: 12px
}

.poster-img {
  max-width: 100%;
  border-radius: 16px
}

.logo {
  height: 44px
}

.section-title {
  font-weight: 700;
  color: #123c37
}

@media (max-width:768px) {
  .media-thumb {
    height: 120px
  }

  .pdf-frame {
    height: 420px
  }

  .logo {
    height: 38px
  }
}

/* Admin UI */
.admin-layout {
  min-height: 100vh;
  display: flex;
  padding-left: 250px
}

.dashboard-layout {
  display: flex;
  min-height: 100vh;
  padding-left: 250px
}

.admin-sidebar {
  width: 250px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #2bb3a3, #1f8f84);
  color: #fff;
  box-shadow: 0 10px 28px rgba(31, 165, 142, .25);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 1040;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px
}

.admin-brand {
  display: flex;
  align-items: center;
  padding: .75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, .15)
}

.admin-brand img {
  width: 52px;
  height: 52px;
  min-width: 52px;
  margin-right: .6rem;
  background: #ffffff;
  padding: 6px;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .12);
  border: 1px solid rgba(255, 255, 255, .95);
  object-fit: contain;
  overflow: hidden;
  display: block
}

.admin-brand .title {
  font-weight: 700;
  letter-spacing: .3px
}

.admin-nav .nav-link {
  color: #eaf7f5;
  padding: .6rem 1rem;
  border-radius: 16px;
  margin: .2rem .6rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none !important;
  position: relative;
  transition: .25s
}

.admin-nav {
  list-style: none;
  padding: 0;
  margin: 0
}

.admin-nav .nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, .26);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
  transform: translateX(2px)
}

.admin-nav .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, .20);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
  border-radius: 16px;
  transform: translateX(2px)
}

.admin-nav .nav-link::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--brand), var(--brand2));
  opacity: 0;
  transition: .25s
}

.admin-nav .nav-link:hover::before,
.admin-nav .nav-link.active::before {
  opacity: 1
}

.admin-main {
  flex: 1;
  min-width: 0;
  padding: 1.5rem
}

.admin-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem
}

.admin-toggle {
  border: 1px solid rgba(43, 179, 163, .6);
  background: #fff;
  color: var(--brand);
  border-radius: 12px;
  padding: .4rem .6rem
}

.admin-stats .card {
  background: #ffffff;
  border: 1px solid #e7f3f1
}

.admin-stats .card .text-secondary {
  color: #6d8f8a !important
}

.admin-collapsed .admin-sidebar {
  width: 76px
}

.admin-collapsed .admin-nav .nav-link .text {
  display: none
}

.admin-collapsed .admin-brand .title {
  display: none
}

.admin-collapsed .admin-layout,
.admin-collapsed .dashboard-layout {
  padding-left: 76px
}

.admin-collapsed .admin-nav .nav-link {
  gap: 0;
  justify-content: center
}

.admin-nav .bi {
  font-size: 19px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #fff;
  box-shadow: 0 8px 18px rgba(31, 165, 142, .22);
  transition: .25s
}

.admin-nav .nav-link:hover .bi,
.admin-nav .nav-link.active .bi {
  transform: scale(1.05);
  background: #ffffff;
  color: var(--brand);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .12)
}

.admin-sidebar::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .08;
  background:
    radial-gradient(500px 120px at 20% 10%, var(--brand), transparent 70%),
    radial-gradient(400px 100px at 80% 90%, var(--brand2), transparent 70%)
}

.table thead th {
  font-weight: 600
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 1rem;
  margin-bottom: 1rem;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .06);
  border: 1px solid #eef4f3
}

.admin-topbar h5 {
  margin: 0;
  color: #123c37;
  font-weight: 700
}

.admin-topbar .actions {
  display: flex;
  align-items: center;
  gap: .6rem
}

.admin-topbar .notif {
  border: none;
  background: #f4fbfa;
  color: #0b6d62;
  border-radius: 12px;
  padding: .4rem .6rem;
  box-shadow: 0 6px 16px rgba(31, 165, 142, .18)
}

.admin-topbar .avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover
}

.admin-profile {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, .15)
}

.admin-profile .name {
  font-weight: 600
}

.admin-profile .role {
  font-size: .8rem;
  opacity: .9
}

.stat-card .icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 10px 20px rgba(31, 165, 142, .25)
}


.stat-card {
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
  transition: .2s
}

.stat-card:hover {
  transform: translateY(-2px)
}

.stat-card.materi .icon-wrap {
  background: linear-gradient(135deg, #2bb3a3, #1f8f84)
}

.stat-card.video .icon-wrap {
  background: linear-gradient(135deg, #1e88e5, #42a5f5)
}

.stat-card.visitors .icon-wrap {
  background: linear-gradient(135deg, #8e24aa, #ab47bc)
}

.stat-card.download .icon-wrap {
  background: linear-gradient(135deg, #fb8c00, #ffa726)
}

.stat-card .title {
  color: #6d8f8a
}

.stat-card .value {
  font-size: 1.4rem;
  font-weight: 700;
  color: #123c37
}

.table-modern.table {
  border: 1px solid #eef4f3
}

.table-modern.table thead {
  background: #f6fbfa
}

.table-modern.table tbody tr {
  transition: .2s
}

.table-modern.table tbody tr:hover {
  background: #f9fdfc
}

.table-controls {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: .75rem;
  align-items: center
}

.site-footer {
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, .25)
}

.site-footer h5,
.site-footer h6 {
  color: #fff
}

.footer-links a {
  color: #eaf7f5;
  text-decoration: none;
  display: inline-block;
  padding: .15rem 0;
  transition: .2s
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px
}

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, .25);
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  color: #fff
}

.site-footer .container {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important
}

.footer-links {
  margin: 0;
  padding: 0
}

.footer-links li {
  margin-bottom: .35rem
}

.footer-copy .container {
  padding-top: .7rem;
  padding-bottom: .7rem
}

.site-footer {
  margin-top: auto
}

.table-controls .form-control,
.table-controls .form-select {
  border-radius: 12px
}

@media (max-width:768px) {
  .admin-topbar {
    padding: .6rem .75rem
  }

  .stat-card .value {
    font-size: 1.2rem
  }
}

.login-page {
  position: relative
}

.login-header .fw-bold {
  color: #123c37
}

.login-card {
  background: rgba(255, 255, 255, .75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .12)
}

.login-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(31, 165, 142, .25);
  font-size: 28px
}

.login-form .form-control {
  border-radius: 14px
}

.input-with-icon {
  position: relative
}

.input-with-icon .bi {
  position: absolute;
  left: 12px;
  top: 38px;
  color: #6d8f8a;
  font-size: 18px
}

.input-with-icon input.form-control {
  padding-left: 2.2rem
}

.login-card .small {
  color: #0b6d62
}

.dashboard-hero {
  background: linear-gradient(180deg, #f5fbfa, #ffffff);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .06);
  position: relative;
  overflow: hidden
}

.dashboard-hero::before {
  content: '';
  position: absolute;
  right: -6%;
  top: -40px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(20, 201, 180, .18), transparent 60%);
  filter: blur(6px)
}

.stat-card {
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(8px);
  border: 1px solid #e7f3f1
}

.stat-card .icon-wrap {
  animation: float 6s ease-in-out infinite
}

.chart-card {
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(8px);
  border: 1px solid #e7f3f1;
  position: relative
}

.chart-card::after {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  opacity: .6;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px
}

@media (max-width:768px) {
  .dashboard-hero {
    padding: .75rem
  }

  .stat-card .value {
    font-size: 1.2rem
  }
}

.admin-main {
  padding-top: 1rem
}

@media(max-width:992px) {
  .admin-sidebar {
    width: 220px
  }

  .admin-layout,
  .dashboard-layout {
    padding-left: 220px
  }
}

@media(max-width:768px) {

  .admin-layout,
  .dashboard-layout {
    padding-left: 0
  }
}

html,
body {
  height: 100%
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh
}

main {
  flex: 1
}

footer {
  margin-top: auto
}
 
.wa-float {
  position: fixed;
  bottom: 30px !important;
  right: 30px !important;
  left: auto !important;
  z-index: 9999;
  display: inline-block;
  inset: auto 30px 30px auto !important
}
.wa-float img {
  width: 55px !important;
  height: 55px !important;
  border-radius: 50%;
  display: block;
  transition: 0.3s
}
.wa-float img:hover { transform: scale(1.1) }

.banner-link {
  position: absolute;
  inset: 0;
  z-index: 5;
}

@media (max-width: 576px) {
  .wa-float {
    bottom: 24px;
    right: 24px
  }
}

.survey-page .survey-badge {
  display: inline-block;
  padding: .35rem .8rem;
  border-radius: 999px;
  background: #e9f8f5;
  color: #0b6d62;
  font-weight: 600;
  font-size: .82rem;
  border: 1px solid #cdece5
}

.survey-page .survey-card {
  border: 1px solid #e3f1ee;
  box-shadow: 0 14px 28px rgba(11, 109, 98, .08)
}

.survey-page .survey-legend {
  background: linear-gradient(180deg, #f7fcfb, #ffffff);
  border: 1px solid #e2f1ed;
  border-radius: 12px;
  padding: .85rem 1rem
}

.survey-page .survey-section {
  border: 1px solid #eaf3f1;
  border-radius: 14px;
  padding: 1rem;
  margin-bottom: 1rem;
  background: #fff
}

.survey-page .survey-section h5 {
  color: #123c37;
  font-weight: 700;
  font-size: 1.02rem
}

.survey-page .survey-question .form-label {
  font-weight: 500;
  color: #244240
}

.survey-page .form-control,
.survey-page .form-select {
  border-radius: 12px;
  border-color: #d8e8e4
}

.survey-page .form-control:focus,
.survey-page .form-select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 .2rem rgba(43, 179, 163, .18)
}

.survey-summary .stat {
  min-width: 170px
}
