/* ============================================================
   KAIRAV KAILASH RESIDENCY – Main Stylesheet v2.0
   Brand Colors: Navy Blue + Light Blue (matching KKR logo)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Variables ──────────────────────────────────── */
:root {
  /* Brand Blues (matching KKR logo) */
  --brand:          #1A3668;       /* Dark navy – main brand */
  --brand-mid:      #4C8EC2;       /* Medium blue */
  --brand-light:    #87BDDA;       /* Light sky blue */
  --brand-bg:       #EBF5FF;       /* Very light blue bg */
  --brand-dark:     #0F2347;       /* Very dark navy */

  /* Keeping gold for select premium accents */
  --gold:           #4C8EC2;       /* ← now uses brand-mid blue */
  --gold-light:     #87BDDA;       /* ← brand-light */
  --gold-dark:      #1A3668;       /* ← brand navy */
  --gold-bg:        #EBF5FF;       /* ← brand-bg */

  /* UI */
  --dark:           #0F2347;
  --dark-2:         #1A3668;
  --dark-3:         #2D4A7A;
  --body-bg:        #FEFEFE;
  --text:           #0F2347;
  --text-muted:     #5A6E8A;
  --border:         #D6E4F0;
  --white:          #FFFFFF;
  --section-bg:     #F5F9FF;

  /* Typography */
  --ff-display:   'Cormorant Garamond', Georgia, serif;
  --ff-body:      'DM Sans', -apple-system, sans-serif;

  /* Misc */
  --transition:   0.35s cubic-bezier(.4,0,.2,1);
  --shadow-sm:    0 2px 12px rgba(26,54,104,.07);
  --shadow:       0 8px 32px rgba(26,54,104,.12);
  --shadow-lg:    0 20px 60px rgba(26,54,104,.16);
  --radius:       12px;
  --radius-lg:    20px;
}

/* ── Reset & Base ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--body-bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; padding: 0; margin: 0; }

/* ── Typography ─────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: var(--ff-display);
  line-height: 1.15;
  font-weight: 600;
  color: var(--dark);
}
.display-serif { font-family: var(--ff-display); }

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-mid);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1.5px;
  background: var(--brand-mid);
}
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--brand-mid); }
.section-desc {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}

/* ── Topbar ─────────────────────────────────────────── */
.kkr-topbar {
  background: var(--brand-dark);
  height: 42px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar-link {
  font-size: 12px;
  color: rgba(255,255,255,.65);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}
.topbar-link:hover { color: var(--brand-light); }
.topbar-link i { font-size: 11px; }

/* ── Social Icons in Topbar ─────────────────────────── */
.topbar-social {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: rgba(255,255,255,.55);
  /* font-size is set dynamically via inline style from DB social_icon_size */
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,.08);
}
.topbar-social:hover {
  color: #fff;
  background: rgba(76,142,194,.35);
  border-color: var(--brand-mid);
}

/* ── Navbar ─────────────────────────────────────────── */
.kkr-navbar {
  position: fixed;
  top: 42px; left: 0; right: 0;
  z-index: 1050;
  height: 72px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.kkr-navbar.scrolled {
  box-shadow: 0 4px 24px rgba(26,54,104,.10);
  background: rgba(255,255,255,.99);
}
.kkr-navbar .container-xl { width: 100%; padding: 0 24px; }

/* ── Logo ───────────────────────────────────────────── */
.kkr-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img-wrap {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff;
  border-radius: 8px;
  padding: 4px 10px;
}
.logo-img-wrap img {
  height: 46px;
  width: auto;
  object-fit: contain;
  display: block;
}
.logo-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--brand-mid), var(--brand));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; }
.logo-main {
  display: block;
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--dark);
  line-height: 1.1;
}
.logo-sub {
  display: block;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--brand-mid);
  font-weight: 600;
  margin-top: 2px;
}

/* ── Nav Links ──────────────────────────────────────── */
.nav-links .nav-link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--dark-3);
  padding: 8px 16px;
  border-radius: 8px;
  letter-spacing: .3px;
  position: relative;
  transition: var(--transition);
}
.nav-links .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 16px; right: 16px;
  height: 2px;
  background: var(--brand-mid);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
  border-radius: 2px;
}
.nav-links .nav-link:hover,
.nav-links .nav-link.active { color: var(--brand); }
.nav-links .nav-link:hover::after,
.nav-links .nav-link.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--brand);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 7px;
}
.nav-cta:hover { background: var(--brand-mid); color: #fff !important; }

/* ── Mobile Nav ─────────────────────────────────────── */
.nav-toggle {
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; gap: 5px; padding: 6px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--dark);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, box-shadow .3s;
  border-top: 1px solid var(--border);
  z-index: 999;
}
.mobile-menu.open { max-height: 500px; box-shadow: 0 16px 40px rgba(26,54,104,.14); }
.mobile-menu-inner { padding: 8px 0 16px; }
.mobile-menu-inner a {
  display: block;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-3);
  border-left: 3px solid transparent;
  transition: var(--transition);
}
.mobile-menu-inner a:hover,
.mobile-menu-inner a.active {
  color: var(--brand);
  background: var(--brand-bg);
  border-left-color: var(--brand-mid);
}
.mobile-wa {
  background: #25D366 !important;
  color: #fff !important;
  margin: 10px 20px 5px;
  border-radius: 8px !important;
  padding: 12px 20px !important;
  border-left: none !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-align: center;
}

/* ── Buttons ─────────────────────────────────────────── */
.btn-kkr {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.btn-kkr-gold {
  background: var(--brand-mid);
  color: #fff;
  border-color: var(--brand-mid);
}
.btn-kkr-gold:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(76,142,194,.40);
}
.btn-kkr-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-kkr-outline:hover {
  background: var(--dark);
  color: #fff;
  transform: translateY(-2px);
}
.btn-kkr-white {
  background: #fff;
  color: var(--brand);
  border-color: #fff;
}
.btn-kkr-white:hover {
  background: var(--brand-mid);
  border-color: var(--brand-mid);
  color: #fff;
  transform: translateY(-2px);
}
.btn-kkr-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn-kkr-outline-white:hover {
  background: rgba(255,255,255,.14);
  border-color: #fff;
  color: #fff;
}

/* ── Hero ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brand-dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0A1E3D 0%, #1A3668 50%, #0F2347 100%);
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(76,142,194,.20) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(135,189,218,.10) 0%, transparent 50%);
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(76,142,194,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76,142,194,.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-image-half {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 50%;
  overflow: hidden;
}
.hero-image-half img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .28;
  mix-blend-mode: luminosity;
}
.hero-image-half::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--brand-dark) 0%, transparent 60%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 620px;
  padding: 60px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(76,142,194,.18);
  border: 1px solid rgba(135,189,218,.35);
  color: var(--brand-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 300;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero-title strong { font-weight: 700; color: var(--brand-light); }
.hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: var(--ff-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--brand-light);
  line-height: 1;
}
.hero-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── Hero Video ─────────────────────────────────────── */
.hero-video-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: .75;
}
.hero-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,30,61,.50) 0%,
    rgba(26,54,104,.28) 60%,
    rgba(15,35,71,.38) 100%
  );
  z-index: 1;
}
.hero-youtube-bg {
  position: absolute; inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-youtube-bg iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 100vw; height: 56.25vw;
  min-height: 100%; min-width: 177.78vh;
  transform: translate(-50%,-50%);
  opacity: .78;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.3);
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--brand-mid), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ── Section Common ─────────────────────────────────── */
.kkr-section { padding: 96px 0; }
.kkr-section-sm { padding: 64px 0; }
.kkr-section-alt { background: var(--section-bg); }
.kkr-section-dark { background: var(--dark); }

.gold-divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--brand-mid), var(--brand-light));
  border-radius: 2px;
  margin: 16px 0 0;
}

/* ── Stats Bar ───────────────────────────────────────── */
.stats-bar {
  background: var(--brand);
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--ff-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--brand-light);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 6px;
}
.stat-divider { width: 1px; background: rgba(255,255,255,.12); align-self: stretch; }

/* ── Property Card ──────────────────────────────────── */
.prop-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex; flex-direction: column;
  height: 100%;
}
.prop-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-light);
}
.prop-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.prop-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.prop-card:hover .prop-img-wrap img { transform: scale(1.06); }
.prop-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--brand);
  color: #fff;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 6px;
}
.prop-badge.available { background: #1a6b3c; }
.prop-badge.sold { background: #c0392b; }
.prop-badge.coming_soon { background: var(--brand-mid); }
.prop-type-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--brand-mid);
  color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 5px 12px; border-radius: 6px;
  letter-spacing: .5px;
}
.prop-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.prop-unit { font-size: 11px; color: var(--brand-mid); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px; }
.prop-title {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.25;
}
.prop-location { font-size: 12.5px; color: var(--text-muted); margin-bottom: 16px; }
.prop-location i { color: var(--brand-mid); margin-right: 5px; }
.prop-features {
  display: flex; gap: 16px; flex-wrap: wrap;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}
.prop-feat-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 12.5px; color: var(--text-muted);
}
.prop-feat-item i { color: var(--brand-mid); font-size: 13px; }
.prop-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto;
}
.prop-price {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
}
.prop-price-label { font-size: 11px; color: var(--text-muted); }
.prop-cta {
  background: var(--brand);
  color: #fff;
  font-size: 12px; font-weight: 600;
  letter-spacing: .5px;
  padding: 10px 18px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.prop-cta:hover { background: var(--brand-mid); color: #fff; }

/* ── Amenity Card ───────────────────────────────────── */
.amenity-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.amenity-card:hover {
  border-color: var(--brand-mid);
  box-shadow: 0 8px 32px rgba(76,142,194,.14);
  transform: translateY(-3px);
}
.amenity-icon {
  width: 60px; height: 60px;
  background: var(--brand-bg);
  border: 2px solid var(--brand-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
  color: var(--brand-mid);
  transition: var(--transition);
}
.amenity-card:hover .amenity-icon {
  background: var(--brand-mid);
  color: #fff;
  border-color: var(--brand-mid);
  transform: rotateY(180deg);
}
.amenity-title {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
}
.amenity-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ── Why Choose Us ──────────────────────────────────── */
.feature-item {
  display: flex; gap: 20px;
  padding: 20px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.feature-item:hover { background: var(--brand-bg); }
.feature-num {
  font-family: var(--ff-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--brand-light);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
.feature-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--brand-mid), var(--brand));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #fff;
  flex-shrink: 0;
}
.feature-title { font-size: 16px; font-weight: 600; margin-bottom: 5px; color: var(--dark); }
.feature-desc  { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; }

/* ── About Section ──────────────────────────────────── */
.about-img-stack { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 45%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 5px solid #fff;
  aspect-ratio: 1;
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-experience-badge {
  position: absolute;
  top: 30px; right: -20px;
  background: var(--brand-mid);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.about-exp-num { font-family: var(--ff-display); font-size: 36px; font-weight: 700; line-height: 1; }
.about-exp-text { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; opacity: .9; }

/* ── Director Card ──────────────────────────────────── */
.director-card {
  background: var(--brand);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.director-photo { width: 100%; aspect-ratio: 3/2; object-fit: cover; object-position: top; }
.director-info { padding: 28px; }
.director-name { font-family: var(--ff-display); font-size: 26px; color: #fff; }
.director-role { font-size: 12px; letter-spacing: 2px; color: var(--brand-light); text-transform: uppercase; }
.director-quote {
  font-family: var(--ff-display);
  font-size: 15px;
  font-style: italic;
  color: rgba(255,255,255,.65);
  margin-top: 14px;
  line-height: 1.7;
  border-left: 2px solid var(--brand-mid);
  padding-left: 16px;
}

/* ── Testimonial Card ───────────────────────────────── */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}
.testimonial-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--brand-light);
  transform: translateY(-3px);
}
.testimonial-stars { color: #F59E0B; font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-review { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--brand-light);
  flex-shrink: 0;
}
.testimonial-avatar-placeholder {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-mid), var(--brand));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 14px; color: var(--dark); }
.testimonial-desig { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.testimonial-badge {
  margin-left: auto;
  background: var(--brand-bg);
  color: var(--brand-mid);
  font-size: 10px; font-weight: 700;
  padding: 4px 10px; border-radius: 20px;
  letter-spacing: .5px;
}

/* ── Contact Form ───────────────────────────────────── */
.contact-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.contact-info-card {
  background: var(--brand);
  border-radius: var(--radius-lg);
  padding: 44px;
  height: 100%;
}
.kkr-form-group { margin-bottom: 20px; }
.kkr-form-label {
  display: block;
  font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--dark-3); margin-bottom: 8px;
}
.kkr-form-control {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--dark);
  background: #fafafa;
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.kkr-form-control:focus {
  border-color: var(--brand-mid);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(76,142,194,.12);
}
.kkr-form-control::placeholder { color: #bbb; }
textarea.kkr-form-control { min-height: 120px; resize: vertical; }
select.kkr-form-control { cursor: pointer; }

.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(76,142,194,.18);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--brand-light);
  flex-shrink: 0;
}
.contact-info-label { font-size: 11px; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.contact-info-value { font-size: 14px; color: #fff; font-weight: 500; }
.contact-info-value a { color: rgba(255,255,255,.85); transition: var(--transition); }
.contact-info-value a:hover { color: var(--brand-light); }

/* ── Property Detail ────────────────────────────────── */
.prop-detail-hero { background: var(--brand); padding: 40px 0; }
.prop-gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #111;
}
.prop-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.prop-gallery-thumbs { display: flex; gap: 10px; margin-top: 10px; flex-wrap: wrap; }
.prop-gallery-thumb {
  width: 80px; height: 60px;
  border-radius: 8px; overflow: hidden;
  cursor: pointer; border: 2px solid transparent;
  transition: var(--transition); opacity: .7;
}
.prop-gallery-thumb:hover,
.prop-gallery-thumb.active { border-color: var(--brand-mid); opacity: 1; }
.prop-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.spec-table td:first-child { font-weight: 600; color: var(--text-muted); width: 45%; font-size: 13px; }
.spec-table td { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; }

/* ── Page Hero ──────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
  padding: 64px 0 48px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(76,142,194,.15) 0%, transparent 60%);
}
.page-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(34px, 5vw, 56px);
  color: #fff;
  font-weight: 300;
}
.page-hero-title strong { font-weight: 700; color: var(--brand-light); }
.page-hero-breadcrumb { display: flex; align-items: center; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.page-hero-breadcrumb a { font-size: 13px; color: rgba(255,255,255,.5); transition: var(--transition); }
.page-hero-breadcrumb a:hover { color: var(--brand-light); }
.page-hero-breadcrumb span { font-size: 13px; color: rgba(255,255,255,.25); }
.page-hero-breadcrumb .current { font-size: 13px; color: rgba(255,255,255,.75); }

/* ── Filter Bar ─────────────────────────────────────── */
.filter-bar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
  box-shadow: var(--shadow-sm);
  margin-bottom: 36px;
}
.filter-select {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: var(--ff-body);
  font-size: 13.5px;
  color: var(--dark);
  background: #fafafa;
  cursor: pointer; transition: var(--transition);
  outline: none; min-width: 150px;
}
.filter-select:focus { border-color: var(--brand-mid); }
.filter-btn {
  background: var(--brand-mid);
  color: #fff; border: none;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 13px; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.filter-btn:hover { background: var(--brand); }

/* ── Map Section ────────────────────────────────────── */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden; height: 420px;
  box-shadow: var(--shadow);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── Surroundings ───────────────────────────────────── */
.surround-item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition); margin-bottom: 10px;
}
.surround-item:hover { border-color: var(--brand-mid); box-shadow: var(--shadow-sm); }
.surround-icon { width: 36px; height: 36px; background: var(--brand-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--brand-mid); flex-shrink: 0; }
.surround-name { font-size: 13.5px; font-weight: 600; color: var(--dark); }
.surround-dist { font-size: 12px; color: var(--text-muted); }

/* ── CTA Banner ─────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(76,142,194,.2) 0%, transparent 60%);
}
.cta-banner-content { position: relative; z-index: 1; }

/* ── Footer ─────────────────────────────────────────── */
.kkr-footer { background: var(--brand-dark); margin-top: 0; }
.footer-top { padding: 72px 0 56px; }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-logo-icon {
  width: 44px; height: 44px;
  background: rgba(76,142,194,.18);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--brand-light);
  flex-shrink: 0;
}
.footer-logo-img { height: 42px; width: auto; object-fit: contain; }
.footer-logo-main { font-family: var(--ff-display); font-size: 16px; font-weight: 700; color: #fff; letter-spacing: 1px; line-height: 1.1; }
.footer-logo-sub  { font-size: 9px; letter-spacing: 2px; color: var(--brand-light); font-weight: 600; margin-top: 2px; }
.footer-desc { font-size: 13.5px; color: rgba(255,255,255,.5); line-height: 1.9; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,.08);
  /* font-size set via inline style from DB */
}
.footer-social a:hover { background: var(--brand-mid); color: #fff; border-color: var(--brand-mid); }
.footer-heading { font-size: 12px; font-weight: 700; color: #fff; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 13.5px; color: rgba(255,255,255,.48);
  display: flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.footer-links a i { font-size: 8px; }
.footer-links a:hover { color: var(--brand-light); padding-left: 4px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 13.5px; color: rgba(255,255,255,.48); }
.footer-contact i { color: var(--brand-light); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,.55); transition: var(--transition); }
.footer-contact a:hover { color: var(--brand-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,.3);
  text-align: center;
}

/* ── WhatsApp FAB ───────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 28px; right: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  z-index: 999;
  transition: var(--transition);
  animation: waPulse 3s ease infinite;
}
.whatsapp-fab:hover { transform: scale(1.1); color: #fff; box-shadow: 0 8px 32px rgba(37,211,102,.5); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.4); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,.65), 0 0 0 8px rgba(37,211,102,.1); }
}

.back-to-top {
  position: fixed;
  bottom: 94px; right: 24px;
  width: 44px; height: 44px;
  background: var(--brand);
  color: rgba(255,255,255,.8);
  border: none; border-radius: 50%;
  font-size: 16px;
  cursor: pointer; z-index: 999;
  transition: var(--transition);
  opacity: 0; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--brand-mid); color: #fff; }

/* ── Alerts ─────────────────────────────────────────── */
.kkr-alert {
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  display: flex; align-items: flex-start; gap: 12px;
  border-left: 4px solid;
  margin-bottom: 24px;
}
.kkr-alert-success { background: #f0faf4; border-color: #2ecc71; color: #1a6b3c; }
.kkr-alert-error   { background: #fff5f5; border-color: #e74c3c; color: #a82b2b; }

/* ── Animations ─────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: .1s; }
.fade-up-delay-2 { transition-delay: .2s; }
.fade-up-delay-3 { transition-delay: .3s; }
.fade-up-delay-4 { transition-delay: .4s; }
.fade-up-delay-5 { transition-delay: .5s; }

/* ── Utility ─────────────────────────────────────────── */
.text-gold   { color: var(--brand-mid); }
.bg-gold     { background: var(--brand-mid); }
.border-gold { border-color: var(--brand-mid) !important; }
.lh-lg       { line-height: 1.9; }
.font-serif  { font-family: var(--ff-display); }
.no-bullets  { list-style: none; padding: 0; }

/* ════════════════════════════════════════════════════
   MOBILE RESPONSIVE (Complete Fix)
════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 991px) {
  .hero { min-height: 75vh; }
  .hero-image-half { width: 40%; opacity: .15; }
  .hero-title { font-size: clamp(32px, 7vw, 54px); }
  .hero-stats { gap: 20px; }
  .hero-stat-num { font-size: 28px; }
  .hero-content { padding: 48px 0; }
  .kkr-section { padding: 64px 0; }
  .about-img-accent,
  .about-experience-badge { display: none; }
  .about-img-main { aspect-ratio: 16/9; }
  .contact-card,
  .contact-info-card { padding: 28px; }
  .cta-banner { padding: 36px 28px; }
  .section-title { font-size: clamp(26px, 5vw, 40px); }
}

/* Mobile */
@media (max-width: 767px) {
  /* Topbar */
  /* Navbar — topbar hidden on mobile, so navbar at top:0 */
  .kkr-navbar { top: 0 !important; height: 62px; }
  .kkr-navbar .container-xl { padding: 0 16px; }

  /* Spacer adjustment — only navbar height since topbar hidden */
  body > div[style*="calc(42px + 72px)"] { height: 62px !important; }
  body > div[style*="calc(40px + 72px)"] { height: 62px !important; }

  /* Logo text hide on very small */
  .logo-main { font-size: 13px; letter-spacing: .8px; }
  .logo-sub { display: none; }
  .logo-img-wrap img { height: 38px; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-image-half { display: none; }
  .hero-content { padding: 40px 0; max-width: 100%; }
  .hero-title { font-size: clamp(30px, 9vw, 46px); }
  .hero-subtitle { font-size: 14px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn-kkr { width: 100%; justify-content: center; padding: 14px 20px; }
  .hero-stats { gap: 12px; padding-top: 24px; }
  .hero-stat { flex: 1; min-width: 60px; }
  .hero-stat-num { font-size: 24px; }
  .hero-stat-label { font-size: 10px; }
  /* Remove border-left from hero stats on mobile */
  .hero-stat[style*="border-left"] { border-left: none !important; padding-left: 0 !important; }

  /* Sections */
  .kkr-section { padding: 48px 0; }
  .kkr-section-sm { padding: 40px 0; }
  .section-title { font-size: 26px; }
  .section-desc { font-size: 14px; }

  /* Stats bar */
  .stats-bar .stat-divider { display: none; }
  .stat-number { font-size: 30px; }

  /* Props */
  .prop-body { padding: 16px; }
  .prop-title { font-size: 17px; }
  .prop-features { gap: 10px; }
  .prop-price { font-size: 18px; }

  /* Amenities */
  .amenity-card { padding: 20px 16px; }
  .amenity-title { font-size: 15px; }

  /* Contact */
  .contact-card { padding: 24px 18px; }
  .contact-info-card { padding: 24px 18px; }

  /* CTA */
  .cta-banner { padding: 32px 20px; border-radius: var(--radius); }

  /* Footer */
  .footer-top { padding: 44px 0 32px; }
  .footer-social a { width: 36px; height: 36px; }

  /* Filter */
  .filter-bar { flex-direction: column; padding: 16px; }
  .filter-select { width: 100%; }
  .filter-btn { width: 100%; }

  /* Map */
  .map-wrap { height: 260px; }

  /* Page hero */
  .page-hero { padding: 40px 0 28px; }

  /* Back to top + WhatsApp */
  .back-to-top { bottom: 88px; right: 16px; width: 40px; height: 40px; }
  .whatsapp-fab { bottom: 20px; right: 16px; width: 50px; height: 50px; font-size: 22px; }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .hero-badge { font-size: 9px; padding: 5px 12px; }
  .btn-kkr { font-size: 12px; padding: 12px 18px; }
  .prop-card { border-radius: 12px; }
  .page-hero-title { font-size: 28px; }
  .logo-icon { width: 38px; height: 38px; font-size: 15px; }

  /* Show only 2 stats on smallest screens */
  .hero-stat:nth-child(n+4) { display: none; }

  /* CTA banner stacked */
  .cta-banner { padding: 24px 16px; }
}

/* Very small (320px) */
@media (max-width: 360px) {
  .kkr-navbar .container-xl { padding: 0 12px; }
  .hero-title { font-size: 24px; }
  .logo-main { font-size: 11px; }
  .hero-stats { gap: 8px; }
  .hero-stat-num { font-size: 20px; }
}

/* ════════════════════════════════════════════════════
   MOBILE RESPONSIVE — COMPLETE HOMEPAGE OVERHAUL
   Logo Blues: #0F2347 → #1A3668 → #4C8EC2 → #87BDDA
════════════════════════════════════════════════════ */

/* ── Why cards mobile ──────────────────────────────── */
@media (max-width: 767px) {
  /* Why Choose grid: 2 columns on mobile */
  .col-sm-6.fade-up .why-card { padding: 18px 14px; }
  .why-icon { width: 50px; height: 50px; font-size: 18px; margin-bottom: 12px; }
  .why-title { font-size: 14px; }
  .why-desc  { font-size: 12px; }

  /* Hero – keep text readable over video */
  .hero-content { padding: 32px 0 20px; }
  .hero-badge { font-size: 9px; padding: 6px 14px; margin-bottom: 18px; }
  .hero-title { font-size: clamp(28px,8.5vw,42px); margin-bottom: 14px; }
  .hero-subtitle { font-size: 13.5px; margin-bottom: 24px; max-width: 100%; }
  .hero-actions { gap: 10px; margin-bottom: 28px; }
  .hero-actions .btn-kkr { padding: 13px 18px; font-size: 12.5px; }

  /* Stats row on mobile – 2x2 grid */
  .hero-stats {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-top: 20px;
  }
  .hero-stat { border-left: none !important; padding-left: 0 !important; }
  .hero-stat-num { font-size: 26px; }
  .hero-stat-label { font-size: 10px; }

  /* Stats bar – horizontal scroll on mobile */
  .stats-bar .d-flex { overflow-x: auto; -webkit-overflow-scrolling: touch; flex-wrap: nowrap !important; justify-content: flex-start !important; gap: 0 !important; padding: 0 4px; }
  .stats-bar .stat-item { min-width: 130px; padding: 4px 12px; border-right: 1px solid rgba(255,255,255,.1); }
  .stats-bar .stat-item:last-child { border-right: none; }
  .stat-number { font-size: 26px; }
  .stat-label { font-size: 10px; }

  /* About section stacking */
  .about-img-main { aspect-ratio: 16/9; border-radius: 14px; }
  .about-img-stack { padding-bottom: 0 !important; padding-right: 0 !important; }

  /* Key points – full width on tiny screens */
  .col-6 .d-flex.align-items-center { padding: 10px 10px !important; }
  .col-6 span[style*="font-size:13px"] { font-size: 12px !important; }

  /* Properties grid: single column on very small */
  .prop-card { max-width: 420px; margin: 0 auto; }

  /* Amenities: 3 col on mobile */
  .col-sm-4.col-6 { width: 33.333%; }
  .amenity-card { padding: 16px 10px; }
  .amenity-icon { width: 44px; height: 44px; font-size: 16px; margin-bottom: 10px; }
  .amenity-title { font-size: 12px; }
  .amenity-desc { display: none; }

  /* Testimonial slider */
  #testimonialSlider .t-card > div { padding: 32px 20px !important; }
  #testimonialSlider p { font-size: 16px !important; }

  /* CTA banner */
  .cta-banner { padding: 28px 18px; }
  .cta-banner h2 { font-size: 26px !important; }
  .cta-banner .d-flex { flex-direction: column; }
  .cta-banner .btn-kkr { width: 100%; justify-content: center; }
  .cta-banner .col-lg-5 { text-align: center !important; }

  /* Section headings */
  .section-title { font-size: 24px; line-height: 1.2; }
  .section-desc { font-size: 13.5px; }
}

/* ── Small phones (≤480px) ──────────────────────────── */
@media (max-width: 480px) {
  /* Hero goes full height */
  .hero { min-height: 100svh; }

  /* Amenities: only 2 col */
  .col-sm-4.col-6 { width: 50%; }

  /* About key points: stack to 1 col */
  .col-6 { width: 100% !important; }
  .col-6 + .col-6 { margin-top: 0; }

  /* Btn full width */
  .d-flex.gap-3.flex-wrap .btn-kkr { width: 100%; justify-content: center; }

  /* Footer nav */
  .footer-top .col-md-4,
  .footer-top .col-md-2 { margin-bottom: 24px; }
}

/* ── Topbar visibility fix on mobile ─────────────────── */
@media (max-width: 991px) {
  .kkr-topbar { display: none !important; }
  .kkr-navbar { top: 0 !important; }
}

/* ── Hero background: ensure video always covers ────── */
.hero-bg { z-index: 0; }
.hero-grid-overlay { z-index: 0; }
video.hero-video-bg { z-index: 1; }
.hero-video-overlay { z-index: 2; }
.hero-youtube-bg { z-index: 1; }
.hero-content { z-index: 5 !important; }
.scroll-indicator { z-index: 5; }
#muteToggle { z-index: 5 !important; }

/* Ensure hero-bg gradient doesn't block video */
.hero:has(video.hero-video-bg) .hero-bg { opacity: 0; }
.hero:has(.hero-youtube-bg) .hero-bg { opacity: 0; }

/* ══════════════════════════════════════════════════════
   MOBILE LAYOUT ALIGNMENT FIXES
══════════════════════════════════════════════════════ */

/* General container padding on mobile */
@media (max-width: 767px) {
  .container, .container-xl, .container-fluid {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Hero content alignment */
  .hero-content { text-align: left; }
  .hero-badge { align-self: flex-start; }
  .hero-actions { align-items: stretch; }
  .hero-actions .btn-kkr,
  .hero-actions .btn-kkr-outline { width: 100%; justify-content: center; text-align: center; }

  /* Section titles centered on mobile */
  .section-header { text-align: center !important; }
  .section-title { text-align: center !important; }
  .section-desc { text-align: center !important; }

  /* Property cards — full width, centered */
  .col-md-6.col-lg-4 { padding: 0 8px; }
  .prop-card { width: 100%; max-width: 100%; }

  /* Footer columns stacked properly */
  .kkr-footer .col-md-4,
  .kkr-footer .col-md-2,
  .kkr-footer .col-md-3 {
    margin-bottom: 28px;
    text-align: left;
  }

  /* Contact info cards */
  .contact-info-card { margin-bottom: 16px; }

  /* About section */
  .about-img-stack { margin-bottom: 28px; }

  /* Why choose cards — 2 col grid, equal height */
  .why-card { height: 100%; }

  /* Stats bar wrap on mobile */
  .stats-bar .container-xl { padding: 0 !important; }

  /* Testimonial cards */
  .t-card { margin: 0 4px; }

  /* CTA button alignment */
  .cta-banner .btn-kkr { display: flex; width: 100%; justify-content: center; margin-bottom: 10px; }

  /* Fix row gutters on mobile */
  .row { --bs-gutter-x: 16px; }

  /* Page hero inner */
  .page-hero-inner { text-align: center; }
  .page-hero-breadcrumb { justify-content: center; }
}

@media (max-width: 480px) {
  /* Single column everything */
  .row > [class*="col-6"]:not(.hero-stat) { width: 100% !important; }
  .row > [class*="col-md-6"] { width: 100% !important; }

  /* But keep why-choose 2 col */
  .why-cards-row > .col-6 { width: 50% !important; }

  /* Amenity cards — 2 col */
  .amenity-grid > .col { min-width: 50%; }

  /* CTA stacked */
  .cta-inner { flex-direction: column; gap: 16px; }
}

/* ── Header spacer responsive ─────────────────────── */
@media (max-width: 991px) {
  .kkr-header-spacer { height: 62px !important; }
  body > div[style*="calc(42px + 72px)"] { height: 62px !important; }
}
@media (max-width: 480px) {
  .kkr-header-spacer { height: 58px !important; }
}