/* ============================================================
   MBANDU COMPLEX LIMITED — MAIN STYLESHEET
   Palette: derived from building facade
     Navy        #1E2A35  — dark sections, navbar, footer
     Terracotta  #C8622A  — primary buttons, highlights
     Steel blue  #5A8BA8  — accent, links, tags
     Warm white  #FAF6F2  — page backgrounds
   Fonts: Playfair Display (headings), Inter (body)
   ============================================================ */

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

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --green-deep:    #1E2A35;
  --green-mid:     #C8622A;
  --green-accent:  #5A8BA8;
  --green-light:   #FDF0E8;
  --charcoal:      #1E2A35;
  --charcoal-mid:  #6B7280;
  --white:         #FFFFFF;
  --off-white:     #FAF6F2;
  --grey-light:    #EDE8E3;
  --grey-mid:      #C9C0B8;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --nav-h:        72px;
  --max-w:        1200px;
  --radius:       4px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.08);
  --shadow-md:    0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:    0 16px 48px rgba(0,0,0,.16);

  --transition:   all .3s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utility ───────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 6rem 0; }
.section-pad-sm { padding: 4rem 0; }
.text-center { text-align: center; }

.tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #5A8BA8;
  margin-bottom: .75rem;
}

h1,h2,h3,h4 { font-family: var(--font-heading); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { color: var(--charcoal-mid); }

.divider {
  width: 48px; height: 3px;
  background: #C8622A;
  margin: 1.25rem auto;
}
.divider-left { margin-left: 0; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem;
  font-size: .9rem; font-weight: 600; letter-spacing: .04em;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: #C8622A;
  color: var(--white);
  border: 2px solid #C8622A;
}
.btn-primary:hover {
  background: #a84f20;
  border-color: #a84f20;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: #1E2A35;
  border: 2px solid #1E2A35;
}
.btn-outline:hover {
  background: #1E2A35;
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: var(--white);
  color: #1E2A35;
  border-color: var(--white);
}
.btn-accent {
  background: #5A8BA8;
  color: var(--white);
  border: 2px solid #5A8BA8;
}
.btn-accent:hover {
  background: #4a7590;
  border-color: #4a7590;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ── Scroll Animations ─────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }
.fade-in-delay-4 { transition-delay: .4s; }

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: var(--white);
  border-bottom: 1px solid var(--grey-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.navbar .container {
  display: flex; align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  display: flex; flex-direction: column;
  line-height: 1.1;
}
.nav-logo-name {
  font-family: var(--font-heading);
  font-size: 1.25rem; font-weight: 700;
  color: #1E2A35;
  letter-spacing: .01em;
}
.nav-logo-tag {
  font-size: .65rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--charcoal-mid);
}
.nav-links {
  display: flex; align-items: center; gap: 2.5rem;
}
.nav-links a {
  font-size: .87rem; font-weight: 500;
  letter-spacing: .03em;
  color: var(--charcoal);
  position: relative;
  transition: color .25s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: #C8622A;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav-links a:hover, .nav-links a.active { color: #C8622A; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 1rem; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--grey-light);
  padding: 1.5rem 2rem 2rem;
  z-index: 999;
  box-shadow: var(--shadow-md);
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  padding: .75rem 0;
  border-bottom: 1px solid var(--grey-light);
  font-weight: 500;
  color: var(--charcoal);
}
.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile .btn { margin-top: 1rem; width: 100%; justify-content: center; }

/* Page offset for fixed nav */
main { padding-top: var(--nav-h); }

/* ═══════════════════════════════════════════════════════════
   HOME — HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex; align-items: center;
  background-color: #1E2A35;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg, transparent, transparent 79px,
      rgba(255,255,255,.025) 79px, rgba(255,255,255,.025) 80px
    ),
    repeating-linear-gradient(
      90deg, transparent, transparent 79px,
      rgba(255,255,255,.025) 79px, rgba(255,255,255,.025) 80px
    );
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; right: -200px; top: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,98,42,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem 1rem;
  border: 1px solid rgba(200,98,42,.5);
  border-radius: 2px;
  font-size: .7rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase;
  color: #C8622A;
  margin-bottom: 1.5rem;
}
.hero-badge span { width: 6px; height: 6px; background: #C8622A; border-radius: 50%; }
.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: #C8622A; }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Stats block */
.hero-stats {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 2.5rem;
  backdrop-filter: blur(8px);
}
.hero-stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem; font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-unit {
  font-size: .75rem; font-weight: 600;
  color: #C8622A;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.stat-label {
  display: block;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-top: .25rem;
}
.stat-divider {
  grid-column: 1 / -1;
  height: 1px;
  background: rgba(255,255,255,.1);
}
.hero-location {
  display: flex; align-items: center; gap: .75rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.6);
  font-size: .85rem;
}
.hero-location svg { flex-shrink: 0; }

/* ── Value Strip ───────────────────────────────────────────── */
.value-strip {
  background: var(--off-white);
  border-top: 1px solid var(--grey-light);
  border-bottom: 1px solid var(--grey-light);
  padding: 1.5rem 0;
}
.value-strip-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; flex-wrap: wrap;
}
.value-item {
  display: flex; align-items: center; gap: .6rem;
  font-size: .82rem; font-weight: 500;
  color: var(--charcoal-mid);
  letter-spacing: .02em;
}
.value-item svg { color: #C8622A; flex-shrink: 0; }

/* ── Home Section: About Preview ──────────────────────────── */
.home-about { background: var(--white); }
.home-about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center;
}
.home-about-visual { position: relative; }
.about-card-main {
  background: #1E2A35;
  border-radius: 8px;
  padding: 3rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.about-card-main::before {
  content: '';
  position: absolute; right: -40px; bottom: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(200,98,42,.15);
}
.about-card-main h3 {
  font-size: 1.7rem;
  margin-bottom: .75rem;
  position: relative; z-index: 1;
}
.about-card-main p { color: rgba(255,255,255,.72); position: relative; z-index: 1; }
.about-card-accent {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: #FDF0E8;
  border-radius: 8px;
  padding: 1.5rem 2rem;
  display: flex; align-items: center; gap: 1rem;
  box-shadow: var(--shadow-md);
}
.about-card-accent-number {
  font-family: var(--font-heading);
  font-size: 2rem; font-weight: 700;
  color: #C8622A;
  line-height: 1;
}
.about-card-accent-text {
  font-size: .8rem; font-weight: 600;
  color: #a84f20;
  line-height: 1.3;
}
.home-about-content { padding-left: 1rem; }
.home-about-content h2 { margin-bottom: 1.25rem; }
.home-about-content p { margin-bottom: 1.5rem; }
.feature-list { margin: 2rem 0; }
.feature-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.feature-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: #FDF0E8;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #C8622A;
}
.feature-text h4 { margin-bottom: .25rem; color: var(--charcoal); }
.feature-text p { font-size: .9rem; }

/* ── Home: Office Tiers Preview ────────────────────────────── */
.home-offices { background: var(--off-white); }
.section-header { max-width: 600px; margin-bottom: 3.5rem; }
.section-header.centered { margin-left: auto; margin-right: auto; }
.section-header h2 { margin-bottom: .75rem; }

.offices-preview-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem;
}
.office-preview-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2.25rem;
  border: 1px solid var(--grey-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.office-preview-card:hover {
  border-color: #C8622A;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.office-preview-card.featured {
  border-color: #1E2A35;
  box-shadow: var(--shadow-md);
}
.office-tier-badge {
  display: inline-block;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.tier-starter .office-tier-badge { background: var(--grey-light); color: var(--charcoal-mid); }
.tier-growth .office-tier-badge  { background: #FDF0E8; color: #C8622A; }
.tier-enterprise .office-tier-badge { background: #1E2A35; color: var(--white); }
.office-preview-card h3 { margin-bottom: .5rem; }
.office-size { font-size: .82rem; color: var(--charcoal-mid); margin-bottom: 1rem; }
.office-price {
  font-family: var(--font-heading);
  font-size: 1.6rem; font-weight: 700;
  color: #C8622A;
  margin-bottom: .25rem;
}
.office-price-note { font-size: .78rem; color: var(--charcoal-mid); margin-bottom: 1.25rem; }
.office-best-for {
  font-size: .85rem; color: var(--charcoal-mid);
  padding-top: 1.25rem;
  border-top: 1px solid var(--grey-light);
}
.office-best-for strong { color: var(--charcoal); }

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  background: #1E2A35;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; left: -100px; top: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(200,98,42,.1);
}
.cta-banner-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,.68); margin-top: .5rem; }
.cta-banner-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════ */
.page-hero {
  background: #1E2A35;
  padding: 5rem 0 4rem;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; right: 0; bottom: 0;
  width: 400px; height: 200px;
  background: rgba(200,98,42,.08);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 700px; }
.page-hero .tag { color: #5A8BA8; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.05rem; }

.about-story-grid {
  display: grid; grid-template-columns: 5fr 4fr; gap: 4rem;
  align-items: start;
}
.about-story p { margin-bottom: 1.25rem; font-size: 1rem; line-height: 1.8; }
.about-story p:last-child { margin-bottom: 0; }
.sidebar-card {
  background: var(--off-white);
  border-radius: 8px;
  padding: 2rem;
  border-left: 4px solid #C8622A;
  margin-bottom: 1.5rem;
}
.sidebar-card h4 { color: #1E2A35; margin-bottom: .75rem; font-size: 1rem; }
.sidebar-card p { font-size: .9rem; }

.mission-vision-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  margin-top: 4rem;
}
.mv-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 8px;
  padding: 2.5rem;
  transition: var(--transition);
}
.mv-card:hover { box-shadow: var(--shadow-md); border-color: #C8622A; }
.mv-icon {
  width: 52px; height: 52px;
  background: #FDF0E8;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #C8622A;
  margin-bottom: 1.5rem;
}
.mv-card h3 { margin-bottom: .75rem; }
.mv-card p { font-size: .95rem; }

.why-karen-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.wk-item {
  padding: 2rem;
  border: 1px solid var(--grey-light);
  border-radius: 8px;
  background: var(--white);
  transition: var(--transition);
}
.wk-item:hover { border-color: #C8622A; box-shadow: var(--shadow-sm); }
.wk-number {
  font-family: var(--font-heading);
  font-size: 2.5rem; font-weight: 700;
  color: #EDE8E3;
  line-height: 1;
  margin-bottom: .75rem;
}
.wk-item h4 { color: var(--charcoal); margin-bottom: .5rem; }
.wk-item p { font-size: .88rem; }

.quality-section { background: var(--off-white); }
.quality-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center;
}
.quality-content h2 { margin-bottom: 1rem; }
.quality-content p { margin-bottom: 1.5rem; }
.quality-list { margin-top: 1.5rem; }
.quality-list-item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.25rem;
}
.quality-check {
  width: 22px; height: 22px; flex-shrink: 0;
  background: #C8622A;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: .15rem;
}
.quality-check svg { width: 12px; color: var(--white); }
.quality-list-item p { font-size: .9rem; margin: 0; }
.quality-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.quality-stat-card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.75rem;
  text-align: center;
  border: 1px solid var(--grey-light);
  box-shadow: var(--shadow-sm);
}
.quality-stat-card:nth-child(2) { margin-top: 1.5rem; }
.quality-stat-card:nth-child(4) { margin-top: 1.5rem; }
.quality-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem; font-weight: 700;
  color: #C8622A;
}
.quality-stat-label { font-size: .8rem; color: var(--charcoal-mid); margin-top: .25rem; }

/* ═══════════════════════════════════════════════════════════
   OFFICES PAGE
   ═══════════════════════════════════════════════════════════ */
.offices-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; align-items: start;
}
.office-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--grey-light);
  background: var(--white);
  transition: var(--transition);
}
.office-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.office-card.featured {
  border: 2px solid #1E2A35;
  box-shadow: var(--shadow-md);
}
.office-card-header { padding: 2rem 2rem 0; background: var(--white); }
.office-card.featured .office-card-header { background: #1E2A35; }
.office-card.featured .office-tier-badge { background: rgba(255,255,255,.15); color: var(--white); }
.office-card.featured h3 { color: var(--white); }
.office-card.featured .office-size { color: rgba(255,255,255,.65); }
.office-card.featured .office-price { color: #C8622A; }
.office-card.featured .office-price-note { color: rgba(255,255,255,.55); }
.office-card-header h3 { font-size: 1.35rem; margin-bottom: .35rem; }
.office-price-row { padding-bottom: 1.5rem; }
.office-card-body { padding: 1.75rem 2rem 2rem; }
.includes-title {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--charcoal-mid);
  margin-bottom: 1rem;
}
.includes-list { margin-bottom: 1.75rem; }
.includes-item {
  display: flex; align-items: center; gap: .75rem;
  font-size: .88rem; color: var(--charcoal);
  padding: .4rem 0;
  border-bottom: 1px solid var(--grey-light);
}
.includes-item:last-child { border-bottom: none; }
.includes-item svg { color: #C8622A; flex-shrink: 0; width: 16px; }
.best-for-box {
  background: var(--off-white);
  border-radius: 4px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.75rem;
}
.best-for-box strong { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--charcoal-mid); }
.best-for-box p { font-size: .88rem; color: var(--charcoal); margin-top: .35rem; }
.office-card .btn { width: 100%; justify-content: center; }

.featured-ribbon {
  background: #C8622A;
  text-align: center;
  padding: .5rem;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--white);
}

/* Office Info Strip */
.offices-info { background: var(--off-white); }
.offices-info-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.info-card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.75rem;
  border: 1px solid var(--grey-light);
  text-align: center;
}
.info-card-icon {
  width: 48px; height: 48px;
  background: #FDF0E8;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #C8622A;
  margin: 0 auto 1rem;
}
.info-card h4 { margin-bottom: .4rem; font-size: .95rem; }
.info-card p { font-size: .85rem; }

/* ═══════════════════════════════════════════════════════════
   AMENITIES PAGE
   ═══════════════════════════════════════════════════════════ */
.amenities-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem;
}
.amenity-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.amenity-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: #C8622A;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.amenity-card:hover::before { transform: scaleX(1); }
.amenity-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(200,98,42,.3);
}
.amenity-icon {
  width: 64px; height: 64px;
  background: #FDF0E8;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #C8622A;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}
.amenity-card:hover .amenity-icon {
  background: #C8622A;
  color: var(--white);
}
.amenity-card h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.amenity-card p { font-size: .88rem; }

.amenities-highlight { background: #1E2A35; padding: 5rem 0; }
.amenities-highlight-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center;
}
.amenities-highlight h2 { color: var(--white); margin-bottom: 1rem; }
.amenities-highlight .divider { background: #C8622A; margin-left: 0; }
.amenities-highlight p { color: rgba(255,255,255,.7); margin-bottom: 2rem; }
.highlight-features { display: flex; flex-direction: column; gap: 1rem; }
.highlight-feature {
  display: flex; align-items: flex-start; gap: 1rem;
  background: rgba(255,255,255,.07);
  border-radius: 6px;
  padding: 1.25rem;
}
.highlight-feature-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: #C8622A;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.highlight-feature h4 { color: var(--white); font-size: .95rem; margin-bottom: .2rem; }
.highlight-feature p { color: rgba(255,255,255,.6); font-size: .85rem; margin: 0; }
.spec-table {
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
}
.spec-row {
  display: flex; justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.spec-row:last-child { border-bottom: none; }
.spec-label { font-size: .85rem; color: rgba(255,255,255,.6); }
.spec-value { font-size: .85rem; font-weight: 600; color: var(--white); }

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid; grid-template-columns: 5fr 4fr; gap: 4rem;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: 8px;
  padding: 3rem;
  border: 1px solid var(--grey-light);
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h2 { margin-bottom: .5rem; }
.contact-form-wrap > p { margin-bottom: 2rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: .82rem; font-weight: 600;
  letter-spacing: .03em;
  color: var(--charcoal);
}
.form-group label .req { color: #C8622A; margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .75rem 1rem;
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #5A8BA8;
  box-shadow: 0 0 0 3px rgba(90,139,168,.15);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #dc3545; }
.form-error-msg { font-size: .78rem; color: #dc3545; display: none; }
.form-error-msg.show { display: block; }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group select { appearance: none; cursor: pointer; }
.form-submit-row { margin-top: 1.5rem; }
.form-submit-row .btn { width: 100%; justify-content: center; padding: 1rem; }

.honeypot-field { display: none !important; visibility: hidden !important; position: absolute; left: -9999px; }

.form-status {
  display: none;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: .9rem; font-weight: 500;
}
.form-status.success {
  display: flex; align-items: center; gap: .75rem;
  background: #d4edda; color: #155724;
  border: 1px solid #c3e6cb;
}
.form-status.error {
  display: flex; align-items: center; gap: .75rem;
  background: #f8d7da; color: #721c24;
  border: 1px solid #f5c6cb;
}

.contact-info-card {
  background: #1E2A35;
  border-radius: 8px;
  padding: 2.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 1.5rem; font-size: 1.2rem; }
.info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.info-item:last-child { margin-bottom: 0; }
.info-item-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(255,255,255,.1);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.info-item-label {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: #C8622A;
  margin-bottom: .25rem;
}
.info-item-value { font-size: .9rem; color: rgba(255,255,255,.85); line-height: 1.5; }
.hours-card {
  background: var(--off-white);
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid var(--grey-light);
  margin-bottom: 1.5rem;
}
.hours-card h4 { margin-bottom: 1rem; }
.hours-row {
  display: flex; justify-content: space-between;
  font-size: .88rem;
  padding: .5rem 0;
  border-bottom: 1px solid var(--grey-light);
  color: var(--charcoal);
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:last-child { font-weight: 500; }

.map-embed {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--grey-light);
  height: 240px;
  background: var(--grey-light);
  display: flex; align-items: center; justify-content: center;
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: #141C23;
  color: rgba(255,255,255,.75);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.4rem; font-weight: 700;
  color: var(--white);
  margin-bottom: .35rem;
}
.footer-tagline {
  font-size: .82rem; color: #C8622A;
  letter-spacing: .04em;
  margin-bottom: 1.25rem;
}
.footer-desc { font-size: .88rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-col h5 {
  font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.65); transition: color .2s; }
.footer-links a:hover { color: #C8622A; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: .75rem;
  margin-bottom: .75rem;
  font-size: .88rem;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: .15rem; color: #C8622A; }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap; gap: .75rem;
}
.footer-bottom a { color: rgba(255,255,255,.4); transition: color .2s; }
.footer-bottom a:hover { color: #C8622A; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; max-width: 650px; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-stats-grid { grid-template-columns: repeat(4, 1fr); }
  .stat-divider { display: none; }
  .home-about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-card-accent { position: static; margin-top: 1.5rem; display: inline-flex; }
  .offices-preview-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .offices-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-highlight-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .quality-grid { grid-template-columns: 1fr; }
  .about-story-grid { grid-template-columns: 1fr; }
  .why-karen-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-vision-grid { grid-template-columns: 1fr; }
  .offices-info-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .section-pad { padding: 4rem 0; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1 / -1; }
  .hero-stats-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner-inner { text-align: center; justify-content: center; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .value-strip-inner { gap: 1.5rem; }
  .why-karen-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .quality-visual { grid-template-columns: 1fr 1fr; }
  .quality-stat-card:nth-child(2),
  .quality-stat-card:nth-child(4) { margin-top: 0; }
  .contact-form-wrap { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero-stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .offices-info-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════════════ */
.faq-grid {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  border: 1px solid var(--grey-light);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
}
.faq-item:hover {
  border-color: #C8622A;
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.75rem;
  font-family: var(--font-body);
  font-size: .97rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  cursor: pointer;
  background: var(--white);
  transition: var(--transition);
}
.faq-question:hover { color: #C8622A; }
.faq-question svg {
  flex-shrink: 0;
  transition: transform .3s ease;
  color: #C8622A;
}
.faq-question[aria-expanded="true"] { color: #C8622A; }
.faq-question[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-answer.open {
  max-height: 300px;
}
.faq-answer p {
  padding: 0 1.75rem 1.5rem;
  font-size: .92rem;
  line-height: 1.75;
  color: var(--charcoal-mid);
  border-top: 1px solid var(--grey-light);
  padding-top: 1.25rem;
}

/* ═══════════════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════════════ */
.faq-section { background: var(--white); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--grey-light); }
.faq-item:first-child { border-top: 1px solid var(--grey-light); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: color .2s;
}
.faq-question:hover { color: #C8622A; }

.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--off-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #C8622A;
  transition: transform .3s ease, background .2s;
  pointer-events: none;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: #C8622A;
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-item.open .faq-answer {
  max-height: 400px;
}
.faq-answer-inner {
  padding-bottom: 1.5rem;
  font-size: .95rem;
  color: var(--charcoal-mid);
  line-height: 1.8;
}
/* ── Slider Fix ───────────────────────────── */
.office-card-slider {
  position: relative;
  overflow: hidden;
}

.slider-controls {
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: none;
}

.slider-controls button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: rgba(17, 24, 39, 0.72);
  color: #fff;
  border: none;
  padding: 0;
  font-size: 1.15rem;
  line-height: 1;
  border-radius: 999px;
  cursor: pointer;
  pointer-events: auto;
  transition: background-color .2s ease, transform .2s ease, opacity .2s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.slider-controls button:hover {
  background: #C8622A;
  transform: translateY(-50%) scale(1.05);
}

.slider-controls button[data-slider-direction="prev"] {
  left: 12px;
}

.slider-controls button[data-slider-direction="next"] {
  right: 12px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 21;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.38);
  backdrop-filter: blur(8px);
}

.slider-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, opacity .2s ease;
}

.slider-dot:hover,
.slider-dot:focus-visible {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.1);
}

.slider-dot.active {
  background: #fff;
  transform: scale(1.2);
}
/* ═══════════════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ═══════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON — replace the existing block
   ═══════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  background: #25D366;
  color: #fff;
  padding: .75rem 1.25rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
  animation: wa-pulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  background: #1ebe5d;
  box-shadow: 0 6px 28px rgba(37, 211, 102, .6);
  transform: translateY(-3px);
  animation: none;
}
.whatsapp-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
}
.whatsapp-label {
  display: inline;
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, .4); }
  50%       { box-shadow: 0 4px 28px rgba(37, 211, 102, .7); }
}
@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    padding: .8rem;
    border-radius: 50%;
  }
  .whatsapp-label { display: none; }
  .whatsapp-icon { width: 26px; height: 26px; }
}
  .whatsapp-tooltip { display: none; }
