/* ==========================================================================
   HomeKaro — Premium Home Services Theme
   Bootstrap 5 + custom design system
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  --hk-ink:        #0a1b33;
  --hk-ink-2:      #0e2548;
  --hk-ink-3:      #12305c;
  --hk-teal:       #00b4a6;
  --hk-teal-dark:  #008f85;
  --hk-teal-soft:  #e6f7f5;
  --hk-orange:     #ff7a2f;
  --hk-orange-dark:#f26a1d;
  --hk-orange-soft:#fff3ea;
  --hk-gold:       #ffc94d;
  --hk-gold-soft:  #fff8e1;
  --hk-body:       #101828;
  --hk-muted:      #5b6b85;
  --hk-light:      #f4f7fb;
  --hk-light-2:    #eef3f9;
  --hk-border:     #e5ecf5;
  --hk-white:      #ffffff;

  --hk-font-head: 'Sora', sans-serif;
  --hk-font-body: 'Plus Jakarta Sans', sans-serif;

  --hk-shadow-sm:  0 2px 8px rgba(10, 27, 51, 0.06);
  --hk-shadow:     0 10px 30px rgba(10, 27, 51, 0.08);
  --hk-shadow-lg:  0 24px 60px rgba(10, 27, 51, 0.14);
  --hk-shadow-teal: 0 12px 30px rgba(0, 180, 166, 0.25);

  --hk-radius:     18px;
  --hk-radius-sm:  12px;
  --hk-radius-lg:  26px;

  --hk-trans:      all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
* { -webkit-font-smoothing: antialiased; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--hk-font-body);
  color: var(--hk-body);
  background: var(--hk-white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--hk-font-head);
  color: var(--hk-ink);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

a { text-decoration: none; transition: var(--hk-trans); color: var(--hk-teal-dark); }
a:hover { color: var(--hk-teal); }

img { max-width: 100%; }

::selection { background: var(--hk-teal); color: #fff; }

.hk-container { max-width: 1240px; }

/* --------------------------------------------------------------------------
   3. Utilities
   -------------------------------------------------------------------------- */
.hk-text-gradient {
  background: linear-gradient(100deg, var(--hk-teal) 0%, var(--hk-teal-dark) 45%, var(--hk-orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hk-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--hk-font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hk-teal-dark);
  background: var(--hk-teal-soft);
  border: 1px solid rgba(0, 180, 166, 0.25);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.hk-eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--hk-teal);
  box-shadow: 0 0 0 4px rgba(0, 180, 166, 0.18);
}

.hk-eyebrow-light {
  background: rgba(255, 255, 255, 0.08);
  color: #9fdcd6;
  border-color: rgba(255, 255, 255, 0.14);
}

/* Buttons */
.btn { font-family: var(--hk-font-head); font-weight: 600; border-radius: 12px; }
.btn:focus, .btn:focus-visible { box-shadow: 0 0 0 0.25rem rgba(0, 180, 166, 0.2); outline: none; }

.btn-hk-primary {
  background: linear-gradient(135deg, var(--hk-teal) 0%, var(--hk-teal-dark) 100%);
  border: 1px solid var(--hk-teal);
  color: #fff;
  box-shadow: var(--hk-shadow-teal);
}
.btn-hk-primary:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--hk-teal-dark) 0%, #007b72 100%);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 180, 166, 0.32);
}

.btn-hk-accent {
  background: linear-gradient(135deg, #ff9347 0%, var(--hk-orange) 55%, var(--hk-orange-dark) 100%);
  border: 1px solid var(--hk-orange);
  color: #fff;
  box-shadow: 0 12px 30px rgba(255, 122, 47, 0.28);
}
.btn-hk-accent:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--hk-orange) 0%, var(--hk-orange-dark) 100%);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(255, 122, 47, 0.36);
}

.btn-outline-hk {
  border: 1.5px solid var(--hk-border);
  color: var(--hk-ink);
  background: #fff;
}
.btn-outline-hk:hover {
  border-color: var(--hk-teal);
  color: var(--hk-teal-dark);
  background: var(--hk-teal-soft);
  transform: translateY(-2px);
}

.btn-hk-lg { padding: 13px 28px; border-radius: 14px; font-size: 1rem; }

.hk-btn-block { display: block; width: 100%; }

.hk-btn-nav { padding: 11px 22px; border-radius: 12px; font-size: 0.92rem; display: inline-flex; align-items: center; gap: 8px; }

.hk-btn-ghost { border: 1.5px solid rgba(255, 255, 255, 0.25); color: #fff; background: rgba(255, 255, 255, 0.04); backdrop-filter: blur(6px); }
.hk-btn-ghost:hover { border-color: var(--hk-teal); color: #fff; background: rgba(0, 180, 166, 0.18); transform: translateY(-2px); }

.hk-btn-ghost-dark { border: 1.5px solid var(--hk-border); color: var(--hk-ink); background: #fff; }
.hk-btn-ghost-dark:hover { border-color: var(--hk-teal); color: var(--hk-teal-dark); background: var(--hk-teal-soft); transform: translateY(-2px); }

/* Section heads */
.hk-section { padding: 88px 0; position: relative; }

.hk-section-head { margin-bottom: 48px; }
.hk-section-head-center { text-align: center; max-width: 680px; margin-left: auto; margin-right: auto; }
.hk-section-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

.hk-section-title { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin: 0; }
.hk-section-title-light { color: #fff; }
.hk-section-desc { color: var(--hk-muted); font-size: 1.05rem; max-width: 560px; margin: 14px auto 0; }
.hk-section-desc-left { margin-left: 0; }

/* --------------------------------------------------------------------------
   4. Topbar
   -------------------------------------------------------------------------- */
.hk-topbar {
  background: var(--hk-ink);
  color: #9db1cc;
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.hk-topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.hk-topbar-left, .hk-topbar-right { display: flex; align-items: center; gap: 22px; }
.hk-topbar-item { display: inline-flex; align-items: center; gap: 7px; }
.hk-topbar-item i { color: var(--hk-teal); font-size: 0.9rem; }
.hk-topbar-item a { color: #c7d4e6; }
.hk-topbar-item a:hover { color: var(--hk-teal); }
.hk-topbar-social { display: flex; align-items: center; gap: 6px; }
.hk-topbar-social a {
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
  color: #9db1cc;
  font-size: 0.8rem;
  transition: var(--hk-trans);
}
.hk-topbar-social a:hover { background: var(--hk-teal); color: #fff; }

/* --------------------------------------------------------------------------
   5. Header / Navbar
   -------------------------------------------------------------------------- */
.hk-header {
  position: sticky;
  top: 0;
  z-index: 1040;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(229, 236, 245, 0.7);
  transition: var(--hk-trans);
}
.hk-header.hk-header-scrolled {
  box-shadow: 0 10px 30px rgba(10, 27, 51, 0.08);
}

.hk-navbar { padding: 14px 0; }

.hk-brand { display: inline-flex; align-items: center; gap: 12px; }
.hk-logo {
  height: 46px;
  width: 46px;
  object-fit: cover;
  border-radius: 13px;
  box-shadow: var(--hk-shadow-sm);
}
.hk-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.hk-brand-text strong {
  font-family: var(--hk-font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--hk-ink);
  letter-spacing: -0.02em;
}
.hk-brand-text strong b, .hk-brand-text strong span { color: var(--hk-teal-dark); }
.hk-brand-text small { font-size: 0.68rem; color: var(--hk-muted); letter-spacing: 0.04em; }

.hk-nav { gap: 4px; }
.hk-nav .nav-link {
  font-family: var(--hk-font-head);
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--hk-ink);
  padding: 9px 16px !important;
  border-radius: 10px;
  position: relative;
}
.hk-nav .nav-link:hover { color: var(--hk-teal-dark); background: var(--hk-teal-soft); }
.hk-nav .nav-link.active { color: var(--hk-teal-dark); background: var(--hk-teal-soft); }
.hk-nav .nav-link.active::after {
  content: '';
  position: absolute;
  left: 16px; right: 16px; bottom: 3px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--hk-teal), var(--hk-orange));
}

.hk-nav-actions { display: flex; align-items: center; gap: 18px; }
.hk-call-link { display: flex; align-items: center; gap: 10px; }
.hk-call-icon {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--hk-orange-soft);
  color: var(--hk-orange);
  border-radius: 12px;
  font-size: 1.05rem;
}
.hk-call-text { display: flex; flex-direction: column; line-height: 1.15; }
.hk-call-text small { font-size: 0.68rem; color: var(--hk-muted); }
.hk-call-text strong { font-family: var(--hk-font-head); font-size: 0.92rem; color: var(--hk-ink); }

.hk-toggler { border: none; background: transparent; padding: 8px; display: inline-flex; flex-direction: column; gap: 5px; }
.hk-toggler span {
  width: 24px; height: 2.5px;
  border-radius: 4px;
  background: var(--hk-ink);
  display: block;
  transition: var(--hk-trans);
}
.hk-toggler[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hk-toggler[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hk-toggler[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.hk-nav-cta { display: flex; align-items: center; gap: 12px; }

@media (max-width: 991.98px) {
  .hk-nav-collapse {
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--hk-shadow-lg);
    padding: 16px;
    margin-top: 12px;
    border: 1px solid var(--hk-border);
  }
  .hk-nav { gap: 2px; }
  .hk-nav .nav-link { padding: 12px 14px !important; border-radius: 10px; }
  .hk-nav .nav-link.active::after { display: none; }
  .hk-nav-actions { margin: 10px 0 0; flex-direction: column; align-items: stretch; }
  .hk-call-link { justify-content: center; }
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hk-hero {
  position: relative;
  background: linear-gradient(160deg, #0e2850 0%, var(--hk-ink) 60%, #081426 100%);
  overflow: hidden;
  padding: 70px 0 110px;
}
.hk-hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hk-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.hk-hero .hk-blob-1 {
  width: 480px; height: 480px;
  left: -140px; top: -160px;
  background: rgba(0, 180, 166, 0.32);
}
.hk-hero .hk-blob-2 {
  width: 420px; height: 420px;
  right: -120px; bottom: -120px;
  background: rgba(255, 122, 47, 0.26);
}
.hk-hero-glow {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.hk-hero-glow-teal { top: 40%; left: 40%; background: rgba(0, 180, 166, 0.5); }
.hk-hero-glow-orange { bottom: 5%; right: 8%; background: rgba(255, 180, 90, 0.4); }

.hk-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, #000 40%, transparent 100%);
  mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, #000 40%, transparent 100%);
}

.hk-hero-banner-wrap {
  position: relative;
  background: linear-gradient(160deg, #0e2850 0%, var(--hk-ink) 60%, #081426 100%);
  overflow: hidden;
  padding: 0;
}
.hk-hero-banner-frame { position: relative; }
.hk-hero-banner {
  display: block;
  width: 100%;
  height: auto;
}

.hk-hero-row { position: relative; z-index: 2; }

.hk-hero-content { max-width: 620px; }
.hk-hero-title {
  color: #fff;
  font-size: clamp(2.3rem, 5.2vw, 3.6rem);
  font-weight: 800;
  margin: 20px 0 18px;
  letter-spacing: -0.03em;
}
.hk-hero-sub {
  color: #b7c8df;
  font-size: 1.12rem;
  max-width: 540px;
  margin-bottom: 30px;
}

/* Quick book bar */
.hk-quickbook {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 12px;
  max-width: 560px;
}
.hk-quickbook-form {
  display: grid;
  grid-template-columns: 1fr 130px auto;
  gap: 10px;
  align-items: center;
}
.hk-quickbook-field { position: relative; }
.hk-quickbook-field > label {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--hk-teal);
  font-size: 1rem;
  pointer-events: none;
}
.hk-quickbook-field .form-select,
.hk-quickbook-field .form-control {
  background: #fff;
  border: 1px solid transparent;
  border-radius: 13px;
  height: 52px;
  padding-left: 42px;
  font-size: 0.94rem;
  color: var(--hk-ink);
  font-weight: 500;
}
.hk-quickbook-field .form-select:focus,
.hk-quickbook-field .form-control:focus { border-color: var(--hk-teal); box-shadow: 0 0 0 0.25rem rgba(0, 180, 166, 0.18); }
.hk-quickbook-btn {
  height: 52px;
  border-radius: 13px;
  padding: 0 22px;
  font-family: var(--hk-font-head);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
}
.hk-quickbook-foot {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding: 12px 8px 2px;
  color: #9db6d4;
  font-size: 0.8rem;
  font-weight: 500;
}
.hk-quickbook-foot i { color: var(--hk-gold); margin-right: 4px; }

/* Hero trust */
.hk-hero-trust { display: flex; align-items: center; gap: 16px; margin-top: 30px; }
.hk-hero-avatars { display: flex; }
.hk-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--hk-font-head);
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  border: 2.5px solid #122c54;
  margin-left: -10px;
}
.hk-avatar:first-child { margin-left: 0; }
.hk-avatar-1 { background: linear-gradient(135deg, #ff8a3d, #f26a1d); }
.hk-avatar-2 { background: linear-gradient(135deg, #00c9b8, #008f85); }
.hk-avatar-3 { background: linear-gradient(135deg, #7f9cf5, #5a6fd4); }
.hk-avatar-4 { background: linear-gradient(135deg, #ffc94d, #f2a41c); color: #5a3a00; font-size: 0.68rem; }
.hk-hero-trust-text { color: #9db6d4; font-size: 0.88rem; }
.hk-hero-trust-text strong { color: #fff; font-size: 1rem; }
.hk-stars { color: var(--hk-gold); font-size: 0.82rem; letter-spacing: 2px; }

/* Hero visual */
.hk-hero-visual { position: relative; display: flex; justify-content: center; }
.hk-hero-img-wrap { position: relative; max-width: 520px; animation: hkFloat 6s ease-in-out infinite; }
.hk-hero-img { width: 100%; border-radius: 32px; box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35); }

.hk-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
  animation: hkFloatSmall 5s ease-in-out infinite;
}
.hk-float-card strong { font-family: var(--hk-font-head); font-size: 0.86rem; color: var(--hk-ink); display: block; }
.hk-float-card small { font-size: 0.74rem; color: var(--hk-muted); }
.hk-float-card-top { top: 8%; left: -8%; }
.hk-float-card-bottom { bottom: 10%; right: -6%; animation-delay: 1.2s; }
.hk-float-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}
.hk-float-icon-teal { background: linear-gradient(135deg, var(--hk-teal), var(--hk-teal-dark)); }
.hk-float-icon-orange { background: linear-gradient(135deg, var(--hk-orange), var(--hk-orange-dark)); }

.hk-float-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--hk-ink);
  color: #fff;
  font-family: var(--hk-font-head);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 9px 15px;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.hk-float-chip i { color: var(--hk-gold); }
.hk-float-chip-top { top: 38%; right: -12%; animation: hkFloatSmall 6s ease-in-out 0.6s infinite; }
.hk-float-chip-bottom { bottom: 32%; left: -10%; animation: hkFloatSmall 6s ease-in-out 1.8s infinite; }

@keyframes hkFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
@keyframes hkFloatSmall {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@media (max-width: 991.98px) {
  .hk-hero { padding: 52px 0 90px; }
  .hk-hero-banner-wrap { padding: 0; }
  .hk-hero-banner { border-radius: 0; }
  .hk-hero-visual { margin-top: 8px; }
  .hk-float-card-top { left: 0; }
  .hk-float-card-bottom { right: 0; }
  .hk-float-chip-top { right: 0; }
  .hk-float-chip-bottom { left: 0; }
}
@media (max-width: 575.98px) {
  .hk-quickbook-form { grid-template-columns: 1fr; }
  .hk-hero-trust { flex-direction: column; align-items: flex-start; }
}

/* --------------------------------------------------------------------------
   7. Stats strip
   -------------------------------------------------------------------------- */
.hk-stats-strip { position: relative; z-index: 3; margin-top: -56px; }
.hk-stats-strip-inner {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--hk-shadow-lg);
  border: 1px solid var(--hk-border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 26px 18px;
}
.hk-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 18px;
  border-left: 1px solid var(--hk-border);
}
.hk-stat:first-child { border-left: 0; }
.hk-stat > i {
  font-size: 2rem;
  color: var(--hk-teal);
  background: var(--hk-teal-soft);
  width: 54px; height: 54px;
  border-radius: 15px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hk-stat strong { font-family: var(--hk-font-head); font-size: 1.5rem; color: var(--hk-ink); display: block; line-height: 1.1; }
.hk-stat span { font-size: 0.82rem; color: var(--hk-muted); }
@media (max-width: 991.98px) {
  .hk-stats-strip { margin-top: -34px; }
  .hk-stats-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .hk-stat { border-left: 0; }
  .hk-stat:nth-child(3), .hk-stat:nth-child(4) { border-top: 1px solid var(--hk-border); }
}
@media (max-width: 575.98px) {
  .hk-stat { flex-direction: column; text-align: center; }
}

/* --------------------------------------------------------------------------
   8. Categories
   -------------------------------------------------------------------------- */
.hk-section-categories { padding-top: 70px; }
.hk-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border: 1px solid var(--hk-border);
  border-radius: var(--hk-radius);
  padding: 26px 16px 22px;
  height: 100%;
  position: relative;
  transition: var(--hk-trans);
  overflow: hidden;
}
.hk-cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 180, 166, 0.07), transparent 70%);
  opacity: 0;
  transition: var(--hk-trans);
}
.hk-cat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 180, 166, 0.4);
  box-shadow: var(--hk-shadow-lg);
}
.hk-cat-card:hover::before { opacity: 1; }
.hk-cat-icon {
  width: 62px; height: 62px;
  border-radius: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  transition: var(--hk-trans);
}
.hk-cat-card:hover .hk-cat-icon { transform: scale(1.08) rotate(-4deg); }
.hk-cat-tone-1 { background: var(--hk-teal-soft); color: var(--hk-teal-dark); }
.hk-cat-tone-2 { background: var(--hk-orange-soft); color: var(--hk-orange-dark); }
.hk-cat-tone-3 { background: #eef0ff; color: #5a6fd4; }
.hk-cat-tone-4 { background: var(--hk-gold-soft); color: #c98a12; }
.hk-cat-card h3 { font-size: 0.95rem; margin-bottom: 4px; }
.hk-cat-count { font-size: 0.78rem; color: var(--hk-muted); }
.hk-cat-arrow {
  position: absolute;
  top: 14px; right: 14px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--hk-teal);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  opacity: 0;
  transform: translateY(6px);
  transition: var(--hk-trans);
}
.hk-cat-card:hover .hk-cat-arrow { opacity: 1; transform: translateY(0); }

/* --------------------------------------------------------------------------
   9. Service cards
   -------------------------------------------------------------------------- */
.hk-section-dark {
  background: linear-gradient(165deg, var(--hk-ink-2) 0%, var(--hk-ink) 55%, #081426 100%);
  color: #c6d4e8;
  overflow: hidden;
}
.hk-section-dark-bg { position: absolute; inset: 0; pointer-events: none; }
.hk-section-dark .hk-blob-3 {
  width: 500px; height: 500px;
  right: -180px; top: -180px;
  background: rgba(0, 180, 166, 0.22);
}
.hk-section-dark .hk-grid {
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 100% 0%, #000 20%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 70% at 100% 0%, #000 20%, transparent 100%);
}

.hk-service-card {
  background: #fff;
  border: 1px solid var(--hk-border);
  border-radius: var(--hk-radius);
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--hk-trans);
  position: relative;
  overflow: hidden;
}
.hk-service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--hk-teal), var(--hk-orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--hk-trans);
}
.hk-service-card:hover { transform: translateY(-8px); box-shadow: var(--hk-shadow-lg); border-color: rgba(0, 180, 166, 0.35); }
.hk-service-card:hover::after { transform: scaleX(1); }

.hk-service-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 18px; }
.hk-service-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--hk-teal-soft), #d7f4f0);
  color: var(--hk-teal-dark);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.45rem;
}
.hk-service-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: linear-gradient(135deg, var(--hk-orange), var(--hk-orange-dark));
  color: #fff;
  font-family: var(--hk-font-head);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 999px;
}
.hk-service-badge-soft { background: var(--hk-orange-soft); color: var(--hk-orange-dark); }
.hk-service-cat {
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hk-teal-dark);
  margin-bottom: 6px;
}
.hk-service-name { font-size: 1.08rem; margin-bottom: 8px; }
.hk-service-name a { color: var(--hk-ink); }
.hk-service-name a:hover { color: var(--hk-teal-dark); }
.hk-service-short { color: var(--hk-muted); font-size: 0.88rem; margin-bottom: 14px; flex-grow: 1; }

.hk-service-tags { list-style: none; display: flex; gap: 14px; padding: 0; margin: 0 0 16px; font-size: 0.8rem; color: var(--hk-muted); flex-wrap: wrap; }
.hk-service-tags li { display: inline-flex; align-items: center; gap: 6px; }
.hk-service-tags i { color: var(--hk-teal); }

.hk-service-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px dashed var(--hk-border);
  padding-top: 14px;
}
.hk-service-price small { display: block; font-size: 0.72rem; color: var(--hk-muted); line-height: 1.2; }
.hk-service-price strong { font-family: var(--hk-font-head); font-size: 1.28rem; color: var(--hk-ink); line-height: 1.2; }
.hk-service-price span { font-size: 0.78rem; color: var(--hk-muted); }
.hk-service-link {
  width: 44px; height: 44px;
  border-radius: 13px;
  background: var(--hk-ink);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hk-service-link:hover { background: var(--hk-teal); color: #fff; transform: translateY(-3px); }

.hk-service-card-dark {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}
.hk-service-card-dark .hk-service-icon { background: rgba(0, 180, 166, 0.16); color: #46d6c8; }
.hk-service-card-dark .hk-service-name a { color: #fff; }
.hk-service-card-dark .hk-service-short { color: #9db1cc; }
.hk-service-card-dark .hk-service-price strong { color: #fff; }
.hk-service-card-dark .hk-service-price small, .hk-service-card-dark .hk-service-price span { color: #8ba0bf; }
.hk-service-card-dark .hk-service-foot { border-color: rgba(255, 255, 255, 0.12); }
.hk-service-card-dark .hk-service-link { background: linear-gradient(135deg, var(--hk-teal), var(--hk-teal-dark)); }
.hk-service-card-dark:hover { border-color: rgba(0, 180, 166, 0.5); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4); }

/* --------------------------------------------------------------------------
   10. How it works
   -------------------------------------------------------------------------- */
.hk-steps { position: relative; }
.hk-steps::before {
  content: '';
  position: absolute;
  top: 62px; left: 16%; right: 16%;
  height: 2px;
  background: linear-gradient(90deg, var(--hk-teal) 0%, var(--hk-teal) 70%, transparent 70%);
  opacity: 0.25;
}
.hk-step { text-align: center; padding: 0 12px; position: relative; }
.hk-step-num {
  font-family: var(--hk-font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--hk-orange);
  margin-bottom: 18px;
  display: block;
}
.hk-step-icon {
  width: 92px; height: 92px;
  margin: 0 auto 22px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--hk-border);
  box-shadow: var(--hk-shadow);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  color: var(--hk-teal-dark);
  position: relative;
  transition: var(--hk-trans);
}
.hk-step:hover .hk-step-icon { transform: translateY(-8px); box-shadow: var(--hk-shadow-lg); color: var(--hk-orange); }
.hk-step h3 { font-size: 1.15rem; margin-bottom: 10px; }
.hk-step p { color: var(--hk-muted); font-size: 0.93rem; margin: 0; }
@media (max-width: 767.98px) { .hk-steps::before { display: none; } }

/* --------------------------------------------------------------------------
   11. Why choose us
   -------------------------------------------------------------------------- */
.hk-why-visual { position: relative; }
.hk-why-illustration { position: relative; max-width: 500px; }
.hk-why-img { width: 100%; border-radius: 32px; box-shadow: var(--hk-shadow-lg); }
.hk-why-badge {
  position: absolute;
  bottom: 26px; left: -18px;
  display: flex; align-items: center; gap: 12px;
  background: #fff;
  border-radius: 18px;
  padding: 14px 20px;
  box-shadow: var(--hk-shadow-lg);
  border: 1px solid var(--hk-border);
}
.hk-why-badge i { font-size: 2rem; color: var(--hk-teal); }
.hk-why-badge strong { font-family: var(--hk-font-head); font-size: 1.3rem; color: var(--hk-ink); display: block; line-height: 1.1; }
.hk-why-badge span { font-size: 0.8rem; color: var(--hk-muted); }

.hk-why-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 20px; }
.hk-why-list li { display: flex; gap: 16px; align-items: flex-start; }
.hk-why-list-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--hk-teal-soft);
  color: var(--hk-teal-dark);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: var(--hk-trans);
}
.hk-why-list li:hover .hk-why-list-icon { background: var(--hk-teal); color: #fff; transform: scale(1.05); }
.hk-why-list h3 { font-size: 1rem; margin-bottom: 4px; }
.hk-why-list p { color: var(--hk-muted); font-size: 0.9rem; margin: 0; }

/* --------------------------------------------------------------------------
   12. Category tabs / all services
   -------------------------------------------------------------------------- */
.hk-cat-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hk-cat-tab {
  border: 1.5px solid var(--hk-border);
  background: #fff;
  color: var(--hk-muted);
  font-family: var(--hk-font-head);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: var(--hk-trans);
  cursor: pointer;
}
.hk-cat-tab i { font-size: 0.95rem; color: var(--hk-teal-dark); }
.hk-cat-tab:hover { border-color: var(--hk-teal); color: var(--hk-ink); transform: translateY(-2px); }
.hk-cat-tab.active {
  background: linear-gradient(135deg, var(--hk-teal), var(--hk-teal-dark));
  border-color: var(--hk-teal);
  color: #fff;
}
.hk-cat-tab.active i { color: #fff; }

.hk-cat-panel { display: none; animation: hkFadeUp 0.5s ease; }
.hk-cat-panel.show { display: block; }
@keyframes hkFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.hk-list-service {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--hk-border);
  border-radius: 16px;
  padding: 18px;
  height: 100%;
  transition: var(--hk-trans);
}
.hk-list-service:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 180, 166, 0.4);
  box-shadow: var(--hk-shadow);
}
.hk-list-service-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--hk-teal-soft);
  color: var(--hk-teal-dark);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.hk-list-service-body { flex-grow: 1; min-width: 0; }
.hk-list-service-body h3 { font-size: 0.98rem; margin-bottom: 3px; }
.hk-list-service-body p {
  font-size: 0.82rem;
  color: var(--hk-muted);
  margin: 0 0 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hk-list-service-price {
  font-family: var(--hk-font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--hk-orange-dark);
}
.hk-list-service-arrow {
  color: #c4cfe0;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hk-list-service:hover .hk-list-service-arrow { color: var(--hk-teal); transform: translateX(4px); }

/* --------------------------------------------------------------------------
   13. Testimonials
   -------------------------------------------------------------------------- */
.hk-section-testimonials {
  background: linear-gradient(160deg, #0e2850 0%, var(--hk-ink) 60%, #081426 100%);
  overflow: hidden;
}
.hk-section-testimonials-bg { position: absolute; inset: 0; pointer-events: none; }
.hk-section-testimonials .hk-blob-4 {
  width: 460px; height: 460px;
  left: -160px; bottom: -160px;
  background: rgba(255, 122, 47, 0.2);
}
.hk-testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--hk-radius);
  padding: 26px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--hk-trans);
  position: relative;
  backdrop-filter: blur(8px);
}
.hk-testimonial-card:hover { transform: translateY(-6px); border-color: rgba(0, 180, 166, 0.4); }
.hk-testimonial-quote {
  position: absolute;
  top: 18px; right: 22px;
  font-size: 3rem;
  color: rgba(0, 180, 166, 0.25);
  line-height: 1;
}
.hk-testimonial-stars { color: var(--hk-gold); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 14px; }
.hk-testimonial-text { color: #c6d4e8; font-size: 0.94rem; flex-grow: 1; margin-bottom: 20px; }
.hk-testimonial-author { display: flex; align-items: center; gap: 12px; }
.hk-testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hk-orange), var(--hk-orange-dark));
  color: #fff;
  font-family: var(--hk-font-head);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hk-testimonial-author strong { color: #fff; font-size: 0.95rem; display: block; line-height: 1.2; }
.hk-testimonial-author small { color: #8ba0bf; font-size: 0.78rem; }

.hk-testimonials-controls { display: flex; justify-content: center; gap: 12px; margin-top: 34px; }
.hk-carousel-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1.1rem;
  display: inline-flex; align-items: center; justify-content: center;
  transition: var(--hk-trans);
  cursor: pointer;
}
.hk-carousel-btn:hover { background: var(--hk-teal); border-color: var(--hk-teal); transform: translateY(-3px); }

/* --------------------------------------------------------------------------
   14. Blog cards
   -------------------------------------------------------------------------- */
.hk-blog-card {
  background: #fff;
  border: 1px solid var(--hk-border);
  border-radius: var(--hk-radius);
  overflow: hidden;
  height: 100%;
  transition: var(--hk-trans);
  display: flex;
  flex-direction: column;
}
.hk-blog-card:hover { transform: translateY(-8px); box-shadow: var(--hk-shadow-lg); border-color: rgba(0, 180, 166, 0.35); }

.hk-blog-thumb { position: relative; display: block; }
.hk-blog-thumb-bg {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--hk-teal), var(--hk-teal-dark));
  transition: var(--hk-trans);
}
.hk-blog-tone-1 { background: linear-gradient(135deg, #00c9b8, #008f85); }
.hk-blog-tone-2 { background: linear-gradient(135deg, #ff9a55, var(--hk-orange-dark)); }
.hk-blog-tone-3 { background: linear-gradient(135deg, #7f9cf5, #5a6fd4); }
.hk-blog-tone-4 { background: linear-gradient(135deg, #ffc94d, #f2a41c); }
.hk-blog-card:hover .hk-blog-thumb-bg { transform: scale(1.04); }
.hk-blog-thumb-bg i { transition: var(--hk-trans); }
.hk-blog-card:hover .hk-blog-thumb-bg i { transform: scale(1.12); }
.hk-blog-thumb-lg { height: 260px; font-size: 4rem; }
.hk-blog-thumb-xl { height: 320px; font-size: 4.5rem; }

.hk-blog-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(10, 27, 51, 0.82);
  color: #fff;
  font-family: var(--hk-font-head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.hk-blog-cat-lg { font-size: 0.74rem; }

.hk-blog-body { padding: 22px; display: flex; flex-direction: column; flex-grow: 1; }
.hk-blog-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; font-size: 0.78rem; color: var(--hk-muted); }
.hk-blog-meta span { display: inline-flex; align-items: center; gap: 5px; }
.hk-blog-meta i { color: var(--hk-teal); }
.hk-blog-body h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.4; }
.hk-blog-body h3 a { color: var(--hk-ink); }
.hk-blog-body h3 a:hover { color: var(--hk-teal-dark); }
.hk-blog-body p { color: var(--hk-muted); font-size: 0.88rem; margin-bottom: 16px; flex-grow: 1; }
.hk-blog-readmore {
  font-family: var(--hk-font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--hk-teal-dark);
  display: inline-flex; align-items: center; gap: 6px;
}
.hk-blog-readmore i { transition: var(--hk-trans); }
.hk-blog-readmore:hover { color: var(--hk-orange); }
.hk-blog-readmore:hover i { transform: translateX(4px); }

/* Featured post */
.hk-blog-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--hk-border);
  border-radius: var(--hk-radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--hk-shadow-sm);
}
.hk-blog-featured-thumb { position: relative; display: block; min-height: 340px; }
.hk-blog-featured-thumb .hk-blog-thumb-bg { height: 100%; }
.hk-blog-featured-body { padding: 38px; display: flex; flex-direction: column; justify-content: center; }
.hk-blog-featured-body h2 { font-size: 1.6rem; line-height: 1.3; margin-bottom: 14px; }
.hk-blog-featured-body h2 a { color: var(--hk-ink); }
.hk-blog-featured-body h2 a:hover { color: var(--hk-teal-dark); }
.hk-blog-featured-body p { color: var(--hk-muted); margin-bottom: 20px; }
@media (max-width: 991.98px) {
  .hk-blog-featured { grid-template-columns: 1fr; }
  .hk-blog-featured-thumb { min-height: 240px; }
}

/* --------------------------------------------------------------------------
   15. FAQ accordion
   -------------------------------------------------------------------------- */
.hk-accordion .accordion-item {
  background: #fff;
  border: 1px solid var(--hk-border) !important;
  border-radius: 16px !important;
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--hk-trans);
}
.hk-accordion .accordion-item:focus-within,
.hk-accordion .accordion-item:hover { border-color: rgba(0, 180, 166, 0.4) !important; box-shadow: var(--hk-shadow-sm); }
.hk-accordion .accordion-button {
  background: #fff;
  box-shadow: none;
  font-family: var(--hk-font-head);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--hk-ink);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 16px !important;
}
.hk-accordion .accordion-button:not(.collapsed) { color: var(--hk-teal-dark); }
.hk-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300a99b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-size: 1.1rem;
}
.hk-faq-num {
  font-family: var(--hk-font-head);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--hk-orange);
  background: var(--hk-orange-soft);
  border-radius: 8px;
  padding: 5px 9px;
  flex-shrink: 0;
}
.hk-accordion .accordion-body { padding: 0 22px 22px 58px; color: var(--hk-muted); font-size: 0.94rem; }

.hk-accordion-light .accordion-item { background: var(--hk-light); border-color: var(--hk-border) !important; }
.hk-accordion-light .accordion-button { background: var(--hk-light); }

/* --------------------------------------------------------------------------
   16. Page head
   -------------------------------------------------------------------------- */
.hk-page-head {
  position: relative;
  background: linear-gradient(155deg, #0e2850 0%, var(--hk-ink) 60%, #081426 100%);
  padding: 66px 0;
  overflow: hidden;
}
.hk-page-head-bg { position: absolute; inset: 0; pointer-events: none; }
.hk-page-head .hk-blob-1 { width: 420px; height: 420px; right: -120px; top: -180px; background: rgba(0, 180, 166, 0.3); }
.hk-page-head .hk-blob-2 { width: 380px; height: 380px; left: -140px; bottom: -200px; background: rgba(255, 122, 47, 0.24); }
.hk-page-head .hk-grid {
  -webkit-mask-image: radial-gradient(ellipse 80% 90% at 30% 0%, #000 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 90% at 30% 0%, #000 30%, transparent 100%);
}
.hk-page-head-inner { position: relative; z-index: 2; text-align: center; }
.hk-page-title { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 12px; }
.hk-page-subtitle { color: #b7c8df; font-size: 1.05rem; max-width: 620px; margin: 0 auto 18px; }
.hk-breadcrumb { justify-content: center; margin: 0; }
.hk-breadcrumb .breadcrumb-item { font-size: 0.85rem; }
.hk-breadcrumb .breadcrumb-item a { color: #8ba0bf; }
.hk-breadcrumb .breadcrumb-item a:hover { color: var(--hk-teal); }
.hk-breadcrumb .breadcrumb-item.active { color: var(--hk-gold); }
.hk-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255, 255, 255, 0.3); content: '›'; }

/* --------------------------------------------------------------------------
   17. Services list
   -------------------------------------------------------------------------- */
.hk-filterbar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}
.hk-filterbar-title {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--hk-border);
  border-radius: 16px;
  padding: 14px 20px;
  align-self: flex-start;
  box-shadow: var(--hk-shadow-sm);
}
.hk-filterbar-title > i { font-size: 1.4rem; color: var(--hk-teal); }
.hk-filterbar-title strong { font-family: var(--hk-font-head); font-size: 0.98rem; color: var(--hk-ink); display: block; line-height: 1.3; }
.hk-filterbar-title small { font-size: 0.78rem; color: var(--hk-muted); }
.hk-filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; }
.hk-filter-tab {
  border: 1.5px solid var(--hk-border);
  background: #fff;
  color: var(--hk-muted);
  font-family: var(--hk-font-head);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 7px;
  transition: var(--hk-trans);
}
.hk-filter-tab i { font-size: 0.9rem; color: var(--hk-teal-dark); }
.hk-filter-tab:hover { border-color: var(--hk-teal); color: var(--hk-ink); transform: translateY(-2px); }
.hk-filter-tab.active {
  background: linear-gradient(135deg, var(--hk-teal), var(--hk-teal-dark));
  border-color: var(--hk-teal);
  color: #fff;
}
.hk-filter-tab.active i { color: #fff; }

.hk-empty { text-align: center; padding: 40px; color: var(--hk-muted); }
.hk-empty-big { padding: 70px 20px; }
.hk-empty-big i { font-size: 3rem; color: #c4cfe0; display: block; margin-bottom: 14px; }
.hk-empty-big h3 { margin-bottom: 8px; }
.hk-empty-big p { margin-bottom: 20px; }

/* --------------------------------------------------------------------------
   18. Service detail
   -------------------------------------------------------------------------- */
.hk-detail-main { max-width: 820px; }
.hk-detail-hero { display: flex; align-items: center; gap: 20px; margin-bottom: 26px; }
.hk-detail-icon-lg {
  width: 74px; height: 74px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--hk-teal), var(--hk-teal-dark));
  color: #fff;
  font-size: 2rem;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--hk-shadow-teal);
}
.hk-detail-cat {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hk-orange-dark);
  display: inline-flex; align-items: center; gap: 6px;
  margin-bottom: 6px;
}
.hk-detail-title { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 0; }

.hk-detail-info-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 34px; }
.hk-detail-info {
  background: var(--hk-light);
  border: 1px solid var(--hk-border);
  border-radius: 16px;
  padding: 18px;
  display: flex; align-items: center; gap: 14px;
}
.hk-detail-info > i { font-size: 1.5rem; color: var(--hk-teal-dark); }
.hk-detail-info small { display: block; font-size: 0.74rem; color: var(--hk-muted); }
.hk-detail-info strong { font-family: var(--hk-font-head); font-size: 1rem; color: var(--hk-ink); }
.hk-detail-info strong span { font-size: 0.8rem; color: var(--hk-muted); font-weight: 600; }
@media (max-width: 767.98px) { .hk-detail-info-row { grid-template-columns: 1fr; } }

.hk-detail-block { margin-bottom: 36px; }
.hk-detail-block h3 { font-size: 1.3rem; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.hk-detail-block h3::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--hk-border), transparent);
}
.hk-detail-block p { color: var(--hk-muted); font-size: 0.98rem; margin: 0; }

.hk-feature-list { list-style: none; padding: 0; margin: 0; }
.hk-feature-item {
  display: flex; align-items: center; gap: 12px;
  background: #fff;
  border: 1px solid var(--hk-border);
  border-radius: 14px;
  padding: 14px 16px;
  height: 100%;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--hk-ink);
  transition: var(--hk-trans);
}
.hk-feature-item:hover { border-color: rgba(0, 180, 166, 0.4); transform: translateY(-3px); box-shadow: var(--hk-shadow-sm); }
.hk-feature-icon {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--hk-teal-soft);
  color: var(--hk-teal-dark);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.hk-detail-sidebar { position: sticky; top: 96px; display: grid; gap: 22px; }
.hk-book-card {
  background: #fff;
  border: 1px solid var(--hk-border);
  border-radius: var(--hk-radius);
  padding: 26px;
  box-shadow: var(--hk-shadow);
}
.hk-book-card-head h3 { font-size: 1.2rem; margin-bottom: 6px; }
.hk-book-card-head p { color: var(--hk-muted); font-size: 0.85rem; margin: 0; }
.hk-book-price {
  background: var(--hk-light);
  border: 1px dashed rgba(0, 180, 166, 0.4);
  border-radius: 14px;
  padding: 16px;
  margin: 18px 0;
}
.hk-book-price small { font-size: 0.76rem; color: var(--hk-muted); }
.hk-book-price strong { font-family: var(--hk-font-head); font-size: 1.8rem; color: var(--hk-ink); }
.hk-book-price span { color: var(--hk-muted); font-size: 0.9rem; }
.hk-book-cta { width: 100%; margin-bottom: 12px; }
.hk-whatsapp-link {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1.5px solid rgba(37, 211, 102, 0.35);
  color: #128c4a;
  font-family: var(--hk-font-head);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 18px;
  background: #f0fbf4;
}
.hk-whatsapp-link:hover { background: #25d366; border-color: #25d366; color: #fff; }
.hk-book-perks { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.hk-book-perks li { display: flex; align-items: center; gap: 10px; font-size: 0.86rem; color: var(--hk-muted); }
.hk-book-perks i { color: var(--hk-teal); }

.hk-side-card {
  background: #fff;
  border: 1px solid var(--hk-border);
  border-radius: var(--hk-radius);
  padding: 24px;
}
.hk-side-card h4 { font-size: 1.05rem; margin-bottom: 10px; display: flex; align-items: center; gap: 9px; }
.hk-side-card h4 i { color: var(--hk-teal); }
.hk-side-card p { color: var(--hk-muted); font-size: 0.88rem; margin-bottom: 14px; }
.hk-side-card-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--hk-font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--hk-ink);
}
.hk-side-card-phone i { color: var(--hk-orange); }
.hk-side-card-phone:hover { color: var(--hk-teal-dark); }
.hk-side-card-muted { background: var(--hk-light); border-color: var(--hk-border); }
.hk-side-card-small { font-size: 0.76rem !important; margin-bottom: 0 !important; }

/* --------------------------------------------------------------------------
   19. Booking
   -------------------------------------------------------------------------- */
.hk-booking-wrap { max-width: 1100px; margin: 0 auto; }
.hk-booking-card {
  background: #fff;
  border: 1px solid var(--hk-border);
  border-radius: var(--hk-radius);
  padding: 30px;
  margin-bottom: 26px;
  box-shadow: var(--hk-shadow-sm);
}
.hk-booking-step-head { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.hk-booking-step-num {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--hk-teal), var(--hk-teal-dark));
  color: #fff;
  font-family: var(--hk-font-head);
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hk-booking-step-head h2 { font-size: 1.25rem; margin-bottom: 2px; }
.hk-booking-step-head p { color: var(--hk-muted); font-size: 0.86rem; margin: 0; }

.hk-booking-service-list { display: grid; gap: 10px; max-height: 340px; overflow-y: auto; padding-right: 6px; }
.hk-booking-service-list::-webkit-scrollbar { width: 6px; }
.hk-booking-service-list::-webkit-scrollbar-thumb { background: #d5e0ee; border-radius: 6px; }
.hk-svc-option input { position: absolute; opacity: 0; pointer-events: none; }
.hk-svc-option-box {
  display: flex; align-items: center; gap: 14px;
  border: 1.5px solid var(--hk-border);
  border-radius: 14px;
  padding: 14px 16px;
  cursor: pointer;
  transition: var(--hk-trans);
  background: #fff;
  position: relative;
}
.hk-svc-option:hover .hk-svc-option-box { border-color: rgba(0, 180, 166, 0.5); transform: translateX(4px); }
.hk-svc-option input:checked + .hk-svc-option-box {
  border-color: var(--hk-teal);
  background: var(--hk-teal-soft);
  box-shadow: 0 0 0 3px rgba(0, 180, 166, 0.12);
}
.hk-svc-option-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--hk-light);
  color: var(--hk-teal-dark);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--hk-trans);
}
.hk-svc-option input:checked + .hk-svc-option-box .hk-svc-option-icon { background: #fff; }
.hk-svc-option-body { flex-grow: 1; min-width: 0; }
.hk-svc-option-body strong { font-family: var(--hk-font-head); font-size: 0.94rem; color: var(--hk-ink); display: block; }
.hk-svc-option-body small { color: var(--hk-muted); font-size: 0.78rem; }
.hk-svc-option-price { font-family: var(--hk-font-head); font-weight: 700; font-size: 0.92rem; color: var(--hk-orange-dark); flex-shrink: 0; }
.hk-svc-option-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid #d5e0ee;
  display: inline-flex; align-items: center; justify-content: center;
  color: transparent;
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: var(--hk-trans);
}
.hk-svc-option input:checked + .hk-svc-option-box .hk-svc-option-check {
  background: var(--hk-teal);
  border-color: var(--hk-teal);
  color: #fff;
}

.hk-form-label { font-family: var(--hk-font-head); font-size: 0.85rem; font-weight: 600; color: var(--hk-ink); margin-bottom: 7px; }
.hk-form-label small { color: var(--hk-muted); font-weight: 400; }
.hk-form-control {
  border: 1.5px solid var(--hk-border);
  border-radius: 12px;
  padding: 12px 15px;
  font-size: 0.94rem;
  color: var(--hk-ink);
  transition: var(--hk-trans);
}
.hk-form-control:focus { border-color: var(--hk-teal); box-shadow: 0 0 0 0.25rem rgba(0, 180, 166, 0.15); }
.hk-form-control::placeholder { color: #a7b4c8; }
.hk-form-textarea { resize: vertical; min-height: 96px; }
.hk-form-error { display: block; font-size: 0.78rem; color: #dc3545; margin-top: 5px; }
.hk-input-group { position: relative; }
.hk-input-prefix {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--hk-font-head);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--hk-muted);
  border-right: 1.5px solid var(--hk-border);
  padding-right: 10px;
  pointer-events: none;
  z-index: 2;
}
.hk-input-group .hk-form-control { padding-left: 52px; }

.hk-time-slots { display: flex; gap: 10px; flex-wrap: wrap; }
.hk-time-slot input { position: absolute; opacity: 0; pointer-events: none; }
.hk-time-slot span {
  display: inline-flex;
  border: 1.5px solid var(--hk-border);
  border-radius: 12px;
  padding: 11px 18px;
  font-family: var(--hk-font-head);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--hk-muted);
  cursor: pointer;
  transition: var(--hk-trans);
  background: #fff;
}
.hk-time-slot:hover span { border-color: rgba(0, 180, 166, 0.5); color: var(--hk-ink); }
.hk-time-slot input:checked + span {
  background: linear-gradient(135deg, var(--hk-teal), var(--hk-teal-dark));
  border-color: var(--hk-teal);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 180, 166, 0.25);
}

.hk-booking-side { position: sticky; top: 96px; display: grid; gap: 22px; }
.hk-summary-slot {
  display: flex; align-items: center; gap: 12px;
  background: var(--hk-light);
  border-radius: 14px;
  padding: 14px;
}
.hk-summary-slot > i { font-size: 1.4rem; color: var(--hk-teal-dark); }
.hk-summary-slot small { display: block; font-size: 0.72rem; color: var(--hk-muted); }
.hk-summary-slot strong { font-family: var(--hk-font-head); font-size: 0.92rem; color: var(--hk-ink); }
.hk-summary-list { list-style: none; padding: 0; margin: 18px 0; display: grid; gap: 12px; }
.hk-summary-list li { display: flex; justify-content: space-between; gap: 10px; font-size: 0.88rem; }
.hk-summary-list span { color: var(--hk-muted); display: inline-flex; align-items: center; gap: 7px; }
.hk-summary-list span i { color: var(--hk-teal); }
.hk-summary-list strong { font-family: var(--hk-font-head); color: var(--hk-ink); text-align: right; }
.hk-book-note { font-size: 0.78rem; color: var(--hk-muted); margin: 14px 0 0; text-align: center; display: flex; align-items: center; justify-content: center; gap: 6px; }
.hk-book-note i { color: var(--hk-teal); }

/* --------------------------------------------------------------------------
   20. Booking success
   -------------------------------------------------------------------------- */
.hk-section-success { background: linear-gradient(160deg, #0e2850 0%, var(--hk-ink) 60%, #081426 100%); overflow: hidden; }
.hk-section-success-bg { position: absolute; inset: 0; pointer-events: none; }
.hk-section-success .hk-blob-1 { width: 500px; height: 500px; left: -200px; top: -200px; background: rgba(0, 180, 166, 0.3); }
.hk-success-card {
  position: relative; z-index: 2;
  background: #fff;
  border-radius: 26px;
  max-width: 620px;
  margin: 0 auto;
  padding: 52px 40px;
  text-align: center;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
}
.hk-success-icon-wrap {
  width: 96px; height: 96px;
  margin: 0 auto 22px;
  background: var(--hk-teal-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: hkPulse 2s infinite;
}
.hk-success-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hk-teal), var(--hk-teal-dark));
  color: #fff;
  font-size: 2.2rem;
  display: flex; align-items: center; justify-content: center;
}
@keyframes hkPulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 180, 166, 0.4); }
  70% { box-shadow: 0 0 0 20px rgba(0, 180, 166, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 180, 166, 0); }
}
.hk-success-title { font-size: 1.9rem; margin: 10px 0 12px; }
.hk-success-text { color: var(--hk-muted); font-size: 1rem; max-width: 440px; margin: 0 auto 26px; }
.hk-success-booking-no {
  background: var(--hk-light);
  border: 1.5px dashed rgba(0, 180, 166, 0.5);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 28px;
}
.hk-success-booking-no small { display: block; font-size: 0.76rem; color: var(--hk-muted); margin-bottom: 4px; }
.hk-success-booking-no strong {
  font-family: var(--hk-font-head);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--hk-teal-dark);
}
.hk-success-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.hk-success-help { font-size: 0.86rem; color: var(--hk-muted); margin: 0; }
.hk-success-help a { font-weight: 600; }

/* --------------------------------------------------------------------------
   21. Contact
   -------------------------------------------------------------------------- */
.hk-contact-info h2 { margin-bottom: 6px; }
.hk-contact-list { list-style: none; padding: 0; margin: 30px 0; display: grid; gap: 20px; }
.hk-contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.hk-contact-icon {
  width: 52px; height: 52px;
  border-radius: 15px;
  background: var(--hk-teal-soft);
  color: var(--hk-teal-dark);
  font-size: 1.3rem;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--hk-trans);
}
.hk-contact-list li:hover .hk-contact-icon { background: var(--hk-teal); color: #fff; transform: translateY(-3px); }
.hk-contact-list small { display: block; font-size: 0.74rem; color: var(--hk-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.hk-contact-list strong { font-family: var(--hk-font-head); font-size: 1.02rem; color: var(--hk-ink); font-weight: 600; }
.hk-contact-list strong a { color: var(--hk-ink); }
.hk-contact-list strong a:hover { color: var(--hk-teal-dark); }

.hk-whatsapp-card {
  display: flex; align-items: center; gap: 14px;
  background: linear-gradient(135deg, #1faf5b, #128c4a);
  border-radius: 18px;
  padding: 18px 22px;
  color: #fff;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.3);
}
.hk-whatsapp-card:hover { transform: translateY(-4px); color: #fff; box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4); }
.hk-whatsapp-card-icon {
  width: 48px; height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.hk-whatsapp-card small { display: block; font-size: 0.74rem; opacity: 0.85; }
.hk-whatsapp-card strong { font-family: var(--hk-font-head); font-size: 1rem; }
.hk-whatsapp-card-arrow { margin-left: auto; font-size: 1.2rem; }

.hk-contact-form-card {
  background: #fff;
  border: 1px solid var(--hk-border);
  border-radius: var(--hk-radius-lg);
  padding: 38px;
  box-shadow: var(--hk-shadow);
}
.hk-contact-form-card h3 { font-size: 1.5rem; margin-bottom: 24px; }
.hk-contact-submit { display: inline-flex; align-items: center; gap: 9px; }

/* --------------------------------------------------------------------------
   22. About
   -------------------------------------------------------------------------- */
.hk-about-lead { font-size: 1.1rem; color: var(--hk-ink); font-weight: 500; }
.hk-about-milestones { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 18px; }
.hk-about-milestones li { display: flex; align-items: center; gap: 16px; }
.hk-milestone-icon {
  width: 52px; height: 52px;
  border-radius: 15px;
  background: var(--hk-orange-soft);
  color: var(--hk-orange-dark);
  font-size: 1.3rem;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hk-about-milestones strong { font-family: var(--hk-font-head); font-size: 1rem; color: var(--hk-ink); display: block; }
.hk-about-milestones small { color: var(--hk-muted); font-size: 0.84rem; }

.hk-about-visual { position: relative; padding: 30px 0 60px 40px; }
.hk-about-visual::before {
  content: '';
  position: absolute;
  inset: 30px 0 0 40px;
  border-radius: 30px;
  background: linear-gradient(150deg, var(--hk-teal-soft), var(--hk-orange-soft));
  transform: rotate(-3deg);
}
.hk-about-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--hk-border);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--hk-shadow-lg);
}
.hk-about-card-main { max-width: 300px; margin-left: auto; z-index: 2; }
.hk-about-card-sub { max-width: 300px; margin: -40px auto 0 0; z-index: 3; }
.hk-about-card-icon {
  width: 54px; height: 54px;
  border-radius: 15px;
  background: var(--hk-teal-soft);
  color: var(--hk-teal-dark);
  font-size: 1.4rem;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.hk-about-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.hk-about-card p { color: var(--hk-muted); font-size: 0.9rem; margin: 0; }
.hk-about-chip {
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--hk-ink);
  color: #fff;
  font-family: var(--hk-font-head);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: var(--hk-shadow);
  z-index: 4;
}
.hk-about-chip i { color: var(--hk-gold); }
.hk-about-chip-top { top: 0; right: 0; }
.hk-about-chip-bottom { bottom: 0; left: 10px; }

.hk-value-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--hk-radius);
  padding: 28px;
  height: 100%;
  transition: var(--hk-trans);
  backdrop-filter: blur(8px);
}
.hk-value-card:hover { transform: translateY(-6px); border-color: rgba(0, 180, 166, 0.45); }
.hk-value-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--hk-teal), var(--hk-teal-dark));
  color: #fff;
  font-size: 1.4rem;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.hk-value-card h3 { color: #fff; font-size: 1.05rem; margin-bottom: 10px; }
.hk-value-card p { color: #9db1cc; font-size: 0.88rem; margin: 0; }

.hk-about-stats-row { }
.hk-about-stat {
  background: #fff;
  border: 1px solid var(--hk-border);
  border-radius: var(--hk-radius);
  padding: 28px 20px;
  text-align: center;
  height: 100%;
  transition: var(--hk-trans);
}
.hk-about-stat:hover { transform: translateY(-5px); box-shadow: var(--hk-shadow); border-color: rgba(0, 180, 166, 0.35); }
.hk-about-stat > i { font-size: 1.8rem; color: var(--hk-teal); display: block; margin-bottom: 12px; }
.hk-about-stat strong { font-family: var(--hk-font-head); font-size: 2rem; color: var(--hk-ink); display: block; line-height: 1.1; }
.hk-about-stat-suffix { font-size: 1rem; color: var(--hk-muted); }
.hk-about-stat span { font-size: 0.85rem; color: var(--hk-muted); }

.hk-about-cta-box {
  background: linear-gradient(135deg, var(--hk-ink-3), var(--hk-ink));
  border-radius: 28px;
  padding: 54px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hk-about-cta-box::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  filter: blur(70px);
  background: rgba(0, 180, 166, 0.35);
  top: -120px; left: -80px;
}
.hk-about-cta-box::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  filter: blur(70px);
  background: rgba(255, 122, 47, 0.3);
  bottom: -140px; right: -80px;
}
.hk-about-cta-box h2 { color: #fff; font-size: 1.8rem; margin-bottom: 10px; position: relative; z-index: 2; }
.hk-about-cta-box p { color: #b7c8df; margin-bottom: 24px; position: relative; z-index: 2; }
.hk-about-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }

/* --------------------------------------------------------------------------
   23. Blog list / detail
   -------------------------------------------------------------------------- */
.hk-blog-thumb-feature { border-radius: var(--hk-radius); overflow: hidden; }
.hk-article-title { font-size: clamp(1.7rem, 3.4vw, 2.3rem); margin-bottom: 16px; }
.hk-article-meta {
  display: flex; gap: 20px; flex-wrap: wrap;
  padding-bottom: 20px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--hk-border);
  font-size: 0.85rem; color: var(--hk-muted);
}
.hk-article-meta span { display: inline-flex; align-items: center; gap: 7px; }
.hk-article-meta i { color: var(--hk-teal); }
.hk-article-content { color: var(--hk-body); font-size: 1.02rem; }
.hk-article-content h3 { font-size: 1.3rem; margin: 28px 0 12px; }
.hk-article-content p { margin-bottom: 18px; line-height: 1.85; }
.hk-article-content ul, .hk-article-content ol { margin-bottom: 18px; }
.hk-article-content li { margin-bottom: 8px; }
.hk-article-content strong { color: var(--hk-ink); }

.hk-article-cta {
  display: flex; align-items: center; gap: 18px;
  background: linear-gradient(135deg, var(--hk-teal-soft), #ddf4f1);
  border: 1px solid rgba(0, 180, 166, 0.25);
  border-radius: 18px;
  padding: 24px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hk-article-cta > i { font-size: 2rem; color: var(--hk-teal-dark); }
.hk-article-cta h3 { font-size: 1.05rem; margin: 0 0 4px; }
.hk-article-cta p { color: var(--hk-muted); font-size: 0.88rem; margin: 0; }
.hk-article-cta .btn { margin-left: auto; }

.hk-blog-sidebar { position: sticky; top: 96px; display: grid; gap: 22px; }
.hk-recent-posts { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.hk-recent-posts a { display: flex; gap: 12px; align-items: center; }
.hk-recent-post-thumb {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--hk-teal), var(--hk-teal-dark));
  color: #fff;
  font-size: 1.1rem;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hk-recent-post-body { min-width: 0; }
.hk-recent-post-body strong { font-family: var(--hk-font-head); font-size: 0.86rem; color: var(--hk-ink); display: block; line-height: 1.35; }
.hk-recent-post-body small { font-size: 0.74rem; color: var(--hk-muted); }
.hk-recent-posts a:hover .hk-recent-post-body strong { color: var(--hk-teal-dark); }
.hk-side-card-cta { background: linear-gradient(150deg, var(--hk-ink-3), var(--hk-ink)); border-color: transparent; }
.hk-side-card-cta h4 { color: #fff; }
.hk-side-card-cta h4 i { color: var(--hk-gold); }
.hk-side-card-cta p { color: #9db1cc; }

.hk-pagination { margin-top: 40px; }
.hk-pagination .page-link {
  border: 1.5px solid var(--hk-border);
  color: var(--hk-muted);
  font-family: var(--hk-font-head);
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0 4px;
  border-radius: 12px !important;
  padding: 10px 16px;
  transition: var(--hk-trans);
}
.hk-pagination .page-link:hover { border-color: var(--hk-teal); color: var(--hk-teal-dark); background: var(--hk-teal-soft); }
.hk-pagination .active .page-link {
  background: linear-gradient(135deg, var(--hk-teal), var(--hk-teal-dark));
  border-color: var(--hk-teal);
  color: #fff;
}
.hk-pagination .page-item:first-child .page-link,
.hk-pagination .page-item:last-child .page-link { border-radius: 12px !important; }

/* --------------------------------------------------------------------------
   24. Flash
   -------------------------------------------------------------------------- */
.hk-flash-wrap { position: relative; z-index: 20; padding-top: 18px; }
.hk-alert {
  border-radius: 14px;
  border-width: 1.5px;
  box-shadow: var(--hk-shadow);
  padding: 14px 18px;
}
.hk-alert-success { background: #eafaf3; border-color: rgba(37, 211, 102, 0.35); color: #128c4a; }
.hk-alert-danger { background: #fef0ef; border-color: rgba(220, 53, 69, 0.3); color: #b02a37; }

/* --------------------------------------------------------------------------
   25. Footer
   -------------------------------------------------------------------------- */
.hk-cta-band {
  background: linear-gradient(135deg, var(--hk-teal) 0%, var(--hk-teal-dark) 60%, #007b72 100%);
  padding: 54px 0;
  position: relative;
  overflow: hidden;
}
.hk-cta-band::before {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  top: -160px; right: -100px;
}
.hk-cta-band::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255, 201, 77, 0.18);
  bottom: -140px; left: 8%;
}
.hk-cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  position: relative; z-index: 2;
}
.hk-cta-content .hk-eyebrow-light { background: rgba(255, 255, 255, 0.16); border-color: rgba(255, 255, 255, 0.3); color: #fff; }
.hk-cta-title { color: #fff; font-size: clamp(1.6rem, 3.2vw, 2.3rem); font-weight: 800; margin: 12px 0 8px; }
.hk-cta-content p { color: rgba(255, 255, 255, 0.9); margin: 0; font-size: 1rem; }
.hk-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hk-footer { background: #060f20; color: #8ba0bf; }
.hk-footer-main { padding: 60px 0 40px; }
.hk-footer-brand .hk-brand-text strong { color: #fff; }
.hk-footer-brand .hk-brand-text small { color: #6d83a5; }
.hk-footer-brand .hk-logo { box-shadow: 0 0 0 3px rgba(0, 180, 166, 0.4); }
.hk-footer-about { font-size: 0.9rem; margin: 18px 0 22px; max-width: 340px; }
.hk-footer-social { list-style: none; padding: 0; margin: 0; display: flex; gap: 10px; }
.hk-footer-social a {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #9db1cc;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--hk-trans);
}
.hk-footer-social a:hover { background: var(--hk-teal); color: #fff; transform: translateY(-3px); border-color: var(--hk-teal); }

.hk-footer-title {
  font-family: var(--hk-font-head);
  color: #fff;
  font-size: 1.02rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.hk-footer-title::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 34px; height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--hk-teal), var(--hk-orange));
}
.hk-footer-links, .hk-footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.hk-footer-links a { color: #8ba0bf; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; }
.hk-footer-links a i { font-size: 0.68rem; color: var(--hk-teal); transition: var(--hk-trans); }
.hk-footer-links a:hover { color: var(--hk-teal); padding-left: 4px; }
.hk-footer-links a:hover i { transform: translateX(3px); }
.hk-footer-contact li { display: flex; gap: 12px; font-size: 0.9rem; align-items: flex-start; }
.hk-footer-contact li > i { color: var(--hk-teal); font-size: 1rem; margin-top: 3px; }
.hk-footer-contact a { color: #8ba0bf; }
.hk-footer-contact a:hover { color: var(--hk-teal); }

.hk-newsletter { margin-top: 22px; }
.hk-newsletter-box {
  display: flex;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  max-width: 300px;
  transition: var(--hk-trans);
}
.hk-newsletter-box:focus-within { border-color: var(--hk-teal); }
.hk-newsletter-box input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 0.88rem;
  padding: 12px 14px;
  flex: 1;
  min-width: 0;
}
.hk-newsletter-box input::placeholder { color: #5f7394; }
.hk-newsletter-box button {
  background: linear-gradient(135deg, var(--hk-teal), var(--hk-teal-dark));
  border: none;
  color: #fff;
  width: 46px;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--hk-trans);
}
.hk-newsletter-box button:hover { background: var(--hk-orange); }

.hk-footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.07); padding: 20px 0; }
.hk-footer-bottom-inner { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; font-size: 0.85rem; }
.hk-footer-bottom p { margin: 0; }
.hk-footer-bottom strong { color: var(--hk-teal); }
.hk-footer-made i { color: var(--hk-orange); }

/* --------------------------------------------------------------------------
   26. Floating buttons
   -------------------------------------------------------------------------- */
.hk-whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2fd571, #128c4a);
  color: #fff;
  font-size: 1.7rem;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  z-index: 1050;
  animation: hkFloatSmall 4s ease-in-out infinite;
}
.hk-whatsapp-float:hover { transform: scale(1.08); color: #fff; }

.hk-backtop {
  position: fixed;
  bottom: 92px; right: 27px;
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--hk-ink);
  color: #fff;
  font-size: 1rem;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--hk-shadow);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: var(--hk-trans);
}
.hk-backtop.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.hk-backtop:hover { background: var(--hk-teal); color: #fff; }

/* --------------------------------------------------------------------------
   27. 404
   -------------------------------------------------------------------------- */
.hk-section-404 { background: linear-gradient(160deg, #0e2850 0%, var(--hk-ink) 60%, #081426 100%); min-height: 60vh; display: flex; align-items: center; overflow: hidden; }
.hk-404-bg { position: absolute; inset: 0; pointer-events: none; }
.hk-404-bg .hk-blob-1 { width: 460px; height: 460px; right: -160px; top: -160px; background: rgba(0, 180, 166, 0.28); }
.hk-404-wrap { position: relative; z-index: 2; text-align: center; max-width: 560px; margin: 0 auto; }
.hk-404-code { font-family: var(--hk-font-head); font-size: clamp(5rem, 14vw, 9rem); font-weight: 800; color: #fff; line-height: 1; margin-bottom: 10px; }
.hk-404-code span { color: var(--hk-teal); }
.hk-404-code span i { font-size: 0.7em; vertical-align: middle; }
.hk-404-wrap h1 { color: #fff; font-size: 1.7rem; margin-bottom: 12px; }
.hk-404-wrap p { color: #9db1cc; margin-bottom: 28px; }
.hk-404-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   28. Reveal animation
   -------------------------------------------------------------------------- */
.hk-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.hk-reveal.hk-reveal-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* --------------------------------------------------------------------------
   29. Misc / responsive
   -------------------------------------------------------------------------- */
.hk-section-services-list { padding-top: 60px; }

@media (max-width: 991.98px) {
  .hk-section { padding: 64px 0; }
  .hk-detail-sidebar, .hk-booking-side, .hk-blog-sidebar { position: static; }
}
@media (max-width: 575.98px) {
  .hk-section-head-row { flex-direction: column; align-items: flex-start; }
  .hk-success-card { padding: 40px 22px; }
  .hk-contact-form-card { padding: 26px 18px; }
  .hk-about-visual { padding-left: 0; }
  .hk-about-visual::before { left: 0; }
  .hk-about-card-main, .hk-about-card-sub { max-width: 100%; }
  .hk-about-card-sub { margin-top: -20px; }
  .hk-float-chip { display: none; }
  .hk-detail-hero { flex-direction: column; text-align: center; }
}
