﻿/**
 * Kingsland Bright Homepage Styles
 * Scoped with kh- prefix to avoid conflicts
 */

/* ===== HOME PAGE — TRANSPARENT HEADER OVERLAY ===== */
.page-template-page-home body,
body.page-template-page-home {
  padding-top: 0 !important;
}

.page-template-page-home .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  box-shadow: none;
}

.page-template-page-home .site-header .header-main,
.page-template-page-home .header-builder-output .header-main {
  background: transparent;
  box-shadow: none;
}

.page-template-page-home .site-header:not(.sticky) .main-navigation a,
.page-template-page-home .site-header:not(.sticky) .header-text-content,
.page-template-page-home .site-header:not(.sticky) .site-title a {
  color: #fff;
}

.page-template-page-home .site-header:not(.sticky) .main-navigation a:hover,
.page-template-page-home .site-header:not(.sticky) .main-navigation .current-menu-item > a {
  color: var(--kh-yellow, #FFD166);
}

/* When scrolled and sticky — restore white background */
.page-template-page-home .site-header.sticky {
  position: fixed;
  background: var(--color-white, #fff);
}

.page-template-page-home .site-header.sticky .header-main,
.page-template-page-home .site-header.sticky .header-builder-output .header-main {
  background: var(--color-white, #fff);
  box-shadow: var(--shadow-sm, 0 2px 4px rgba(0,0,0,0.1));
}

/* ===== VARIABLES ===== */
:root {
  --kh-sun: #FF6B35;
  --kh-sky: #00B4D8;
  --kh-lime: #06D6A0;
  --kh-rose: #FF4D6D;
  --kh-violet: #7B2FBE;
  --kh-yellow: #FFD166;
  --kh-ocean: #118AB2;
  --kh-mint: #80FFDB;
  --kh-coral: #FF6B6B;
  --kh-purple: #C77DFF;
  --kh-white: #fff;
  --kh-offwhite: #FFFBF5;
  --kh-dark: #1A1A2E;
  --kh-text: #2D2D44;
  --kh-light: #F8F9FF;
  --kh-gray: #8892A4;
  --kh-font: 'Nunito', sans-serif;
  --kh-heading: 'Righteous', cursive;
}

/* ===== GRADIENTS ===== */
.kh-grad-sun {
  background: linear-gradient(135deg, var(--kh-sun), var(--kh-rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kh-grad-sky {
  background: linear-gradient(135deg, var(--kh-sky), var(--kh-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kh-grad-lime {
  background: linear-gradient(135deg, var(--kh-lime), var(--kh-sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kh-grad-rose {
  background: linear-gradient(135deg, var(--kh-rose), var(--kh-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kh-grad-violet {
  background: linear-gradient(135deg, var(--kh-violet), var(--kh-rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kh-grad-yellow {
  background: linear-gradient(135deg, var(--kh-yellow), var(--kh-sun));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== REVEAL ===== */
.kh-reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.kh-js-ready .kh-reveal {
  opacity: 0;
  transform: translateY(28px);
}

.kh-js-ready .kh-reveal.kh-on,
.kh-reveal.kh-on {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HERO ===== */
.kh-hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0D0D2B 0%, #16213E 30%, #1A1A3E 60%, #0F3460 100%);
  font-family: var(--kh-font);
}

.kh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: kh-orbFloat 8s ease-in-out infinite;
}

.kh-orb1 {
  width: 500px;
  height: 500px;
  background: var(--kh-sun);
  top: -150px;
  left: -100px;
}

.kh-orb2 {
  width: 380px;
  height: 380px;
  background: var(--kh-violet);
  top: 80px;
  right: -100px;
  animation-delay: 2s;
}

.kh-orb3 {
  width: 340px;
  height: 340px;
  background: var(--kh-sky);
  bottom: -100px;
  left: 30%;
  animation-delay: 4s;
}

.kh-orb4 {
  width: 280px;
  height: 280px;
  background: var(--kh-lime);
  bottom: 50px;
  right: 20%;
  animation-delay: 1s;
}

@keyframes kh-orbFloat {

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

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

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

.kh-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.kh-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 120px 60px 100px;
  width: 100%;
}

.kh-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  color: var(--kh-yellow);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.kh-hero-title {
  font-family: var(--kh-heading);
  font-size: clamp(46px, 6vw, 80px);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
}

.kh-line2 {
  background: linear-gradient(90deg, var(--kh-yellow), var(--kh-sun), var(--kh-rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kh-line3 {
  background: linear-gradient(90deg, var(--kh-mint), var(--kh-sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kh-hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
  font-weight: 600;
}

.kh-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.kh-btn {
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: var(--kh-font);
  font-size: 15px;
  font-weight: 800;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.kh-btn-sun {
  background: linear-gradient(135deg, var(--kh-yellow), var(--kh-sun));
  color: var(--kh-dark);
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.5);
}

.kh-btn-sun:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(255, 107, 53, 0.6);
}

.kh-btn-glass {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.kh-btn-glass:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
}

/* Hero Visual Cards */
.kh-hero-visual {
}

.kh-cards-stack {
  position: relative;
  width: 380px;
  height: 400px;
}

.kh-hc {
  position: absolute;
  border-radius: 24px;
  padding: 24px;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  font-family: var(--kh-font);
}

.kh-hc1 {
  width: 220px;
  background: linear-gradient(135deg, var(--kh-sun), var(--kh-rose));
  top: 0;
  left: 40px;
  animation: kh-cardFloat1 4s ease-in-out infinite;
}

.kh-hc2 {
  width: 200px;
  background: linear-gradient(135deg, var(--kh-sky), var(--kh-violet));
  top: 120px;
  right: 0;
  animation: kh-cardFloat 4s ease-in-out 1.5s infinite;
}

.kh-hc3 {
  width: 210px;
  background: linear-gradient(135deg, var(--kh-lime), var(--kh-ocean));
  bottom: 0;
  left: 20px;
  animation: kh-cardFloat 4s ease-in-out 3s infinite;
}

@keyframes kh-cardFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}

@keyframes kh-cardFloat1 {

  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }

  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

.kh-hc-emoji {
  font-size: 38px;
  margin-bottom: 10px;
}

.kh-hc-name {
  font-size: 18px;
  font-weight: 900;
}

.kh-hc-sub {
  font-size: 12px;
  opacity: 0.8;
}

.kh-hc-price {
  font-size: 18px;
  font-weight: 900;
  margin-top: 8px;
}

/* Stats Bar — removed */

.kh-c1 {
  color: var(--kh-yellow);
}

.kh-c2 {
  color: var(--kh-mint);
}

.kh-c3 {
  color: var(--kh-purple);
}

.kh-c4 {
  color: var(--kh-coral);
}

@keyframes kh-fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes kh-fadeLeft {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

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

/* ===== SEARCH ===== */
.kh-search-wrap {
  padding: 0 60px;
  margin-top: -32px;
  position: relative;
  z-index: 10;
}

.kh-search-box {
  background: #fff;
  border-radius: 22px;
  padding: 8px 8px 8px 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  flex-wrap: wrap;
}

.kh-sf {
  flex: 1;
  min-width: 140px;
  padding: 16px 16px 16px 0;
  border-right: 2px solid #f0f0f0;
}

.kh-sf:last-of-type {
  border-right: none;
}

.kh-sf label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: var(--kh-sun);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.kh-sf select,
.kh-sf input {
  width: 100%;
  border: none;
  outline: none;
  font-family: var(--kh-font);
  font-size: 15px;
  font-weight: 700;
  color: var(--kh-dark);
  background: transparent;
  cursor: pointer;
  appearance: none;
}

.kh-search-go {
  background: linear-gradient(135deg, var(--kh-sun), var(--kh-rose));
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 18px 32px;
  border-radius: 16px;
  font-family: var(--kh-font);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
  transition: all 0.3s;
  white-space: nowrap;
  text-decoration: none;
}

.kh-search-go:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.5);
}

/* ===== SECTION COMMON ===== */
.kh-sec {
  padding: 29px 60px;
  font-family: var(--kh-font);
}

.kh-sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.kh-sec-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: currentColor;
}

.kh-tag-sun {
  color: var(--kh-sun);
}

.kh-tag-sky {
  color: var(--kh-sky);
}

.kh-tag-lime {
  color: var(--kh-lime);
}

.kh-tag-rose {
  color: var(--kh-rose);
}

.kh-tag-violet {
  color: var(--kh-violet);
}

.kh-sec-title {
  font-family: var(--kh-heading);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  color: var(--kh-dark);
  margin-bottom: 12px;
}

.kh-sec-sub {
  font-size: 16px;
  color: var(--kh-gray);
  max-width: 480px;
  line-height: 1.6;
  font-weight: 600;
}

.kh-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 50px;
  transition: all 0.3s;
  border: 2px solid;
}

.kh-link-sun {
  color: var(--kh-sun);
  border-color: var(--kh-sun);
}

.kh-link-sun:hover {
  background: var(--kh-sun);
  color: #fff;
  transform: translateY(-2px);
}

.kh-link-sky {
  color: var(--kh-sky);
  border-color: var(--kh-sky);
}

.kh-link-sky:hover {
  background: var(--kh-sky);
  color: #fff;
  transform: translateY(-2px);
}

/* ===== DESTINATIONS ===== */
.kh-dest-sec {
  background: #fff;
}

.kh-dest-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.kh-dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 16px;
}

.kh-dest-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-decoration: none;
  display: block;
}

.kh-dest-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
}

.kh-dest-card:nth-child(1) {
  grid-column: 1/2;
  grid-row: 1/3;
}

.kh-dest-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}

.kh-dest-card:hover .kh-dest-bg {
  transform: scale(1.08);
}

.kh-dest-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 40%), radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 30%);
}

.kh-dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%);
}

.kh-dest-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
}

.kh-dest-pkgs {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  font-family: var(--kh-font);
}

.kh-dest-name {
  font-family: var(--kh-heading);
  font-size: 26px;
  color: #fff;
  line-height: 1;
}

.kh-dest-card:first-child .kh-dest-name {
  font-size: 38px;
}

.kh-dest-tag {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  margin-top: 4px;
  font-family: var(--kh-font);
}

.kh-dest-hover-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--kh-dark);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  margin-top: 14px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
  font-family: var(--kh-font);
}

.kh-dest-card:hover .kh-dest-hover-btn {
  opacity: 1;
  transform: translateY(0);
}

/* ===== CERTS BAR ===== */
.kh-certs-bar {
  background: var(--kh-dark);
  padding: 48px 60px;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  font-family: var(--kh-font);
}

.kh-certs-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}

.kh-certs-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.kh-cert-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 20px;
  border-radius: 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.3s;
}

.kh-cert-pill:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.kh-cert-pill:nth-child(1) {
  border-color: rgba(255, 107, 53, 0.4);
}

.kh-cert-pill:nth-child(2) {
  border-color: rgba(0, 180, 216, 0.4);
}

.kh-cert-pill:nth-child(3) {
  border-color: rgba(6, 214, 160, 0.4);
}

.kh-cert-pill:nth-child(4) {
  border-color: rgba(255, 209, 102, 0.4);
}

/* ===== PACKAGES ===== */
.kh-pkgs-sec {
  background: var(--kh-light);
}

.kh-pkgs-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.kh-pkgs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 340px));
  gap: 20px;
  justify-content: center;
}

.kh-pkg {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  text-decoration: none;
  display: block;
}

.kh-pkg:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.kh-p1:hover {
  border-color: var(--kh-sun);
}

.kh-p2:hover {
  border-color: var(--kh-sky);
}

.kh-p3:hover {
  border-color: var(--kh-lime);
}

.kh-p4:hover {
  border-color: var(--kh-rose);
}

.kh-p5:hover {
  border-color: var(--kh-violet);
}

.kh-p6:hover {
  border-color: var(--kh-yellow);
}

.kh-pkg-img {
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.5s ease;
}

.kh-pkg:hover .kh-pkg-img {
  transform: scale(1.05);
}

.kh-pkg-disc {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  font-family: var(--kh-font);
}

.kh-pkg-body {
  padding: 20px;
  font-family: var(--kh-font);
}

.kh-pkg-stars {
  color: var(--kh-yellow);
  font-size: 14px;
  margin-bottom: 8px;
}

.kh-pkg-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--kh-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.kh-pkg-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--kh-gray);
  font-weight: 700;
  margin-bottom: 16px;
}

.kh-pkg-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 2px dashed #f0f0f0;
}

.kh-pkg-old {
  font-size: 12px;
  color: var(--kh-gray);
  text-decoration: line-through;
}

.kh-pkg-price {
  font-family: var(--kh-heading);
  font-size: 26px;
  color: var(--kh-dark);
}

.kh-pkg-unit {
  font-size: 11px;
  color: var(--kh-gray);
  font-weight: 700;
}

.kh-pkg-book {
  padding: 10px 22px;
  border-radius: 50px;
  font-family: var(--kh-font);
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  transition: all 0.3s;
}

.kh-pkg-book:hover {
  transform: scale(1.05);
}

/* ===== VIDEO BREAK ===== */
.kh-video-break {
  position: relative;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0D0D2B 0%, #1A1A3E 50%, #0F3460 100%);
}

.kh-vb-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.kh-vb-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  animation: kh-orbFloat 6s ease-in-out infinite;
}

.kh-vb-orb1 {
  width: 380px;
  height: 380px;
  background: var(--kh-rose);
  left: -100px;
  top: -100px;
}

.kh-vb-orb2 {
  width: 320px;
  height: 320px;
  background: var(--kh-sky);
  right: -80px;
  bottom: -80px;
  animation-delay: 3s;
}

.kh-vb-orb3 {
  width: 280px;
  height: 280px;
  background: var(--kh-lime);
  left: 40%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 1.5s;
}

.kh-vb-content {
  position: relative;
  z-index: 2;
  text-align: center;
  font-family: var(--kh-font);
}

.kh-vb-play {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--kh-yellow), var(--kh-sun));
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 30px;
  color: var(--kh-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  box-shadow: 0 0 0 0 rgba(255, 209, 102, 0.4);
  animation: kh-pulse 2.5s ease-in-out infinite;
  transition: transform 0.3s;
}

.kh-vb-play:hover {
  transform: scale(1.1);
}

@keyframes kh-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 209, 102, 0.4);
  }

  50% {
    box-shadow: 0 0 0 24px rgba(255, 209, 102, 0);
  }
}

.kh-vb-title {
  font-family: var(--kh-heading);
  font-size: 46px;
  color: #fff;
  margin-bottom: 12px;
}

.kh-vb-title span {
  background: linear-gradient(90deg, var(--kh-yellow), var(--kh-sun), var(--kh-rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kh-vb-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== OFFERS ===== */
.kh-offers-sec {
  background: #fff;
}

.kh-offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.kh-offer {
  border-radius: 24px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
  cursor: pointer;
  font-family: var(--kh-font);
}

.kh-offer:hover {
  transform: translateY(-8px);
}

.kh-o1 {
  background: linear-gradient(135deg, #FFF3EE, #FFE0CC);
}

.kh-o2 {
  background: linear-gradient(135deg, #EEF9FF, #CCF0FF);
}

.kh-o3 {
  background: linear-gradient(135deg, #EDFFF8, #CCFFE8);
}

.kh-offer-big-pct {
  position: absolute;
  right: -10px;
  top: -10px;
  font-family: var(--kh-heading);
  font-size: 100px;
  line-height: 1;
  opacity: 0.08;
  pointer-events: none;
}

.kh-o1 .kh-offer-big-pct {
  color: var(--kh-sun);
}

.kh-o2 .kh-offer-big-pct {
  color: var(--kh-sky);
}

.kh-o3 .kh-offer-big-pct {
  color: var(--kh-lime);
}

.kh-offer-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.kh-o1 .kh-offer-icon {
  background: linear-gradient(135deg, var(--kh-yellow), var(--kh-sun));
}

.kh-o2 .kh-offer-icon {
  background: linear-gradient(135deg, var(--kh-mint), var(--kh-sky));
}

.kh-o3 .kh-offer-icon {
  background: linear-gradient(135deg, var(--kh-lime), var(--kh-ocean));
}

.kh-offer-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}

.kh-o1 .kh-offer-tag {
  background: rgba(255, 107, 53, 0.15);
  color: var(--kh-sun);
}

.kh-o2 .kh-offer-tag {
  background: rgba(0, 180, 216, 0.15);
  color: var(--kh-sky);
}

.kh-o3 .kh-offer-tag {
  background: rgba(6, 214, 160, 0.15);
  color: #07A575;
}

.kh-offer-name {
  font-family: var(--kh-heading);
  font-size: 24px;
  color: var(--kh-dark);
  margin-bottom: 6px;
}

.kh-offer-disc {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 12px;
}

.kh-o1 .kh-offer-disc {
  color: var(--kh-sun);
}

.kh-o2 .kh-offer-disc {
  color: var(--kh-sky);
}

.kh-o3 .kh-offer-disc {
  color: #07A575;
}

.kh-offer-desc {
  font-size: 14px;
  color: var(--kh-gray);
  line-height: 1.6;
  margin-bottom: 24px;
}

.kh-offer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: var(--kh-font);
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  transition: all 0.3s;
  text-decoration: none;
}

.kh-o1 .kh-offer-cta {
  background: linear-gradient(135deg, var(--kh-sun), var(--kh-rose));
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
}

.kh-o2 .kh-offer-cta {
  background: linear-gradient(135deg, var(--kh-sky), var(--kh-ocean));
  box-shadow: 0 6px 20px rgba(0, 180, 216, 0.35);
}

.kh-o3 .kh-offer-cta {
  background: linear-gradient(135deg, var(--kh-lime), var(--kh-ocean));
  box-shadow: 0 6px 20px rgba(6, 214, 160, 0.35);
}

.kh-offer-cta:hover {
  transform: scale(1.05);
}

.kh-offer-valid {
  font-size: 12px;
  color: var(--kh-gray);
  margin-top: 12px;
  font-weight: 700;
}

/* ===== WHY + SERVICES ===== */
.kh-why-sec {
  background: var(--kh-dark);
  padding: 29px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  font-family: var(--kh-font);
}

.kh-why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.kh-why-card {
  border-radius: 20px;
  padding: 28px;
  transition: transform 0.3s;
  cursor: default;
}

.kh-why-card:hover {
  transform: translateY(-4px);
}

.kh-wc1 {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 77, 109, 0.08));
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.kh-wc2 {
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.15), rgba(17, 138, 178, 0.08));
  border: 1px solid rgba(0, 180, 216, 0.2);
}

.kh-wc3 {
  background: linear-gradient(135deg, rgba(6, 214, 160, 0.15), rgba(17, 138, 178, 0.08));
  border: 1px solid rgba(6, 214, 160, 0.2);
}

.kh-wc4 {
  background: linear-gradient(135deg, rgba(123, 47, 190, 0.15), rgba(199, 125, 255, 0.08));
  border: 1px solid rgba(123, 47, 190, 0.2);
}

.kh-wc-icon {
  font-size: 34px;
  margin-bottom: 14px;
}

.kh-wc-name {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
}

.kh-wc-desc {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  line-height: 1.5;
}

.kh-services-right {
  padding-top: 0px;
}

.kh-services-right .kh-sec-title {
  color: #fff;
}

.kh-srv-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.kh-srv {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: all 0.3s;
}

.kh-srv:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  padding-left: 28px;
}

.kh-srv-num {
  font-family: var(--kh-heading);
  font-size: 16px;
  flex: 0 0 32px;
}

.kh-srv-emoji {
  font-size: 22px;
}

.kh-srv-info {
  flex: 1;
}

.kh-srv-name {
  color: #fff;
  font-weight: 800;
  font-size: 15px;
}

.kh-srv-tags {
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
}

.kh-srv-arrow {
  color: rgba(255, 255, 255, 0.2);
  font-size: 18px;
  transition: all 0.3s;
}

.kh-srv:hover .kh-srv-arrow {
  color: var(--kh-yellow);
  transform: translateX(4px);
}

/* ===== HOTEL MARQUEE ===== */
.kh-hotels-sec {
  padding: 39px 60px;
  background: #fff;
  text-align: center;
  font-family: var(--kh-font);
}

.kh-hotels-sec .kh-sec-title {
  margin-bottom: 8px;
}

.kh-marquee-wrap {
  overflow: hidden;
  mask: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.kh-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: kh-marquee 22s linear infinite;
}

@keyframes kh-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.kh-hotel-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.kh-hchip-1 {
  background: #FFF0E8;
  color: var(--kh-sun);
  border: 2px solid rgba(255, 107, 53, 0.2);
}

.kh-hchip-2 {
  background: #E8F8FF;
  color: var(--kh-sky);
  border: 2px solid rgba(0, 180, 216, 0.2);
}

.kh-hchip-3 {
  background: #E8FFF7;
  color: #07A575;
  border: 2px solid rgba(6, 214, 160, 0.2);
}

.kh-hchip-4 {
  background: #FFF3E8;
  color: var(--kh-sun);
  border: 2px solid rgba(255, 161, 71, 0.2);
}

.kh-hchip-5 {
  background: #F5E8FF;
  color: var(--kh-violet);
  border: 2px solid rgba(123, 47, 190, 0.2);
}

/* ===== TESTIMONIALS ===== */
.kh-testi-sec {
  background: var(--kh-light);
}

.kh-testi-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.kh-big-rating {
  text-align: right;
}

.kh-rating-num {
  font-family: var(--kh-heading);
  font-size: 70px;
  line-height: 1;
  background: linear-gradient(135deg, var(--kh-yellow), var(--kh-sun));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kh-big-stars {
  font-size: 22px;
  color: var(--kh-yellow);
}

.kh-big-count {
  font-size: 12px;
  color: var(--kh-gray);
  font-weight: 700;
  letter-spacing: 1px;
}

.kh-testi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  font-family: var(--kh-font);
}

.kh-tcard {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  border-top: 4px solid transparent;
}

.kh-tcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.kh-tcard-quote {
  font-family: 'Pacifico', cursive;
  font-size: 48px;
  line-height: 1;
  margin-bottom: 10px;
}

.kh-tcard-text {
  font-size: 14px;
  color: var(--kh-gray);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
  font-weight: 600;
}

.kh-tcard-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 2px dashed #f0f0f0;
}

.kh-tcard-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  flex: 0 0 42px;
}

.kh-tcard-name {
  font-weight: 800;
  font-size: 14px;
  color: var(--kh-dark);
}

.kh-tcard-loc {
  font-size: 12px;
  color: var(--kh-gray);
}

.kh-tcard-trip {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* ===== NEWSLETTER ===== */
.kh-nl-sec {
  background: linear-gradient(135deg, #FF6B35 0%, #FF4D6D 35%, #7B2FBE 65%, #00B4D8 100%);
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
  font-family: var(--kh-font);
}

.kh-nl-sec::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='%23ffffff' fill-opacity='0.04'%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/svg%3E");
}

.kh-nl-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.kh-nl-title {
  font-family: var(--kh-heading);
  font-size: 48px;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}

.kh-nl-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 32px;
}

.kh-nl-form {
  display: flex;
  max-width: 500px;
}

.kh-nl-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-right: none;
  color: #fff;
  font-family: var(--kh-font);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 20px;
  outline: none;
  border-radius: 50px 0 0 50px;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

.kh-nl-input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.kh-nl-input:focus {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
}

.kh-nl-btn {
  background: #fff;
  border: 2px solid #fff;
  color: var(--kh-sun);
  font-family: var(--kh-font);
  font-size: 14px;
  font-weight: 800;
  padding: 16px 28px;
  cursor: pointer;
  border-radius: 0 50px 50px 0;
  transition: all 0.3s;
}

.kh-nl-btn:hover {
  background: var(--kh-yellow);
  border-color: var(--kh-yellow);
  color: var(--kh-dark);
}

.kh-nl-small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 12px;
  font-weight: 600;
}

.kh-nl-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.kh-nlstat {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 28px;
  text-align: center;
}

.kh-nlstat-num {
  font-family: var(--kh-heading);
  font-size: 44px;
  color: #fff;
  line-height: 1;
}

.kh-nlstat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ===== MODAL ===== */
.kh-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
}

.kh-modal-overlay.kh-open {
  display: flex;
}

.kh-modal-box {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  width: 720px;
  max-width: 92vw;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
  font-family: var(--kh-font);
}

.kh-modal-head {
  background: linear-gradient(135deg, var(--kh-sun), var(--kh-rose), var(--kh-violet));
  padding: 32px 36px;
  color: #fff;
  font-family: var(--kh-heading);
  font-size: 30px;
}

.kh-modal-head p {
  font-family: var(--kh-font);
  font-size: 14px;
  opacity: 0.8;
  font-weight: 600;
  margin-top: 4px;
}

.kh-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.kh-modal-close:hover {
  background: rgba(255, 255, 255, 0.35);
}

.kh-modal-body {
  padding: 40px;
  background: linear-gradient(135deg, #FFF8F5, #F5F8FF);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  font-size: 50px;
}

.kh-modal-body p {
  font-size: 14px;
  color: var(--kh-gray);
  font-weight: 700;
  text-align: center;
}

/* ===== TESTIMONIAL SLIDER ===== */
.kh-testi-slider-wrap {
  position: relative;
  overflow: hidden;
}

.kh-testi-slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 20px;
  will-change: transform;
}

.kh-tslide {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
}

.kh-tcard-stars {
  font-size: 14px;
  color: var(--kh-yellow);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

/* Slider Controls */
.kh-testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.kh-ts-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--kh-violet);
  background: #fff;
  color: var(--kh-violet);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.kh-ts-btn svg { flex-shrink: 0; }

.kh-ts-btn:hover {
  background: var(--kh-violet);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(123, 47, 190, 0.3);
}

.kh-ts-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.kh-ts-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--kh-violet);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.kh-ts-dot-active,
.kh-ts-dot:hover {
  background: var(--kh-violet);
  transform: scale(1.3);
}

/* ===== ATTRACTIONS BY DESTINATION ===== */
.kh-attract-sec {
  background: var(--kh-light);
}

.kh-attr-header {
  margin-bottom: 48px;
}


.kh-attr-block {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  width: calc(25% - 18px);
  vertical-align: top;
  margin-right: 24px;
  margin-bottom: 24px;
}

.kh-attr-block:nth-child(4n) {
  margin-right: 0;
}

/* Use grid layout instead */
.kh-attract-sec .kh-attr-block {
  display: block;
  width: auto;
  margin-right: 0;
  margin-bottom: 0;
}

.kh-attract-sec {
  display: block;
}

/* Render attr blocks in a grid via flexbox parent approach */
.kh-attr-grid-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.kh-attr-block {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kh-attr-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.kh-attr-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border-radius: 0;
}

.kh-attr-emoji {
  font-size: 32px;
  flex: 0 0 40px;
}

.kh-attr-dest-name {
  font-family: var(--kh-heading);
  font-size: 20px;
  color: var(--kh-dark);
  font-weight: 700;
  line-height: 1.1;
}

.kh-attr-view-all {
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  margin-top: 4px;
  letter-spacing: 0.5px;
  transition: all 0.2s;
}

.kh-attr-view-all:hover {
  opacity: 0.75;
  transform: translateX(3px);
}

.kh-attr-places {
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kh-attr-place {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--kh-light);
  transition: background 0.2s;
}

.kh-attr-place:hover {
  background: #f0f0f8;
}

.kh-attr-place-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex: 0 0 38px;
}

.kh-attr-place-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--kh-dark);
  font-family: var(--kh-font);
  line-height: 1.2;
}

.kh-attr-place-desc {
  font-size: 12px;
  color: var(--kh-gray);
  font-weight: 600;
  font-family: var(--kh-font);
}

/* ===== INTERNATIONAL DESTINATIONS ===== */
.kh-intl-sec {
  background: #fff;
}

.kh-intl-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.kh-intl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.kh-intl-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 200px;
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.kh-intl-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.kh-intl-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}

.kh-intl-card:hover .kh-intl-bg {
  transform: scale(1.08);
}

.kh-intl-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 30%);
}

.kh-intl-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0) 55%);
}

.kh-intl-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 20px;
  font-family: var(--kh-font);
}

.kh-intl-emoji {
  font-size: 28px;
  margin-bottom: 6px;
}

.kh-intl-pkgs {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.kh-intl-name {
  font-family: var(--kh-heading);
  font-size: 20px;
  color: #fff;
  line-height: 1.1;
}

.kh-intl-tag {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  margin-top: 2px;
}

.kh-intl-from {
  font-size: 12px;
  color: var(--kh-yellow);
  font-weight: 800;
  margin-top: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width:1100px) {

  .kh-hero-inner,
  .kh-sec,
  .kh-certs-bar,
  .kh-hotels-sec,
  .kh-nl-sec,
  .kh-why-sec {
    padding-left: 28px;
    padding-right: 28px;
  }

  .kh-hero-inner {
    grid-template-columns: 1fr;
    padding-top: 120px;
  }

  .kh-hero-visual {

    display: none;
  }

  .kh-dest-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .kh-dest-card {
    height: 240px;
  }

  .kh-dest-card:nth-child(1) {
    grid-column: auto;
    grid-row: auto;
    height: 240px;
  }

  .kh-pkgs-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Testimonial slider: 2 visible on tablet */
  .kh-tslide {
    flex: 0 0 calc(50% - 10px);
  }

  .kh-attr-grid-wrap {
    grid-template-columns: 1fr 1fr;
  }

  .kh-intl-grid {
    grid-template-columns: 1fr 1fr;
  }

  .kh-nl-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .kh-why-sec {
    grid-template-columns: 1fr;
  }

  .kh-search-wrap {
    padding: 0 28px;
  }
}

@media (max-width: 768px) {

  /* Destinations — single column, all cards visible */
  .kh-dest-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    gap: 12px;
  }

  .kh-dest-card,
  .kh-dest-card:nth-child(1) {
    grid-column: auto !important;
    grid-row: auto !important;
    height: 200px !important;
  }

  .kh-dest-card:first-child .kh-dest-name {
    font-size: 26px !important;
  }

  .kh-pkgs-grid,
  .kh-offers-grid {
    grid-template-columns: 1fr;
  }

  /* Testimonial slider: 1 visible on mobile */
  .kh-tslide {
    flex: 0 0 100%;
  }

  .kh-ts-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .kh-attr-grid-wrap {
    grid-template-columns: 1fr;
  }

  .kh-intl-grid {
    grid-template-columns: 1fr 1fr;
  }

  .kh-intl-card {
    height: 170px;
  }

  .kh-intl-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .kh-nl-stats {
    grid-template-columns: 1fr 1fr;
  }

  .kh-why-cards {
    grid-template-columns: 1fr;
  }

  .kh-vb-title {
    font-size: 32px;
  }

  .kh-search-box {
    flex-direction: column;
    gap: 0;
  }

  .kh-sf {
    border-right: none;
    border-bottom: 2px solid #f0f0f0;
    padding: 12px 0;
  }

  .kh-search-go {
    width: 100%;
    border-radius: 14px;
    text-align: center;
    display: block;
    margin-top: 8px;
  }

  .kh-dest-header,
  .kh-pkgs-header,
  .kh-testi-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .kh-big-rating {
    text-align: left;
  }

  .kh-certs-bar {
    padding: 28px 20px;
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .kh-dest-sec,
  .kh-pkgs-sec,
  .kh-offers-sec {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .kh-hero-title {
    font-size: 36px;
  }

  .kh-hero-desc {
    font-size: 15px;
  }

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

  .kh-btn {
    text-align: center;
  }

  .kh-dest-card,
  .kh-dest-card:nth-child(1) {
    height: 180px !important;
  }

  .kh-why-sec,
  .kh-nl-sec {
    padding: 60px 20px;
  }

  .kh-nl-title {
    font-size: 30px;
  }

  .kh-nl-form {
    flex-direction: column;
  }

  .kh-nl-input {
    border-right: 2px solid rgba(255, 255, 255, 0.3);
    border-bottom: none;
    border-radius: 50px;
    margin-bottom: 10px;
  }

  .kh-nl-btn {
    border-radius: 50px;
  }
}