/* =====================================================
   HK STYLE FOUNDATION - PREMIUM CUSTOM STYLESHEET
   Royal Blue & Gold | Modern NGO Design
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;0,800;1,700&family=Quicksand:wght@400;500;600;700&display=swap');

/* =================== VARIABLES =================== */
:root {
  --royal-blue: #1B3FA0;
  --royal-blue-dark: #0F2670;
  --royal-blue-light: #2952C3;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #A07830;
  --gold-bg: #FDF8EE;
  --white: #FFFFFF;
  --off-white: #F8FAFF;
  --deep-navy: #0A1628;
  --navy: #111E3A;
  --text-dark: #1A2340;
  --text-mid: #4A5568;
  --text-light: #718096;
  --border-light: #E2E8F0;
  --shadow-sm: 0 2px 8px rgba(27, 63, 160, 0.08);
  --shadow-md: 0 8px 24px rgba(27, 63, 160, 0.12);
  --shadow-lg: 0 20px 60px rgba(27, 63, 160, 0.15);
  --shadow-gold: 0 8px 32px rgba(201, 168, 76, 0.25);
  --gradient-blue: linear-gradient(135deg, #1B3FA0 0%, #0F2670 100%);
  --gradient-gold: linear-gradient(135deg, #C9A84C 0%, #E8C96A 50%, #C9A84C 100%);
  --gradient-hero: linear-gradient(135deg, #0A1628 0%, #1B3FA0 50%, #0F2670 100%);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =================== RESET & BASE =================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

/* Override template body position: fixed */
body {
  position: relative !important;
}

/* =================== SCROLLBAR =================== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--off-white);
}

::-webkit-scrollbar-thumb {
  background: var(--royal-blue);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* =================== SELECTION =================== */
::selection {
  background: var(--royal-blue);
  color: var(--white);
}

/* =================== UTILITY CLASSES =================== */
.hk-section {
  padding: 96px 0;
}

.hk-section-sm {
  padding: 64px 0;
}

.hk-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.hk-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-gold {
  color: var(--gold) !important;
}

.text-royal {
  color: var(--royal-blue) !important;
}

.bg-navy {
  background: var(--navy);
}

.bg-deep-navy {
  background: var(--deep-navy);
}

.bg-off-white {
  background: var(--off-white);
}

.bg-gold-light {
  background: var(--gold-bg);
}

/* =================== SECTION LABELS =================== */
.hk-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
}

.hk-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

.hk-label-white {
  color: rgba(255, 255, 255, 0.8);
}

.hk-label-white::before {
  background: rgba(255, 255, 255, 0.5);
}

/* =================== HEADINGS =================== */
.hk-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.hk-title-white {
  color: var(--white);
}

.hk-title span {
  color: var(--gold);
}

.hk-subtitle {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 640px;
}

.hk-subtitle-white {
  color: rgba(255, 255, 255, 0.75);
}

/* =================== BUTTONS =================== */
.hk-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.hk-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.5s ease;
}

.hk-btn:hover::before {
  transform: translateX(100%) skewX(-15deg);
}

.hk-btn-primary {
  background: var(--gradient-blue);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(27, 63, 160, 0.35);
}

.hk-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(27, 63, 160, 0.4);
  color: var(--white);
}

.hk-btn-gold {
  background: var(--gradient-gold);
  color: var(--deep-navy);
  box-shadow: var(--shadow-gold);
}

.hk-btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(201, 168, 76, 0.4);
  color: var(--deep-navy);
}

.hk-btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.hk-btn-outline:hover {
  background: var(--white);
  color: var(--royal-blue);
  border-color: var(--white);
}

.hk-btn-outline-blue {
  background: transparent;
  color: var(--royal-blue);
  border-color: var(--royal-blue);
}

.hk-btn-outline-blue:hover {
  background: var(--royal-blue);
  color: var(--white);
}

.hk-btn i,
.hk-btn svg {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.hk-btn:hover i,
.hk-btn:hover svg {
  transform: translateX(4px);
}

/* =================== CARDS =================== */
.hk-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.hk-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(27, 63, 160, 0.1);
}

.hk-card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(27, 63, 160, 0.1), rgba(27, 63, 160, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--royal-blue);
  margin-bottom: 20px;
  transition: var(--transition);
}

.hk-card:hover .hk-card-icon {
  background: var(--gradient-blue);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

.hk-card-icon.gold {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
  color: var(--gold-dark);
}

.hk-card:hover .hk-card-icon.gold {
  background: var(--gradient-gold);
  color: var(--deep-navy);
}

.hk-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.hk-card-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* =================== NAVBAR OVERRIDE =================== */
.hk-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 32px;
  transition: var(--transition);
}

.hk-navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(27, 63, 160, 0.12);
  padding: 0 32px;
}

.hk-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  height: 80px;
}

.hk-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

/* ── Single landscape logo ── */
.hk-logo-img {
  display: block;
  height: auto;
  width: 87px;
  max-width: 130px;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

/* Mobile logo in drawer */
.hk-logo-mobile {
  display: flex;
  align-items: center;
}

.hk-logo-img-mobile {
  height: auto;
  width: 140px;
  max-width: 140px;
  object-fit: contain;
  display: block;
}


.hk-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.hk-nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
  position: relative;
}

.hk-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  border-radius: 2px;
}

.hk-nav-links a:hover::after,
.hk-nav-links a.active::after {
  transform: scaleX(1);
}

.hk-nav-links a:hover,
.hk-nav-links a.active {
  color: var(--royal-blue);
}

.hk-nav-hero .hk-nav-links a {
  color: rgba(255, 255, 255, 0.9);
}

.hk-nav-hero .hk-nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

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

.hk-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hk-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* =================== GALLERY SOCIAL BUTTONS =================== */
.hk-social-btns-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.hk-social-btn {
  min-width: 148px;
  justify-content: center;
  padding: 12px 28px;
  font-size: 14px;
  white-space: nowrap;
}

.hk-social-btn i {
  font-size: 16px;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .hk-social-btns-wrap {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 0 8px;
  }

  .hk-social-btn {
    width: 100%;
    min-width: unset;
    justify-content: center;
    padding: 14px 24px;
    font-size: 15px;
  }
}

/* =================== HERO SECTION =================== */
.hk-hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hk-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hk-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  mix-blend-mode: luminosity;
}

.hk-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(27, 63, 160, 0.8) 60%, rgba(15, 38, 112, 0.9) 100%);
}

/* Animated background blobs */
.hk-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  animation: blobFloat 8s ease-in-out infinite;
}

.hk-hero-blob-1 {
  width: 500px;
  height: 500px;
  background: var(--royal-blue-light);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hk-hero-blob-2 {
  width: 400px;
  height: 400px;
  background: var(--gold);
  bottom: -100px;
  left: 200px;
  animation-delay: 3s;
}

.hk-hero-blob-3 {
  width: 300px;
  height: 300px;
  background: var(--royal-blue);
  top: 50%;
  left: 50%;
  animation-delay: 6s;
}

@keyframes blobFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(20px, -30px) scale(1.05);
  }

  66% {
    transform: translate(-15px, 20px) scale(0.95);
  }
}

.hk-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hk-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hk-hero-badge i {
  color: var(--gold);
}

.hk-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 78px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hk-hero-title .gold-text {
  color: var(--gold-light);
}

.hk-hero-desc {
  font-size: clamp(16px, 1.3vw, 18px);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 560px;
}

.hk-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hk-hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hk-hero-stat-item {
  text-align: left;
}

.hk-hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hk-hero-stat-num span {
  color: var(--gold-light);
}

.hk-hero-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  margin-top: 4px;
}

.hk-hero-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  align-self: center;
}

/* Hero image panel */
.hk-hero-img-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hk-hero-img-main {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  border: 3px solid rgba(201, 168, 76, 0.3);
}

.hk-hero-img-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.hk-hero-img-float-1,
.hk-hero-img-float-2 {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatCard 4s ease-in-out infinite;
}

.hk-hero-img-float-1 {
  top: 48px;
  right: -24px;
}

.hk-hero-img-float-2 {
  bottom: 80px;
  left: -24px;
  animation-delay: 2s;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.hk-hero-float-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.hk-hero-float-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--royal-blue);
  line-height: 1;
}

.hk-hero-float-txt {
  font-size: 12px;
  color: var(--text-mid);
  font-weight: 500;
}

/* =================== TRUST BAND =================== */
.hk-trust-band {
  background: var(--off-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
}

.hk-trust-band-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hk-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
}

.hk-trust-item i {
  color: var(--royal-blue);
  font-size: 16px;
}

.hk-trust-divider {
  width: 1px;
  height: 24px;
  background: var(--border-light);
}

/* =================== IMPACT COUNTERS =================== */
.hk-counters {
  background: var(--gradient-blue);
  position: relative;
  overflow: hidden;
}

.hk-counters::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hk-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.hk-counter-item {
  text-align: center;
  padding: 64px 32px;
  position: relative;
  transition: var(--transition);
}

.hk-counter-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.hk-counter-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.hk-counter-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold-light);
  margin: 0 auto 20px;
  transition: var(--transition);
}

.hk-counter-item:hover .hk-counter-icon {
  background: var(--gradient-gold);
  color: var(--deep-navy);
  transform: scale(1.1);
}

.hk-counter-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.hk-counter-num span {
  color: var(--gold-light);
}

.hk-counter-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =================== CAUSES / WORK CARDS =================== */
.hk-causes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.hk-cause-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
}

.hk-cause-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.hk-cause-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.hk-cause-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hk-cause-card:hover .hk-cause-img img {
  transform: scale(1.08);
}

.hk-cause-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--royal-blue);
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 50px;
}

.hk-cause-body {
  padding: 28px;
}

.hk-cause-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
  transition: var(--transition);
}

.hk-cause-card:hover .hk-cause-title {
  color: var(--royal-blue);
}

.hk-cause-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 20px;
}

.hk-cause-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.hk-cause-progress-label span:last-child {
  color: var(--royal-blue);
}

.hk-progress-track {
  height: 6px;
  background: var(--border-light);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.hk-progress-fill {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 10px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0;
}

.hk-progress-fill.animated {
  width: var(--progress-width);
}

.hk-cause-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hk-cause-amount {
  font-size: 13px;
  color: var(--text-mid);
}

.hk-cause-amount strong {
  color: var(--royal-blue);
  font-size: 16px;
}

.hk-cause-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-dark);
  transition: var(--transition);
}

.hk-cause-link:hover {
  color: var(--royal-blue);
  gap: 10px;
}

/* =================== ABOUT SECTION =================== */
.hk-about-img-wrap {
  position: relative;
  padding-bottom: 48px;
  padding-right: 48px;
}

.hk-about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hk-about-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.hk-about-img-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--gradient-gold);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  text-align: center;
  box-shadow: var(--shadow-gold);
  min-width: 160px;
}

.hk-about-img-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--deep-navy);
  line-height: 1;
}

.hk-about-img-badge-txt {
  font-size: 13px;
  font-weight: 700;
  color: var(--deep-navy);
  opacity: 0.8;
}

.hk-about-exp {
  position: absolute;
  top: 32px;
  right: 8px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hk-about-feature-list {
  list-style: none;
  margin-top: 28px;
}

.hk-about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}

.hk-about-feature-item:last-child {
  border-bottom: none;
}

.hk-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(27, 63, 160, 0.1), rgba(27, 63, 160, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--royal-blue);
  flex-shrink: 0;
  transition: var(--transition);
}

.hk-about-feature-item:hover .hk-feature-icon {
  background: var(--gradient-blue);
  color: var(--white);
}

.hk-feature-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.hk-feature-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}

/* =================== TEAM CARDS =================== */
.hk-team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  text-align: center;
}

.hk-team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.hk-team-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.hk-team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hk-team-card:hover .hk-team-img img {
  transform: scale(1.05);
}

.hk-team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(27, 63, 160, 0.85));
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16px;
  gap: 10px;
}

.hk-team-card:hover .hk-team-overlay {
  opacity: 1;
}

.hk-team-social {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  transition: var(--transition);
}

.hk-team-social:hover {
  background: var(--gold);
  color: var(--deep-navy);
}

.hk-team-body {
  padding: 20px;
}

.hk-team-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.hk-team-role {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--royal-blue);
  background: rgba(27, 63, 160, 0.08);
  padding: 4px 14px;
  border-radius: 50px;
}

/* =================== GALLERY =================== */
.hk-gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.hk-gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.hk-gallery-item.tall {
  grid-row: span 2;
}

.hk-gallery-item.wide {
  grid-column: span 2;
}

.hk-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hk-gallery-item:hover img {
  transform: scale(1.08);
}

.hk-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 63, 160, 0.9) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.hk-gallery-item:hover .hk-gallery-overlay {
  opacity: 1;
}

.hk-gallery-caption {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.hk-gallery-sub {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 500;
}

.hk-gallery-zoom {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal-blue);
  font-size: 16px;
  transform: scale(0) rotate(-90deg);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.hk-gallery-item:hover .hk-gallery-zoom {
  transform: scale(1) rotate(0deg);
}

/* =================== TESTIMONIALS =================== */
.hk-testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  position: relative;
}

.hk-testimonial-quote {
  font-size: 80px;
  color: var(--gold);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 0.5;
  margin-bottom: 20px;
  display: block;
}

.hk-testimonial-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.hk-testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.hk-testimonial-stars i {
  color: var(--gold);
  font-size: 14px;
}

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

.hk-testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold-bg);
}

.hk-testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hk-testimonial-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}

.hk-testimonial-role {
  font-size: 12px;
  color: var(--text-mid);
}

/* =================== CTA SECTION =================== */
.hk-cta {
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hk-cta-bg {
  position: absolute;
  inset: 0;
}

.hk-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
}

.hk-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.96) 0%, rgba(27, 63, 160, 0.88) 100%);
}

.hk-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hk-cta-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
}

.hk-cta-wave svg {
  fill: var(--white);
}

/* =================== DONATION FORM =================== */
.hk-donate-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.hk-amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.hk-amount-btn {
  padding: 14px;
  border-radius: 12px;
  border: 2px solid var(--border-light);
  background: var(--off-white);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.hk-amount-btn:hover,
.hk-amount-btn.selected {
  border-color: var(--royal-blue);
  background: var(--royal-blue);
  color: var(--white);
}

.hk-amount-btn.gold-selected {
  border-color: var(--gold);
  background: var(--gradient-gold);
  color: var(--deep-navy);
}

.hk-custom-amount {
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  border: 2px solid var(--border-light);
  font-size: 16px;
  font-weight: 600;
  outline: none;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  margin-bottom: 20px;
}

.hk-custom-amount:focus {
  border-color: var(--royal-blue);
}

/* =================== BANK DETAILS CARD =================== */
.hk-bank-card {
  background: var(--gradient-blue);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: white;
  position: relative;
  overflow: hidden;
}

.hk-bank-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.hk-bank-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.hk-bank-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 1;
}

.hk-bank-item:last-child {
  border-bottom: none;
}

.hk-bank-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.hk-bank-value {
  font-size: 15px;
  font-weight: 700;
  color: white;
}

.hk-bank-copy {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: var(--transition);
  font-size: 12px;
}

.hk-bank-copy:hover {
  background: var(--gold);
  color: var(--deep-navy);
  border-color: var(--gold);
}

/* =================== PROGRAMS / EVENTS =================== */
.hk-program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.hk-program-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(27, 63, 160, 0.2);
}

.hk-program-date {
  width: 80px;
  min-width: 80px;
  background: var(--gradient-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: white;
}

.hk-program-day {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.hk-program-month {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.hk-program-body {
  padding: 20px 24px;
  flex: 1;
}

.hk-program-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.hk-program-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 8px;
}

.hk-program-meta-item {
  font-size: 12px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 5px;
}

.hk-program-meta-item i {
  color: var(--royal-blue);
}

.hk-program-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}

/* =================== PAGE LINKS (QUICK NAV TILES) =================== */
.hk-page-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 220px;
  cursor: pointer;
  display: block;
  transition: var(--transition);
}

.hk-page-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.hk-page-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hk-page-tile:hover img {
  transform: scale(1.06);
}

.hk-page-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 63, 160, 0.92) 0%, rgba(27, 63, 160, 0.3) 60%, transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: var(--transition);
}

.hk-page-tile:hover .hk-page-tile-overlay {
  background: linear-gradient(to top, rgba(10, 22, 40, 0.95) 0%, rgba(27, 63, 160, 0.5) 60%, transparent);
}

.hk-page-tile-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(201, 168, 76, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-navy);
  font-size: 18px;
  margin-bottom: 12px;
  transition: var(--transition);
}

.hk-page-tile:hover .hk-page-tile-icon {
  background: var(--gold);
  transform: scale(1.1);
}

.hk-page-tile-title {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.hk-page-tile-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hk-page-tile-sub i {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.hk-page-tile:hover .hk-page-tile-sub i {
  transform: translateX(4px);
}

/* =================== FORM ELEMENTS =================== */
.hk-form-group {
  margin-bottom: 20px;
}

.hk-form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.hk-form-control {
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  border: 2px solid var(--border-light);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--off-white);
  outline: none;
  transition: var(--transition);
}

.hk-form-control:focus {
  border-color: var(--royal-blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(27, 63, 160, 0.08);
}

.hk-form-control::placeholder {
  color: var(--text-light);
}

.hk-form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231B3FA0' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

textarea.hk-form-control {
  resize: vertical;
  min-height: 120px;
}

/* =================== BREADCRUMB =================== */
.hk-breadcrumb-section {
  background: var(--gradient-hero);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.hk-breadcrumb-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hk-breadcrumb-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.hk-breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}

.hk-breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.hk-breadcrumb-nav a:hover {
  color: var(--gold-light);
}

.hk-breadcrumb-nav .separator {
  color: rgba(255, 255, 255, 0.3);
}

.hk-breadcrumb-nav .current {
  color: var(--gold-light);
  font-weight: 700;
}

/* =================== FOOTER =================== */
.hk-footer {
  background: var(--deep-navy);
  color: rgba(255, 255, 255, 0.75);
}

.hk-footer-top {
  padding: 64px 0 56px;
}

.hk-footer-logo {
  margin-bottom: 24px;
}

.hk-footer-desc {
  font-size: 14px;
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 28px;
}

.hk-footer-socials {
  display: flex;
  gap: 10px;
}

.hk-footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  transition: var(--transition);
}

.hk-footer-social-link:hover {
  background: var(--royal-blue);
  color: white;
  border-color: var(--royal-blue);
}

.hk-footer-heading {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.hk-footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

.hk-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hk-footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.hk-footer-link::before {
  content: '→';
  color: var(--gold);
  opacity: 0;
  transition: var(--transition);
}

.hk-footer-link:hover {
  color: var(--white);
  padding-left: 4px;
}

.hk-footer-link:hover::before {
  opacity: 1;
}

.hk-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 14px;
}

.hk-footer-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.hk-footer-newsletter input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: white;
  font-size: 13px;
  outline: none;
  margin-bottom: 10px;
  transition: var(--transition);
}

.hk-footer-newsletter input:focus {
  border-color: var(--royal-blue);
}

.hk-footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.hk-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

.hk-footer-bottom-links {
  display: flex;
  gap: 20px;
}

.hk-footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.hk-footer-bottom a:hover {
  color: var(--gold-light);
}

/* =================== PAGE NAVIGATION BAND =================== */
.hk-page-nav-band {
  background: var(--off-white);
  border-top: 1px solid var(--border-light);
  padding: 56px 0;
}

.hk-page-nav-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.hk-page-nav-tile {
  text-align: center;
  padding: 24px 16px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  text-decoration: none;
  display: block;
}

.hk-page-nav-tile:hover {
  border-color: var(--royal-blue);
  background: var(--royal-blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.hk-page-nav-tile i {
  font-size: 28px;
  color: var(--royal-blue);
  margin-bottom: 12px;
  display: block;
  transition: var(--transition);
}

.hk-page-nav-tile:hover i {
  color: var(--gold-light);
}

.hk-page-nav-tile-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  transition: var(--transition);
}

.hk-page-nav-tile:hover .hk-page-nav-tile-name {
  color: white;
}

/* =================== REGISTRATION BADGE =================== */
.hk-reg-badge {
  background: var(--gradient-blue);
  color: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.hk-reg-badge::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.hk-reg-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 1;
}

.hk-reg-row:last-child {
  border-bottom: none;
}

.hk-reg-key {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.hk-reg-val {
  font-size: 14px;
  font-weight: 700;
  color: white;
}

.hk-reg-val.gold {
  color: var(--gold-light);
}

/* =================== ANIMATIONS =================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* AOS overrides */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}

/* Scroll indicator */
.hk-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  cursor: pointer;
}

.hk-scroll-indicator-text {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hk-scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}

.hk-scroll-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  animation: scrollDot 1.5s ease-in-out infinite;
}

@keyframes scrollDot {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

/* =================== RESPONSIVE =================== */
@media (max-width: 1200px) {
  .hk-gallery-masonry {
    grid-template-columns: repeat(3, 1fr);
  }

  .hk-counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hk-causes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .hk-section {
    padding: 72px 0;
  }

  .hk-page-nav-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hk-nav-links {
    display: none;
  }

  /* Keep nav-actions visible but hide donate button — hamburger stays */
  .hk-nav-actions .hk-btn {
    display: none;
  }

  .hk-hamburger {
    display: flex !important;
  }

}

@media (max-width: 768px) {
  .hk-gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .hk-gallery-item.wide {
    grid-column: span 1;
  }

  .hk-gallery-item.tall {
    grid-row: span 1;
  }

  .hk-causes-grid {
    grid-template-columns: 1fr;
  }

  .hk-counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hk-counter-item {
    padding: 40px 24px;
  }

  .hk-counter-item::after {
    display: none;
  }

  .hk-page-nav-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hk-hero-stats {
    gap: 24px;
  }

  .hk-donate-wrap {
    padding: 28px;
  }

  .hk-about-img-wrap {
    padding-bottom: 0;
    padding-right: 0;
  }

  .hk-hero-img-float-1,
  .hk-hero-img-float-2 {
    display: none;
  }

  .hk-amount-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .hk-section {
    padding: 56px 0;
  }

  .hk-container {
    padding: 0 16px;
  }

  .hk-gallery-masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .hk-counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hk-hero-btns {
    flex-direction: column;
  }

  .hk-hero-btns .hk-btn {
    width: 100%;
    justify-content: center;
  }

  .hk-page-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hk-amount-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hk-trust-band-inner {
    gap: 20px;
  }
}

/* =================== PRELOADER =================== */
.hk-preloader {
  position: fixed;
  inset: 0;
  background: var(--deep-navy);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hk-preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.hk-preloader-logo {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 32px;
}

.hk-preloader-logo span {
  color: var(--gold-light);
}

.hk-preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.hk-preloader-fill {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 3px;
  animation: preload 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes preload {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

/* =================== BACK TO TOP =================== */
.hk-back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gradient-blue);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-md);
  z-index: 100;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.hk-back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.hk-back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background: var(--gradient-gold);
  color: var(--deep-navy);
}

/* =================== MOBILE MENU & RESPONSIVENESS =================== */
/* Mobile overlay backdrop */
.hk-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.hk-mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile drawer container */
.hk-mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 20px;
  box-shadow: -10px 0 40px rgba(10, 22, 40, 0.08);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hk-mobile-menu.open {
  right: 0;
}

/* Brand header at the top of the menu */
.hk-mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 14px;
}

/* Close button inside mobile menu */
.hk-mobile-close {
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 22px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--off-white);
  transition: var(--transition);
}

.hk-mobile-close:hover {
  color: var(--royal-blue);
  background: rgba(27, 63, 160, 0.08);
  transform: rotate(90deg);
}

/* Scrollable container for links */
.hk-mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
  overflow-y: auto;
  padding-right: 4px;
  /* Hide scrollbar */
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.hk-mobile-menu-links::-webkit-scrollbar {
  display: none;
}

/* Menu links styling */
.hk-mobile-menu-links a {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 10px 16px;
  border-radius: 10px;
  transition: var(--transition);
  border-left: 4px solid transparent;
  background: transparent;
  text-decoration: none;
}

.hk-mobile-menu-links a:hover {
  color: var(--royal-blue);
  background: var(--off-white);
  padding-left: 20px;
}

/* Active Nav Item - capsule background with royal blue border-left indicator */
.hk-mobile-menu-links a.active {
  color: var(--royal-blue);
  background: rgba(27, 63, 160, 0.05);
  font-weight: 700;
  border-left: 4px solid var(--royal-blue);
  padding-left: 16px;
}

/* Footer CTA button inside drawer */
.hk-mobile-menu-footer {
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}

.hk-mobile-menu-footer .hk-btn {
  width: 100%;
  justify-content: center;
  padding: 12px !important;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.hk-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--royal-blue);
  border-radius: 2px;
  transition: var(--transition);
}

.hk-nav-hero .hk-hamburger span {
  background: var(--white);
}

.hk-navbar.scrolled .hk-hamburger span {
  background: var(--royal-blue);
}

/* @media screen and (max-width: 991px) */
@media screen and (max-width: 991px) {
  .hk-navbar {
    padding: 0 16px;
  }

  /* Shrink logo on tablet/mobile nav */
  .hk-logo-img {
    width: 120px;
    max-width: 120px;
  }

  .hk-nav-links {
    display: none !important;
  }

  .hk-nav-actions {
    display: flex !important;
    align-items: center;
  }

  .hk-nav-actions .hk-btn {
    display: none !important;
  }

  .hk-hamburger {
    display: flex !important;
  }
}

/* @media screen and (max-width: 768px) */
@media screen and (max-width: 768px) {
  .hk-section {
    padding: 64px 0;
  }

  .hk-section-sm {
    padding: 48px 0;
  }

  .hk-hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hk-hero-title {
    font-size: 32px;
    line-height: 1.25;
  }

  .hk-hero-badge {
    padding: 6px 14px;
    font-size: 11px;
    margin-bottom: 16px;
  }

  .hk-hero-desc {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .hk-hero-btns {
    margin-bottom: 36px;
  }

  .hk-hero-stats {
    gap: 20px;
  }

  .hk-hero-stat-num {
    font-size: 28px;
  }

  .hk-hero-stat-label {
    font-size: 11px;
  }

  .hk-card {
    padding: 24px;
  }

  .hk-title {
    font-size: 28px;
  }

  /* Logo responsive sizing */
  .hk-logo-img {
    width: 100px;
    max-width: 100px;
  }

  .hk-logo-img-mobile {
    width: 120px;
    max-width: 120px;
  }
}

@media screen and (max-width: 480px) {
  .hk-logo-img {
    width: 90px;
    max-width: 90px;
  }

  .hk-logo-img-mobile {
    width: 110px;
    max-width: 110px;
  }
}

/* =================== OVERFLOW & EXTRA RESPONSIVE FIXES =================== */
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

/* Prevent any section from overflowing */
section,
.hk-section {
  overflow-x: hidden;
  max-width: 100%;
}

/* Breadcrumb section mobile fix */
@media (max-width: 768px) {
  .hk-breadcrumb-section {
    padding: 100px 0 40px;
    text-align: center;
  }

  .hk-breadcrumb-title {
    font-size: clamp(26px, 6vw, 42px) !important;
    padding: 0 16px;
    word-break: break-word;
  }

  .hk-breadcrumb-nav {
    justify-content: center;
  }
}

/* Work page program cards - fix overflow on mobile */
@media (max-width: 576px) {
  .hk-card[style*="display:flex;gap:24px"] {
    flex-direction: column;
    gap: 16px !important;
    padding: 20px !important;
  }

  .hk-card-title {
    font-size: 16px;
  }

  .col-6 {
    width: 100%;
  }

  /* Partner cards - 2 columns on mobile */
  .col-lg-2.col-md-4.col-6 {
    width: 50%;
  }

  /* Donor wall - 2 columns on small phones */
  .col-lg-3.col-md-4.col-6 {
    width: 50%;
  }

  /* Donate page trust info bar */
  .hk-donate-wrap {
    padding: 20px 16px !important;
  }

  /* Table overflow fix */
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  /* Bank card responsive */
  .hk-bank-card {
    padding: 24px 20px !important;
  }

  /* Amount grid */
  .hk-amount-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Footer nav grid */
  .hk-page-nav-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* CTA section buttons */
  .hk-section.hk-cta .col-lg-4 {
    text-align: center !important;
    align-items: center !important;
  }
}

/* Event / program cards layout fix on mobile */
@media (max-width: 576px) {
  .hk-program-card {
    flex-direction: column;
  }

  .hk-program-date {
    border-right: none !important;
    border-bottom: 1px solid var(--border-light);
    padding: 16px !important;
    text-align: center;
  }
}

/* Trust info bar wrapping fix */
@media (max-width: 640px) {
  div[style*="display:flex;gap:24px;flex-wrap:wrap"] {
    gap: 16px !important;
  }
}

/* Nav hero color fix - hamburger spans white on hero */
.hk-nav-hero .hk-hamburger span {
  background: rgba(255, 255, 255, 0.9);
}

/* Ensure hamburger is always reachable */
.hk-hamburger {
  z-index: 1001;
  position: relative;
}

/* 80G certificate badge styles */
.hk-80g-badge {
  background: linear-gradient(135deg, #fff7e6 0%, #fef3c7 100%);
  border: 2px solid rgba(201, 168, 76, 0.4);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 20px;
}

.hk-80g-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-navy);
  font-size: 22px;
  flex-shrink: 0;
}

.hk-80g-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.hk-80g-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

.hk-80g-badge .hk-80g-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-dark);
  background: rgba(201, 168, 76, 0.15);
  padding: 3px 10px;
  border-radius: 50px;
  margin-top: 6px;
}

/* Govt partner icon enhancement */
.hk-partner-govt .hk-card-icon {
  background: linear-gradient(135deg, rgba(27, 63, 160, 0.15), rgba(27, 63, 160, 0.05)) !important;
  color: var(--royal-blue) !important;
}

/* 80G progress note in FAQ */
.hk-80g-progress-note {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.03));
  border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0;
  padding: 12px 16px;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-top: 8px;
}



/* =================== DEVELOPER CREDIT =================== */
.hk-dev-credit {
  background: var(--deep-navy);
  padding: 14px 0;
  text-align: center;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.hk-dev-credit-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  letter-spacing: 0.3px;
}

.hk-dev-credit-link {
  text-decoration: none;
  margin-left: 5px;
}

.hk-dev-credit-brand {
  font-weight: 800;
  font-size: 14px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.hk-dev-credit-link:hover .hk-dev-credit-brand {
  opacity: 0.85;
}