:root {
  --kbms-container-max: 1100px;
  --kbms-hpad: clamp(16px, 5vw, 28px);
  --kbms-brand-1: #0d5e2a;
  --kbms-brand-2: #15803d;
  --kbms-accent: #ffd54f;
  --kbms-text: #111827;
  --kbms-muted: #6b7280;
  --kbms-bg: #f7faf7;
  --kbms-white: #ffffff;
  --kbms-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  --kbms-radius: 12px;
  --kbms-font-base: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --kbms-font-head: "Poppins", var(--kbms-font-base);
}

/* =========================================================
    RESET & UTILITAS DASAR
==========================================================*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  font-size: clamp(14px, 1.2vw, 16px);
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  font-family: var(--kbms-font-base);
  color: var(--kbms-text);
  background: var(--kbms-bg);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  margin: 0 0 0.5rem 0;
  line-height: 1.25;
}

p {
  margin: 0 0 1rem 0;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.kbms-container {
  max-width: var(--kbms-container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--kbms-hpad);
  padding-right: var(--kbms-hpad);
  box-sizing: border-box;
}

/* Skip link untuk aksesibilitas */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #004080;
  color: #fff;
  padding: 8px 16px;
  z-index: 1000;
  text-decoration: none;
  border-radius: 4px;
  transition: top 0.3s;
  font-size: 14px;
}

.skip-link:focus {
  top: 10px;
}

/* =========================================================
    HEADER - PERBAIKAN UTAMA
==========================================================*/
.kbms-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, var(--kbms-brand-1), var(--kbms-brand-2));
  color: var(--kbms-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  padding: 10px 0 12px;
}

.kbms-header__inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kbms-header__top {
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.kbms-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  flex: 1;
  min-width: 0;
}

.kbms-brand__logo {
  height: 55px;
  width: auto;
  display: block;
  object-fit: contain;
  background: transparent;
  flex-shrink: 0;
}

.kbms-brand > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kbms-brand__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.kbms-brand__tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.kbms-search {
  width: 100%;
  max-width: 500px;
  min-width: 150px;
  display: flex;
  gap: 6px;
  align-items: center;
  flex: 1;
}

.kbms-search-wrapper {
  width: 100%;
  flex: 1;
  flex-direction: column;
  gap: 4px;
  position: relative;
}

.kbms-search input {
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  width: 100%;
}

.kbms-search button {
  background: var(--kbms-accent);
  color: #1f2937;
  border: none;
  padding: 5px 8px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
}

.suggestions-list {
  color: var(--kbms-text);
  font-size: 14px;
  top: calc(100% + 6px);
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  max-height: 200px;
  overflow-y: auto;
  background: #fff;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  display: none;
}

.suggestions-list li {
  padding: 8px 12px;
  cursor: pointer;
}

.suggestions-list li:hover {
  background-color: #f0f0f0;
}

.kbms-nav {
  padding-left: 4px;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  background: transparent;
}
.kbms-nav a {
  text-align: left;
  padding: 8px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--kbms-white);
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
  background: transparent;
}
.kbms-nav-toggle {
  display: none;
}
 .kbms-nav-toggle span {
    display: block;
    color: var(--kbms-white);
    border-radius: 2px;
  }

.kbms-nav a:hover {
  text-align: left;
  color: var(--kbms-accent);
  transform: translateY(-1px);
}

/* =========================================================
    HERO & SLIDER
==========================================================*/
.kbms-hero {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.kbms-hero .kbms-container {
  overflow-x: hidden;
  border-radius: 0;
  display: flex;
  gap: 20px;
  align-items: center;
}

.kbms-hero-content h1 {
  padding-top: 50px;
  font-family: var(--kbms-font-head);
  font-size: clamp(1rem, 2vw, 3rem);
  margin-bottom: 0.5rem;
}

.kbms-hero-content p {
  color: var(--kbms-muted);
}

.kbms-hero-slider {
  width: 100%;
  max-width: 100%;
}

.kbms-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
}

.kbms-slider__wrapper {
  display: flex;
  will-change: transform;
  transition: transform 0.28s ease-out;
}

.kbms-slide {
  min-width: 100%;
  flex: 0 0 100%;
  height: clamp(300px, 60vh, 750px);
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  touch-action: pan-y;
}

.kbms-slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  object-position: center top;
  user-drag: none;
  -webkit-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  display: block;
}

/* =========================================================
    ABOUT SECTION
==========================================================*/
.about-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 0;
  margin: 40px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text h2 {
  color: #0d5e2a;
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.feature-item {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #0d5e2a;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================================
    SECTION UMUM & GRID
==========================================================*/
.kbms-section {
  padding: 24px 0;
}

.kbms-section h2 {
  font-family: var(--kbms-font-head);
  font-size: clamp(18px, 3vw, 26px);
  text-align: center;
  margin-bottom: 30px;
  color: #0d5e2a;
}

.kbms-grid {
  display: grid;
  gap: 16px;
  margin-top: 12px;
}

.kbms-feature,
.kbms-product {
  display: grid;
  padding: 18px;
  border-radius: var(--kbms-radius);
  background: var(--kbms-white);
  box-shadow: var(--kbms-shadow);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.kbms-feature:hover,
.kbms-product:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.kbms-feature h3,
.kbms-product h3 {
  margin-bottom: 0.25rem;
  font-size: 18px;
}

/* =========================================================
    ANNOUNCEMENT SECTION
==========================================================*/
.kbms-announcement {
  padding: 60px 0;
}

.announcement-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.announcement-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #0d5e2a;
  transition: transform 0.3s ease;
}

.announcement-card:hover {
  transform: translateY(-5px);
}

.announcement-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.announcement-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f9f0;
  border-radius: 8px;
  color: #0d5e2a;
  font-size: 1.5rem;
}

.announcement-card h3 {
  color: #0d5e2a;
  margin: 0;
}

.announcement-date {
  color: #6b7280;
  font-size: 0.9em;
  margin-top: 10px;
  display: block;
}

/* =========================================================
    JAM OPERASIONAL
==========================================================*/
.operational-hours {
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  margin-top: 25px;
  max-width: 100%;
}

.operational-hours__title {
  font-size: 1.25rem;
  margin: 0 0 20px 0;
  color: #0d5e2a;
  font-weight: 600;
  padding-bottom: 12px;
  border-bottom: 1px solid #eaeaea;
  text-align: center;
}

.operational-hours__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}

.operational-hours__time-container {
  flex: 2;
  min-width: 0;
}

.operational-hours__time {
  font-size: 2rem;
  font-weight: 700;
  color: #0d5e2a;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.operational-hours__date {
  font-size: 1rem;
  color: #6b7280;
}

.operational-hours__status-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding-left: 20px;
  border-left: 1px solid #eaeaea;
}

.operational-hours__status-label {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 6px;
}

.operational-hours__status {
  font-weight: 600;
  font-size: 1.1rem;
}

.operational-hours__status--open {
  color: #2e7d32;
}

.operational-hours__status--closed {
  color: #c62828;
}

.operational-hours__status--break {
  color: #f57c00;
}

.operational-hours__schedule-toggle {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  color: #0d5e2a;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 6px;
  margin: 0 auto;
  display: block;
  transition: all 0.2s ease;
  font-weight: 500;
}

.operational-hours__schedule-toggle:hover {
  background: #e9ecef;
  border-color: #ced4da;
  transform: translateY(-1px);
}

.operational-hours__schedule {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eaeaea;
  display: none;
}

.operational-hours__schedule.visible {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.operational-hours__schedule-title {
  font-size: 1.1rem;
  margin: 0 0 15px 0;
  color: #0d5e2a;
  font-weight: 600;
  text-align: center;
}

.operational-hours__schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px;
}

.operational-hours__day {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
}

.operational-hours__day:last-child {
  border-bottom: none;
}

.operational-hours__dayname {
  font-weight: 500;
  color: #4a4a4a;
}

.operational-hours__time-range {
  color: #6b7280;
  text-align: right;
}

/* =========================================================
    FEATURED PRODUCTS
==========================================================*/
.featured-products {
  background: linear-gradient(135deg, #0d5e2a 0%, #15803d 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.products-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.product-highlight {
  background: white;
  color: #333;
  border-radius: 12px;
  padding: 30px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.product-highlight:hover {
  transform: translateY(-10px);
}

.product-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d5e2a;
}

.product-highlight h3 {
  color: #0d5e2a;
  margin-top: 0;
}

.product-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #0d5e2a;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.product-cta:hover {
  background: #15803d;
}

/* =========================================================
    TESTIMONIALS
==========================================================*/
.testimonials {
  padding: 60px 0;
  background: #f8f9fa;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  position: relative;
}

.testimonial-card::before {
  content: "";
  font-size: 5rem;
  color: #0d5e2a;
  opacity: 0.1;
  position: absolute;
  top: 10px;
  left: 20px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #0d5e2a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

/* =========================================================
    TABUNGAN PAGE (scoped)
==========================================================*/
.tabungan-section {
  padding: 36px 0;
  background: transparent;
  color: var(--kbms-text, #111827);
}

.tabungan-section .kbms-container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.tabungan-section > .kbms-container > h2,
.tabungan-section h2#tabungan-title {
  font-family: var(--kbms-font-head);
  font-size: clamp(20px, 2.6vw, 28px);
  margin: 0 0 8px 0;
  color: var(--kbms-brand-1);
}

.tabungan-section .tabungan-lead {
  color: var(--kbms-muted);
  margin-bottom: 18px;
  font-size: 0.98rem;
}

.tabungan-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 16px;
}

.tabungan-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  align-items: start;
  background: var(--kbms-white);
  border-radius: calc(var(--kbms-radius,12px));
  box-shadow: var(--kbms-shadow);
  padding: 14px;
  transition: transform 0.14s ease, box-shadow 0.18s ease;
}

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

.tabungan-media {
  width: 100%;
  overflow: hidden;
  border-radius: calc(var(--kbms-radius,12px) - 4px);
  background: #efefef;
  height: clamp(120px, 24vh, 220px);
}

.tabungan-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  min-height: 120px;
}

.tabungan-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tabungan-title {
  margin: 0;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--kbms-brand-1);
  font-weight: 600;
}

.tabungan-highlights {
  margin: 6px 0;
  padding-left: 18px;
  color: var(--kbms-text);
  font-size: 0.95rem;
}

.tabungan-highlights li {
  margin-bottom: 6px;
}

.tabungan-details {
  margin-top: 8px;
  border-radius: 8px;
}

.tabungan-details summary {
  cursor: pointer;
  list-style: none;
  display: none;
  font-weight: 600;
  padding: 6px 8px;
  border-radius: 8px;
  color: var(--kbms-brand-1);
  background: rgba(21, 128, 61, 0.04);
  transition: background .12s ease, transform .08s ease;
}

.tabungan-details summary:focus {
  outline: 3px solid rgba(21,128,61,0.14);
  outline-offset: 2px;
}

.tabungan-details[open] summary {
  background: rgba(21,128,61,0.08);
}

.tabungan-more {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #fbfdfb;
  color: var(--kbms-text);
  box-shadow: inset 0 1px 0 rgba(0,0,0,0.02);
}

.tabungan-more h4 {
  margin: 6px 0;
  font-size: 1rem;
  color: var(--kbms-brand-1);
}

.tabungan-actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tabungan-btn,
.tabungan-btn--ghost {
  border: none;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
}

.tabungan-btn {
  background: var(--kbms-brand-1);
  color: var(--kbms-white);
  box-shadow: 0 6px 18px rgba(13,94,42,0.12);
}

.tabungan-btn:focus {
  outline: 3px solid rgba(255,213,79,0.18);
  outline-offset: 2px;
}

.tabungan-btn--ghost {
  background: transparent;
  color: var(--kbms-brand-1);
  border: 1px solid rgba(13,94,42,0.12);
}

.tabungan-btn--ghost:focus {
  outline: 3px solid rgba(13,94,42,0.12);
  outline-offset: 2px;
}

/* =========================================================
    FOOTER
==========================================================*/
.kbms-footer {
  margin-top: 24px;
  background: #0b1220;
  color: #cbd5e1;
  padding: 24px 0 0;
}

.kbms-footer__inner {
  display: grid;
  gap: 18px;
}

.kbms-footer h4 {
  color: #e2e8f0;
  margin-bottom: 8px;
}

.kbms-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.kbms-footer a {
  color: #cbd5e1;
}

.kbms-footer a:hover {
  color: var(--kbms-accent);
}

.kbms-footer__bottom {
  padding: 12px 0;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
}

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* =========================================================
    RESPONSIVE DESIGN - PERBAIKAN UTAMA
==========================================================*/

/* Desktop (≥ 1025px) */
@media (min-width: 1025px) {
  .kbms-brand > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
  .kbms-header__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .kbms-search {
    max-width: 400px;
    margin-left: auto;
    margin-right: 20px;
  }
  
  .kbms-nav-toggle {
    display: none;
  }
  
  .kbms-nav {
    display: flex;
  }
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .kbms-brand > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-icon {
  font-size: 2.6rem;
  margin-bottom: 10px;
  color: #0d5e2a;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

  .about-content {
    gap: 30px;
  }
  
  .kbms-header__top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 15px;
  }
  
  .kbms-search {
    grid-column: 1 / span 3;
    order: 3;
    max-width: 100%;
    margin-top: 10px;
  }
}

/* Mobile (≤ 767px) - Fokus pada perbaikan untuk 720px */
@media (max-width: 767px) {
  .kbms-brand > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
  .kbms-container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .kbms-header__top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }
  
  .kbms-brand {
    max-width: calc(100% - 50px);
  }
  
  .kbms-brand__title {
    font-size: 1.5rem;
  }
  
  .kbms-brand__tagline {
    font-size: 1rem;
    display: block;
  }
  
  .kbms-search {
    order: 3;
    grid-column: 1 / span 2;
    max-width: 100%;
    margin-top: 10px;
  }
  
 .kbms-nav {
  display: none;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: linear-gradient(180deg, var(--kbms-brand-1), var(--kbms-brand-2));
  border-radius: 8px;
  margin-top: 12px;
}

.kbms-nav.is-open {
  display: flex;
}

.kbms-nav a {
  width: 100%;
  text-align: left;
  padding: 10px;
}

/* Tombol hamburger */
.kbms-nav-toggle {
  background: transparent;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
  width: 32px;   /* cukup kecil */
  height: 24px;  /* tinggi pas untuk 3 garis */
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 0;
}

/* Garis-garis hamburger */
.kbms-nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;                 /* <---- ini yang bikin garis kelihatan */
  background: var(--kbms-white);
  border-radius: 2px;
}
  
  .features-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px;
  }
  
  .feature-item {
    padding: 14px;
  }
  
  .feature-icon {
    font-size: 1.5rem;
    height: 35px;
  }
  
  .operational-hours__main {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .operational-hours__status-container {
    border-left: none;
    border-top: 1px solid #eaeaea;
    padding-left: 0;
    padding-top: 15px;
    width: 100%;
  }

  .operational-hours__time {
    font-size: 1.8rem;
  }
  
  .kbms-slide {
    height: clamp(250px, 50vh, 600px);
  }
}
@media (max-width: 767px) {
   .about-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .tabungan-card {
    grid-template-columns: 1fr;   /* jadi 1 kolom */
  }

  .tabungan-media {
    order: -1; /* gambar tetap muncul di atas */
  }

  .tabungan-body {
    padding: 16px;
  }
}

/* Mobile kecil (≤ 480px) */
@media (max-width: 480px) {
  
  .kbms-brand__title {
    font-size: 1rem;
  }
  
  .kbms-brand__tagline {
    font-size: 0.7rem;
  }
  
  .kbms-brand__logo {
    height: 45px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .kbms-slide {
    height: clamp(200px, 45vh, 500px);
  }
  
  .operational-hours__time {
    font-size: 1.6rem;
  }
  
  .product-icon {
    font-size: 2rem;
    height: 60px;
  }
}
