/* ============================================
   KBP MODERN REDESIGN - Custom CSS Override
   Kota Baru Parahyangan - Premium Real Estate
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  --kbp-primary: #1a3c5e;
  --kbp-primary-light: #2d5f8a;
  --kbp-accent: #c9a84c;
  --kbp-accent-light: #e4c76b;
  --kbp-dark: #0f1923;
  --kbp-body: #f8f9fb;
  --kbp-white: #ffffff;
  --kbp-text: #3a4553;
  --kbp-text-light: #6b7a8d;
  --kbp-border: rgba(0,0,0,0.06);
  --kbp-shadow: 0 4px 30px rgba(0,0,0,0.08);
  --kbp-shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --kbp-radius: 16px;
  --kbp-radius-sm: 10px;
  --kbp-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* === GLOBAL === */
body {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  color: var(--kbp-text);
  background: var(--kbp-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Playfair Display', serif !important;
  color: var(--kbp-primary);
  font-weight: 600;
  letter-spacing: -0.02em;
}

h5, h6, .h5, .h6 {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

p {
  line-height: 1.8;
  color: var(--kbp-text-light);
  font-size: 0.95rem;
}

a {
  color: var(--kbp-accent);
  transition: var(--kbp-transition);
}
a:hover {
  color: var(--kbp-primary);
  text-decoration: none;
}

img {
  transition: var(--kbp-transition);
}

.section-title {
  position: relative;
}

/* === TOPBAR === */
.kbp-topbar {
  background: var(--kbp-dark);
  padding: 8px 0;
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.kbp-topbar a {
  color: rgba(255,255,255,0.6);
  transition: var(--kbp-transition);
}
.kbp-topbar a:hover {
  color: var(--kbp-accent);
}

/* === NAVBAR === */
.kbp-navbar {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.06);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 9999;
  border-bottom: 1px solid var(--kbp-border);
  transition: var(--kbp-transition);
}
.kbp-navbar .navbar {
  padding: 12px 0;
}
.kbp-navbar .navbar-brand img {
  max-height: 45px;
  transition: var(--kbp-transition);
}
.kbp-navbar .nav-link {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--kbp-primary) !important;
  padding: 8px 18px !important;
  position: relative;
  transition: var(--kbp-transition);
}
.kbp-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--kbp-accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.kbp-navbar .nav-link:hover::after,
.kbp-navbar .nav-link.active::after {
  transform: scaleX(1);
}
.kbp-navbar .nav-link.active {
  color: var(--kbp-accent) !important;
}

.kbp-navbar .navbar-toggler {
  padding: 8px 12px;
  background: rgba(26,60,94,0.05);
  border-radius: 8px;
  transition: var(--kbp-transition);
}

.kbp-navbar .navbar-toggler:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.2);
}

.kbp-navbar .navbar-toggler-icon {
  width: 1.2em;
  height: 1.2em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2826, 60, 94, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.kbp-navbar .navbar-toggler:hover {
  background: rgba(201,168,76,0.15);
}

@media (max-width: 991px) {
  .kbp-navbar .navbar-collapse {
    background: var(--kbp-white);
    margin-top: 15px;
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--kbp-shadow-lg);
    border: 1px solid var(--kbp-border);
  }
  .kbp-navbar .nav-link {
    padding: 12px 0 !important;
    border-bottom: 1px solid var(--kbp-border);
  }
  .kbp-navbar .nav-link:last-child {
    border-bottom: none;
  }
  .kbp-navbar .nav-link::after {
    display: none;
  }
}

/* === HERO / CAROUSEL === */
.kbp-hero {
  position: relative;
}
.kbp-hero .carousel-item {
  height: 85vh;
  min-height: 500px;
  max-height: 800px;
}
.kbp-hero .carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  filter: brightness(0.6);
}
.kbp-hero .carousel-caption {
  bottom: 0; top: 0; left: 0; right: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to top, rgba(15,25,35,0.7) 0%, rgba(15,25,35,0.2) 50%, transparent 100%);
}
.kbp-hero .carousel-caption .hero-content {
  text-align: center;
  max-width: 800px;
}
.kbp-hero .carousel-caption h3 {
  font-family: 'Playfair Display', serif !important;
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff !important;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.kbp-hero .carousel-caption h4 {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85) !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.kbp-hero .carousel-control-prev,
.kbp-hero .carousel-control-next {
  width: 70px;
  height: 100%;
  top: 0;
  bottom: 0;
  transform: none;
  opacity: 1;
  align-items: center;
}
.kbp-hero .carousel-control-prev { left: 20px; }
.kbp-hero .carousel-control-next { right: 20px; }

/* Arrow Button */
.kbp-carousel-arrow {
  width: 54px;
  height: 54px;
  background: rgba(255,255,255,0.12) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--kbp-transition);
  color: #fff;
  font-size: 1.1rem;
}
.kbp-carousel-arrow:hover {
  background: var(--kbp-accent) !important;
  border-color: var(--kbp-accent);
  color: var(--kbp-dark);
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}

@media (max-width: 768px) {
  .kbp-hero .carousel-item { height: 60vh; min-height: 350px; }
  .kbp-hero .carousel-caption h3 { font-size: 2rem; }
  .kbp-hero .carousel-caption h4 { font-size: 0.85rem; }
  .kbp-carousel-arrow { width: 40px; height: 40px; font-size: 0.9rem; }
  .kbp-hero .carousel-control-prev { left: 10px; }
  .kbp-hero .carousel-control-next { right: 10px; }
}

/* === ARTICLE DETAIL PAGE === */
.kbp-article-hero {
  position: relative;
}
.kbp-article-hero .carousel-item {
  height: 50vh;
  min-height: 350px;
  max-height: 500px;
}
.kbp-article-hero .carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  filter: brightness(0.55);
}
.kbp-article-hero .carousel-caption {
  bottom: 0; top: 0; left: 0; right: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to top, rgba(15,25,35,0.7) 0%, transparent 60%);
}
.kbp-article-hero .carousel-caption h3 {
  font-family: 'Playfair Display', serif !important;
  font-size: 3rem;
  font-weight: 700;
  color: #fff !important;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* Article Content Area */
.kbp-article-content {
  background: var(--kbp-white);
  padding: 60px 0;
}
.kbp-article-content .section-title {
  position: relative;
}
.kbp-article-content h1 {
  font-size: 2.2rem;
  color: var(--kbp-primary);
}
.kbp-article-content h2 {
  font-size: 1.6rem;
  color: var(--kbp-primary);
  margin-top: 30px;
}
.kbp-article-content h3 {
  font-size: 1.3rem;
  color: var(--kbp-primary);
}

/* Article Spec Table */
.kbp-article-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--kbp-border);
  border-radius: var(--kbp-radius-sm);
  overflow: hidden;
  margin: 20px 0;
  box-shadow: var(--kbp-shadow);
}
.kbp-article-content table th {
  background: var(--kbp-primary);
  color: #fff;
  padding: 12px 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.kbp-article-content table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--kbp-border);
  font-size: 0.9rem;
  color: var(--kbp-text);
  vertical-align: top;
  border: none;
  border-bottom: 1px solid var(--kbp-border);
}
.kbp-article-content table tr:nth-child(even) {
  background: rgba(248,249,251,0.7);
}
.kbp-article-content table tr:hover {
  background: rgba(201,168,76,0.05);
}
.kbp-article-content table td:first-child {
  font-weight: 600;
  color: var(--kbp-primary);
  white-space: nowrap;
  width: 180px;
  background: rgba(26,60,94,0.03);
}

/* Article Image Gallery */
.kbp-article-content .card-img-top {
  border-radius: var(--kbp-radius-sm);
  margin-bottom: 15px;
  box-shadow: var(--kbp-shadow);
  transition: transform 0.5s ease;
}
.kbp-article-content .card-img-top:hover {
  transform: scale(1.02);
}

/* Article Location List */
.kbp-article-content .locations-container {
  background: var(--kbp-body);
  border-radius: var(--kbp-radius);
  padding: 30px;
  margin: 20px 0;
}
.kbp-article-content .category {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--kbp-accent);
  border-bottom: 2px solid var(--kbp-accent);
  padding-bottom: 8px;
  margin-top: 24px;
  margin-bottom: 12px;
}
.kbp-article-content .location li {
  padding: 3px 0;
  font-size: 0.9rem;
  color: var(--kbp-text-light);
}

/* Article Floor Plan Box */
.kbp-article-content div[style*="background-color: #f0f0f0"] {
  background: var(--kbp-body) !important;
  border-radius: var(--kbp-radius) !important;
  border: 1px solid var(--kbp-border);
  overflow: hidden;
}

/* Related Post Section */
.kbp-related-posts {
  background: var(--kbp-body);
  padding: 60px 0;
}
.kbp-related-posts h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

/* Article Feature Check List */
.kbp-article-content h5 .fa-check {
  color: var(--kbp-accent);
  margin-right: 8px;
}

/* Article btn-danger override for brochure */
.btn-danger {
  background: var(--kbp-primary) !important;
  border-color: var(--kbp-primary) !important;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--kbp-transition);
}
.btn-danger:hover {
  background: var(--kbp-primary-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26,60,94,0.3);
}

/* === BUTTONS === */
.btn-primary {
  background: var(--kbp-accent) !important;
  border-color: var(--kbp-accent) !important;
  color: var(--kbp-dark) !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: 50px;
  transition: var(--kbp-transition);
  box-shadow: 0 4px 15px rgba(201,168,76,0.3);
}
.btn-primary:hover {
  background: var(--kbp-primary) !important;
  border-color: var(--kbp-primary) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26,60,94,0.3);
}
.btn-success {
  background: #25D366 !important;
  border-color: #25D366 !important;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  transition: var(--kbp-transition);
}
.btn-success:hover {
  background: #1da851 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.3);
}
.btn-outline-primary {
  border-color: var(--kbp-accent) !important;
  color: var(--kbp-accent) !important;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  transition: var(--kbp-transition);
}
.btn-outline-primary:hover,
.btn-outline-primary.active {
  background: var(--kbp-accent) !important;
  color: var(--kbp-dark) !important;
}

/* === SECTIONS === */
.kbp-section {
  padding: 80px 0;
  position: relative;
}
.kbp-section-alt {
  background: var(--kbp-white);
}
.kbp-section-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--kbp-accent);
  margin-bottom: 8px;
  display: inline-block;
}
.kbp-section-title {
  font-size: 2.5rem;
  color: var(--kbp-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}
.kbp-section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--kbp-accent), var(--kbp-accent-light));
  border-radius: 3px;
  margin-bottom: 30px;
}

/* === CARDS === */
.kbp-card {
  background: var(--kbp-white);
  border-radius: var(--kbp-radius);
  overflow: hidden;
  box-shadow: var(--kbp-shadow);
  transition: var(--kbp-transition);
  border: 1px solid var(--kbp-border);
}
.kbp-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--kbp-shadow-lg);
}
.kbp-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.kbp-card:hover img {
  transform: scale(1.05);
}
.kbp-card .card-body {
  padding: 24px;
}
.kbp-card .card-body h5 {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.1rem;
  color: var(--kbp-primary);
}

/* === IMAGE GRID === */
.kbp-img-grid {
  border-radius: var(--kbp-radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--kbp-shadow);
}
.kbp-img-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.kbp-img-grid:hover img {
  transform: scale(1.05);
}

/* === PROMO CARD === */
.kbp-promo-card {
  background: linear-gradient(135deg, var(--kbp-white) 0%, #f0f4fa 100%);
  border-radius: var(--kbp-radius);
  padding: 40px;
  border: 1px solid var(--kbp-border);
  box-shadow: var(--kbp-shadow);
  position: relative;
  overflow: hidden;
}
.kbp-promo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--kbp-accent), var(--kbp-primary));
  border-radius: 4px 0 0 4px;
}
.kbp-promo-card h2 {
  color: var(--kbp-primary);
  font-size: 1.8rem;
}
.kbp-promo-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  color: var(--kbp-accent);
  font-weight: 600;
}
.kbp-promo-card ul li,
.kbp-promo-card ol li {
  padding: 4px 0;
  color: var(--kbp-text);
  line-height: 1.7;
}

/* === FEATURE BADGES === */
.kbp-feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(201,168,76,0.08);
  border-radius: 50px;
  margin: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--kbp-primary);
  transition: var(--kbp-transition);
}
.kbp-feature-badge .fa-check {
  color: var(--kbp-accent);
  font-size: 0.7rem;
}
.kbp-feature-badge:hover {
  background: var(--kbp-accent);
  color: var(--kbp-dark);
}

/* === CTA PHONE === */
.kbp-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: var(--kbp-white);
  border-radius: var(--kbp-radius-sm);
  box-shadow: var(--kbp-shadow);
  transition: var(--kbp-transition);
  text-decoration: none !important;
}
.kbp-cta-phone:hover {
  transform: translateY(-3px);
  box-shadow: var(--kbp-shadow-lg);
}
.kbp-cta-phone .icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--kbp-accent), var(--kbp-accent-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kbp-dark);
}

/* === MODERN TABS === */
.kbp-nav-pills {
  gap: 10px;
}
.kbp-nav-pills .nav-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--kbp-primary);
  background: var(--kbp-white);
  border: 1px solid var(--kbp-border);
  border-radius: 50px;
  padding: 10px 24px;
  transition: var(--kbp-transition);
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.kbp-nav-pills .nav-link:hover {
  background: rgba(201,168,76,0.1);
  color: var(--kbp-primary);
}
.kbp-nav-pills .nav-link.active {
  background: var(--kbp-accent) !important;
  color: var(--kbp-dark) !important;
  border-color: var(--kbp-accent);
  box-shadow: 0 4px 15px rgba(201,168,76,0.3);
}
.tab-content > .tab-pane {
  transition: opacity 0.5s ease-in-out;
}

/* === CONTACT SECTION === */
.kbp-contact-section {
  background: linear-gradient(135deg, var(--kbp-dark) 0%, var(--kbp-primary) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.kbp-contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.kbp-contact-section h1,
.kbp-contact-section h5,
.kbp-contact-section h6 {
  color: #fff;
}

/* === FOOTER === */
.kbp-footer {
  background: var(--kbp-dark);
  color: rgba(255,255,255,0.7);
  padding-top: 60px;
}
.kbp-footer h4 {
  color: var(--kbp-accent) !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.kbp-footer a {
  color: rgba(255,255,255,0.6);
  transition: var(--kbp-transition);
}
.kbp-footer a:hover {
  color: var(--kbp-accent);
  padding-left: 5px;
}
.kbp-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  margin-top: 40px;
  font-size: 0.85rem;
}
.kbp-footer .social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  transition: var(--kbp-transition);
}
.kbp-footer .social-link:hover {
  background: var(--kbp-accent);
  border-color: var(--kbp-accent);
  color: var(--kbp-dark);
  padding-left: 0;
}

/* === FLOATING BUTTONS === */
#fixedbuttonimage,
#fixedbuttonimage2 {
  position: fixed;
  z-index: 9998;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: var(--kbp-transition);
  cursor: pointer;
}
#fixedbuttonimage { bottom: 30px; right: 30px; }
#fixedbuttonimage2 { bottom: 95px; right: 30px; }
#fixedbuttonimage:hover,
#fixedbuttonimage2:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

/* === BACK TO TOP === */
.back-to-top {
  width: 45px;
  height: 45px;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--kbp-primary) !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(26,60,94,0.3);
}

/* === PORTFOLIO / FASILITAS === */
.portfolio-item .position-relative {
  border-radius: var(--kbp-radius);
  overflow: hidden;
  margin: 8px;
}
.portfolio-text {
  border-radius: 0 !important;
  background: rgba(15,25,35,0.85) !important;
  backdrop-filter: blur(10px);
}
.portfolio-text h4 {
  color: #fff !important;
  font-size: 1rem;
}

/* === PRODUCT CARDS === */
.card {
  border: none !important;
  border-radius: var(--kbp-radius) !important;
  overflow: hidden;
  box-shadow: var(--kbp-shadow);
  transition: var(--kbp-transition);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--kbp-shadow-lg);
}
.card-img-top {
  transition: transform 0.6s ease;
}
.card:hover .card-img-top {
  transform: scale(1.03);
}

/* === BG OVERRIDES === */
.bg-light {
  background: var(--kbp-body) !important;
}
.bg-dark {
  background: var(--kbp-dark) !important;
}
.bg-secondary {
  background: var(--kbp-primary) !important;
}
.bg-primary {
  background: var(--kbp-accent) !important;
}
.text-primary {
  color: var(--kbp-accent) !important;
}

/* === BREADCRUMB === */
.kbp-breadcrumb {
  padding: 20px 0;
  background: transparent;
}
.kbp-breadcrumb .btn-outline-primary {
  font-size: 0.8rem;
  padding: 6px 16px;
}

/* === WOW ANIMATIONS === */
.kbp-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.kbp-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--kbp-body); }
::-webkit-scrollbar-thumb {
  background: var(--kbp-accent);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--kbp-primary); }

/* === IMAGE SECTION FIX === */
.image-section {
  border-radius: var(--kbp-radius);
  overflow: hidden;
  box-shadow: var(--kbp-shadow);
}
.image-section img {
  width: 100%;
  border-radius: var(--kbp-radius);
  transition: transform 0.6s ease;
}
.image-section:hover img {
  transform: scale(1.03);
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .kbp-section { padding: 50px 0; }
  .kbp-section-title { font-size: 2rem; }
  .kbp-promo-card { padding: 24px; }
}
@media (max-width: 576px) {
  .kbp-section-title { font-size: 1.6rem; }
  .kbp-hero .carousel-item { height: 50vh; }
}

/* === SELECTION === */
::selection {
  background: var(--kbp-accent);
  color: var(--kbp-dark);
}
