.kf-bp {
  --teal: #01726f;
  --teal-deep: #024c4a;
  --coral: #e02045;
  --yellow: #fcc12b;
  --mint: #3cd3c4;
  --cream: #fdf8ef;
  font-family: "Montserrat", sans-serif;
  max-width: 1100px;
  margin: 0 auto;
}

.kf-bp * {
  box-sizing: border-box;
}

/* Booking pages */
.kf-bp-hero {
  text-align: center;
  padding: 48px 24px;
  border-radius: 20px;
  margin-bottom: 32px;
  color: #fff;
  background: linear-gradient(135deg, #01726f, #024c4a);
}

.kf-bp-hero--walkin {
  background: linear-gradient(135deg, #3cd3c4, #01726f);
}

.kf-bp-hero--corp {
  background: linear-gradient(135deg, #e02045, #b81736);
}

.kf-bp-hero h1 {
  margin: 0 0 8px;
  font-size: 34px;
  font-weight: 800;
}

.kf-bp-hero p {
  margin: 0;
  font-size: 15px;
  opacity: 0.95;
}

.kf-bp-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  align-items: start;
}

.kf-bp-rules,
.kf-bp-main,
.kf-bp-detail,
.kf-corp-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(1, 114, 111, 0.1);
}

.kf-bp-rules {
  padding: 24px;
}

.kf-bp-rules h3,
.kf-bp-main h3 {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 18px;
}

.kf-bp-rules ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.kf-bp-rules li {
  font-size: 13px;
  color: #445;
  line-height: 1.6;
  padding: 10px 0;
  border-bottom: 1px solid #eef3f2;
}

.kf-bp-rules li:last-child {
  border-bottom: none;
}

.kf-bp-rules strong {
  color: var(--teal-deep);
}

.kf-bp-main {
  padding: 26px;
}

.kf-bp-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 24px;
  margin-bottom: 28px;
}

.kf-bp-detail-img img {
  width: 100%;
  border-radius: 14px;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.kf-bp-detail-body h1 {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 30px;
  font-weight: 800;
}

.kf-bp-when {
  color: var(--coral);
  font-weight: 700;
  margin: 0 0 12px;
}

.kf-bp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 14px;
  font-size: 13px;
  color: #445;
  font-weight: 600;
}

.kf-bp-desc {
  font-size: 14px;
  color: #445;
  line-height: 1.7;
}

.kf-bp-field {
  margin-bottom: 14px;
}

.kf-bp-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-deep);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.kf-bp-field input,
.kf-bp-field select,
.kf-bp-field textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid #d7e2e1;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
}

.kf-bp-field input:focus,
.kf-bp-field select:focus,
.kf-bp-field textarea:focus {
  border-color: var(--teal);
  outline: none;
}

.kf-bp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.kf-bp-submit {
  margin-top: 6px;
  background: var(--teal);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}

.kf-bp-submit:hover {
  background: var(--teal-deep);
}

.kf-bp-submit:disabled {
  background: #9bb3b2;
  cursor: wait;
}

.kf-vhoney {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* Corporate carousel section */
.kf-corp-carousel-section {
  max-width: 1200px;
  margin: 30px auto 70px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.kf-corp-carousel-wrap {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(1, 114, 111, 0.08);
}

.kf-carousel-viewport {
  overflow: hidden;
  height: 460px;
}

.kf-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

.kv-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

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

/* Optional slide title if your PHP/JS outputs it */
.kv-slide-title {
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  z-index: 8;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.kf-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.92);
  border: none;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 24px;
  z-index: 10;
  transition: background 0.18s ease;
}

.kf-carousel-arrow:hover:not(:disabled) {
  background: #fff;
}

.kf-carousel-arrow:disabled {
  background: rgba(255, 255, 255, 0.5);
  cursor: not-allowed;
}

.kf-carousel-arrow.kv-prev {
  left: 16px;
}

.kf-carousel-arrow.kv-next {
  right: 16px;
}

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

.kv-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background 0.18s ease;
}

.kv-dots button[aria-selected="true"] {
  background: #fff;
}

.kf-corp-carousel-content {
  padding: 0;
}

.kf-corp-carousel-content .section-eyebrow,
.kf-private-header .section-eyebrow,
.kf-past-header .section-eyebrow {
  display: block;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.kf-corp-carousel-content .section-title,
.kf-private-header .section-title,
.kf-past-header .section-title {
  color: var(--teal);
  font-size: 42px;
  line-height: 1.08;
  font-weight: 900;
  margin: 0 0 20px;
}

.kf-corp-carousel-content p {
  font-size: 18px;
  line-height: 1.65;
  color: #445;
  margin: 0 0 28px;
}

.kf-corp-carousel-content .btn,
.kf-corp-carousel-content .btn-coral {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 38px;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
}

/* Private events */
.kf-private-events-section {
  max-width: 1180px;
  margin: 95px auto 90px;
  padding: 0 24px;
  background: transparent;
}

.kf-private-header {
  text-align: center;
  margin-bottom: 58px;
}

.kf-private-header .section-sub,
.kf-past-header .section-sub {
  font-size: 18px;
  color: #445;
  margin: 0 auto;
  max-width: 720px;
  line-height: 1.6;
}

.kf-private-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.kf-private-card {
  position: relative;
  min-height: 230px;
  padding: 36px 28px;
  border-radius: 18px;
  background: var(--cream);
  border: 1px solid #eee4d8;
  box-shadow: none;
  text-align: center;
  overflow: hidden;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.kf-private-card:hover {
  background: #fff;
  box-shadow: 0 18px 45px rgba(1, 114, 111, 0.08);
  transform: translateY(-4px);
}

.kf-private-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  opacity: 0;
  transition: opacity 0.18s ease;
}

.kf-private-card:hover::before {
  opacity: 1;
}

.kf-private-card:nth-child(1)::before {
  background: #e02045;
}

.kf-private-card:nth-child(2)::before {
  background: #3cd3c4;
}

.kf-private-card:nth-child(3)::before {
  background: #fcc12b;
}

.kf-private-card:nth-child(4)::before {
  background: #ff7d96;
}

.kf-private-card:nth-child(5)::before {
  background: #01726f;
}

.kf-private-card:nth-child(6)::before {
  background: #e7ba51;
}

.kf-private-icon {
  font-size: 46px;
  margin-bottom: 14px;
  display: block;
}

.kf-private-card h3 {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 22px;
  line-height: 1.12;
  font-weight: 900;
}

.kf-private-card p {
  margin: 0;
  font-size: 15px;
  color: #445;
  line-height: 1.6;
}

/* Past header only */
.kf-past-events-section {
  max-width: 1280px;
  margin: 0 auto 70px;
  padding: 0 24px;
}

.kf-past-header {
  text-align: center;
  margin-bottom: 52px;
}

/* Corporate CTA */
.kf-corp-cta {
  text-align: center;
  background: linear-gradient(135deg, #01726f 0%, #024c4a 100%);
  border-radius: 18px;
  padding: 48px 24px;
  margin-top: 32px;
}

.kf-corp-cta h3 {
  color: #fff;
  margin: 0 0 8px;
  font-size: 22px;
}

.kf-corp-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 20px;
}

.kf-corp-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.kf-btn-read {
  background: #fff;
  color: var(--teal);
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
  transition: transform 0.15s ease;
}

.kf-btn-read:hover {
  transform: scale(1.04);
}

.kf-btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.kf-btn-ghost:hover {
  background: #fff;
  color: var(--teal);
}

.kf-cmsg {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
}

.kf-cmsg.is-ok {
  color: var(--teal);
}

.kf-cmsg.is-error {
  color: var(--coral);
}

.kf-empty {
  color: #6a7a79;
}

/* Responsive */
@media (max-width: 1100px) {
  .kf-corp-carousel-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .kf-carousel-viewport {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .kf-corp-carousel-content {
    width: 100%;
  }

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

@media (max-width: 820px) {
  .kf-bp-grid,
  .kf-bp-detail,
  .kf-corp-cols {
    grid-template-columns: 1fr;
  }

  .kf-bp-row {
    grid-template-columns: 1fr;
  }

  .kf-corp-carousel-section {
    padding: 0 22px;
    margin: 40px auto 70px;
  }

  .kf-corp-carousel-content .section-title,
  .kf-private-header .section-title,
  .kf-past-header .section-title {
    font-size: 36px;
  }

  .kf-corp-carousel-content p,
  .kf-private-header .section-sub,
  .kf-past-header .section-sub {
    font-size: 16px;
  }

  .kf-private-events-section {
    margin: 70px auto 75px;
  }

  .kf-private-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .kf-private-card {
    min-height: 220px;
    padding: 32px 24px;
  }

  .kf-private-icon {
    font-size: 40px;
  }
}

@media (max-width: 560px) {
  .kf-bp {
    max-width: 100%;
  }

  .kf-corp-carousel-section {
    padding: 0 20px;
  }

  .kf-carousel-viewport {
    aspect-ratio: 4 / 3;
  }

  .kf-corp-carousel-content .section-title,
  .kf-private-header .section-title,
  .kf-past-header .section-title {
    font-size: 32px;
  }

  .kf-private-grid {
    grid-template-columns: 1fr;
  }

  .kf-private-card {
    min-height: auto;
    padding: 30px 22px;
  }

  .kf-corp-carousel-content .btn,
  .kf-corp-carousel-content .btn-coral {
    padding: 15px 28px;
    font-size: 14px;
  }
}

/* =========================================================
   WORKSHOP PHONE / WHATSAPP
   ========================================================= */

.kf-booking-phone-wrap {
  display: grid !important;
  grid-template-columns: 75px minmax(0, 1fr) !important;
  gap: 6px !important;
  width: 100% !important;
  min-width: 0 !important;
}

/* Make both fields match the workshop form */
#kfbCountryCode,
.kf-booking-phone-wrap #kfbPhone {
  width: 100% !important;
  height: 40px !important;
  min-height: 40px !important;
  max-height: 40px !important;

  margin: 0 !important;
  box-sizing: border-box !important;

  border: 1.5px solid #d7e2e1 !important;
  border-radius: 10px !important;

  background-color: #fff !important;
  color: #024c4a !important;

  font-family: inherit !important;

  outline: none !important;
  box-shadow: none !important;
}

/* Country code */
#kfbCountryCode {
  padding: 0 6px !important;

  font-size: 10px !important;
  font-weight: 800 !important;

  cursor: pointer !important;
}

/* Phone number */
.kf-booking-phone-wrap #kfbPhone {
  min-width: 0 !important;

  padding: 0 10px !important;

  font-size: 13px !important;
  font-weight: 500 !important;
}

/* Placeholder */
.kf-booking-phone-wrap #kfbPhone::placeholder {
  color: #879292 !important;
  opacity: 1 !important;
}

/* Focus */
#kfbCountryCode:focus,
.kf-booking-phone-wrap #kfbPhone:focus {
  border-color: #01726f !important;
  box-shadow: 0 0 0 3px rgba(1, 114, 111, 0.1) !important;
}

.kf-bp-field {
  min-width: 0 !important;
}

/* Mobile */
@media (max-width: 600px) {
  .kf-booking-phone-wrap {
    grid-template-columns: 75px minmax(0, 1fr) !important;
  }
}
