/* ============================================================
   מקראות — Custom CSS (Bootstrap 5 + Heebo)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700;800;900&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --mk-burgundy:    #8f1018;
  --mk-burgundy-d:  #6e0c13;
  --mk-burgundy-lt: #c01e28;
  --mk-teal:        #103f4a;
  --mk-teal-d:      #0b2f3a;
  --mk-teal-lt:     #1a6070;
  --mk-gold:        #c8941e;
  --mk-gold-lt:     #f0c04a;
  --mk-light:       #f7f3ef;
  --mk-soft-blue:   #e8f4f8;
  --mk-soft-burg:   #fdf0f1;
  --mk-white:       #ffffff;
  --mk-text:        #1e2d33;
  --mk-text-mid:    #3d5560;
  --mk-text-light:  #6b8b96;
  --mk-border:      rgba(16,63,74,.10);
  --mk-shadow-sm:   0 2px 12px rgba(16,63,74,.08);
  --mk-shadow-md:   0 8px 32px rgba(16,63,74,.13);
  --mk-shadow-lg:   0 20px 60px rgba(16,63,74,.16);
  --mk-radius:      14px;
  --mk-radius-lg:   24px;
  --mk-trans:       .25s cubic-bezier(.4,0,.2,1);
}

/* ── Base ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Heebo', sans-serif;
  direction: rtl;
  color: var(--mk-text);
  background: var(--mk-white);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Heebo', sans-serif; font-weight: 700; line-height: 1.25; }
p { color: var(--mk-text-mid); }
a { text-decoration: none; transition: color var(--mk-trans); }
img { max-width: 100%; }

/* ── KEYFRAMES ──────────────────────────────────────────────── */
@keyframes heroGrad {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes blobFloat1 {
  0%,100% { transform: translate(0,0) scale(1); }
  40%     { transform: translate(-25px,35px) scale(1.12); }
  70%     { transform: translate(18px,-18px) scale(0.92); }
}
@keyframes blobFloat2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(35px,-28px) scale(1.1); }
}
@keyframes blobFloat3 {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  33%     { transform: translate(-20px,15px) rotate(8deg); }
  66%     { transform: translate(25px,-10px) rotate(-5deg); }
}
@keyframes charFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-12px); }
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(22px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes shimmer {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}

/* ── NAVBAR ─────────────────────────────────────────────────── */
.mk-navbar {
  background: var(--mk-white);
  border-bottom: 1px solid rgba(16,63,74,.08);
  box-shadow: 0 2px 20px rgba(16,63,74,.07);
  padding: .4rem 0;
  position: sticky;
  top: 0;
  z-index: 1030;
}
.mk-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}
.mk-navbar .navbar-brand img { height: 64px; width: auto; }
.mk-navbar .nav-link {
  font-size: .88rem;
  font-weight: 500;
  color: var(--mk-text) !important;
  padding: .45rem .7rem !important;
  border-radius: 8px;
  transition: background var(--mk-trans), color var(--mk-trans);
  white-space: nowrap;
}
.mk-navbar .nav-link:hover,
.mk-navbar .nav-link.active { background: var(--mk-soft-blue); color: var(--mk-teal) !important; }
.mk-navbar .btn-nav-cta {
  background: var(--mk-burgundy);
  color: var(--mk-white) !important;
  border-radius: 50px !important;
  padding: .45rem 1.2rem !important;
  font-weight: 600;
  transition: background var(--mk-trans);
}
.mk-navbar .btn-nav-cta:hover { background: var(--mk-burgundy-d); color: var(--mk-white) !important; }
.navbar-toggler { border: none !important; box-shadow: none !important; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23103f4a' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ── HERO — Professional deep teal with burgundy accent ─────── */
.mk-hero {
  background: linear-gradient(135deg, #0b2f3a 0%, #0f3d48 45%, #4a0b10 100%);
  position: relative;
  overflow: visible;
  padding: 0;
  display: flex;
  align-items: stretch;
}

/* Blob 1 — burgundy top-right */
.mk-hero::before {
  content: '';
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143,16,24,.22) 0%, transparent 65%);
  top: -140px;
  right: -100px;
  animation: blobFloat1 9s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
/* Blob 2 — gold bottom-left */
.mk-hero::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,148,30,.1) 0%, transparent 65%);
  bottom: 30px;
  left: 8%;
  animation: blobFloat2 11s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
/* Dot-pattern overlay */
.mk-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: 0;
}

/* Hero eyebrow */
.mk-hero-eyebrow {
  display: inline-block;
  background: rgba(200,148,30,.18);
  border: 1px solid rgba(200,148,30,.35);
  color: var(--mk-gold-lt);
  font-size: .8rem;
  font-weight: 600;
  padding: .3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  letter-spacing: .4px;
}
.mk-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: var(--mk-white);
  margin-bottom: .9rem;
  line-height: 1.2;
}
.mk-hero h1 em { color: var(--mk-gold-lt); font-style: normal; }
.mk-hero-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 2.2rem;
  max-width: 560px;
  line-height: 1.8;
}
.mk-hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ── CHARACTER IN HERO ───────────────────────────────────────
   Home page: large character, slight overflow at bottom.
   Inner pages: character fits neatly within the hero bar.
   In both cases the character sits at the BOTTOM of the hero,
   aligned to the bottom of the column — no dead space above.
   ──────────────────────────────────────────────────────────── */

/* Home hero character — bigger, slight bottom overflow */
.hero-char-home {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  z-index: 10;
  margin-bottom: -60px;   /* only slight overflow — clean, not dramatic */
}
.hero-char-home img {
  max-height: 520px;
  width: auto;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.40));
  animation: charFloat 4s ease-in-out infinite;
  display: block;
}

/* Inner page hero character — overflows into tagline strip below */
.page-hero-char {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  z-index: 10;
  margin-bottom: -90px;
}
.page-hero-char img {
  max-height: 420px;
  width: auto;
  filter: drop-shadow(0 14px 32px rgba(0,0,0,.42));
  animation: charFloat 4s ease-in-out infinite;
  display: block;
}

/* Stats strip z-index */
.stats-strip { position: relative; z-index: 8; }

/* After home hero — small space for the 60px overflow */
.after-hero {
  position: relative;
  z-index: 5;
  padding-top: calc(5rem + 60px) !important;
}
/* After inner page hero — normal */
.after-page-hero {
  position: relative;
  z-index: 5;
  padding-top: 4rem !important;
}

/* ── PAGE TAGLINE STRIP ──────────────────────────────────────── */
.page-tagline-strip {
  background: linear-gradient(90deg, #0b2f3a 0%, #0f3d48 60%, #1a1010 100%);
  position: relative;
  z-index: 7;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-align: center;
}
.page-tagline-text {
  font-family: 'Heebo', sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 800;
  color: #f5c842;
  margin: 0;
  line-height: 1.3;
  text-shadow:
    1px 1px 0 #7a5c00,
    2px 2px 0 #6a4e00,
    3px 3px 0 #5a4200,
    4px 4px 0 #4a3600;
  position: relative;
  z-index: 1;
}

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.mk-page-hero {
  background: linear-gradient(135deg, #0b2f3a 0%, #0f3d48 50%, #4a0b10 100%);
  padding: 0;
  position: relative;
  z-index: 9;
  overflow: visible;
  min-height: 260px;
  display: flex;
  align-items: center;
}
.mk-page-hero > .container {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 260px;
}
.mk-page-hero .container > .row {
  width: 100%;
  align-items: center;
  position: static !important;
}
/* Character column: absolute so it doesn't drive hero height */
.mk-page-hero .page-hero-char-col {
  position: absolute !important;
  left: 0;
  top: 0;
  bottom: -140px;
  width: 41.67%;
  display: flex !important;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
}
.mk-page-hero .page-hero-char {
  margin-bottom: -22px !important;
}
.mk-page-hero .page-hero-char img {
  max-height: 419px; /* +35% מ-310px */
}

/* מבדק 360° — דמות +30%, רגליים מתחת לסרגל */
.page-mivdak-360 .mk-page-hero .page-hero-char img {
  height: 403px !important;
  max-height: none !important;
  width: auto !important;
}
.page-mivdak-360 .mk-page-hero .page-hero-char-col {
  bottom: -140px !important;
}
.page-mivdak-360 .mk-page-hero .page-hero-char {
  margin-bottom: -22px !important;
}
/* Burgundy blob in page heroes */
.mk-page-hero::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143,16,24,.2) 0%, transparent 65%);
  top: -80px;
  right: -60px;
  animation: blobFloat3 10s ease-in-out infinite;
  pointer-events: none;
}
.mk-page-hero::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,148,30,.12) 0%, transparent 65%);
  bottom: 20px;
  left: 15%;
  animation: blobFloat2 12s ease-in-out infinite;
  pointer-events: none;
}
.mk-page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--mk-white);
  margin-bottom: .5rem;
  position: relative;
  z-index: 1;
}
.mk-page-hero .hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  max-width: 540px;
  position: relative;
  z-index: 1;
}
.mk-page-hero .mk-hero-eyebrow { position: relative; z-index: 1; }
.mk-page-hero .row { position: relative; z-index: 1; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn-mk-primary {
  background: var(--mk-burgundy);
  color: var(--mk-white);
  border: none;
  border-radius: 50px;
  padding: .75rem 1.9rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Heebo', sans-serif;
  transition: background var(--mk-trans), transform var(--mk-trans), box-shadow var(--mk-trans);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  cursor: pointer;
  text-decoration: none;
}
.btn-mk-primary:hover {
  background: var(--mk-burgundy-d);
  color: var(--mk-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(143,16,24,.4);
}
.btn-mk-whatsapp {
  background: #25D366;
  color: var(--mk-white);
  border: none;
  border-radius: 50px;
  padding: .75rem 1.9rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Heebo', sans-serif;
  transition: background var(--mk-trans), transform var(--mk-trans), box-shadow var(--mk-trans);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  cursor: pointer;
  text-decoration: none;
}
.btn-mk-whatsapp:hover {
  background: #1ebe5d;
  color: var(--mk-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
}
.btn-mk-gold {
  background: linear-gradient(135deg, var(--mk-gold-lt), var(--mk-gold));
  color: var(--mk-teal-d);
  border: none;
  border-radius: 50px;
  padding: .75rem 1.9rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Heebo', sans-serif;
  transition: all var(--mk-trans);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  cursor: pointer;
  text-decoration: none;
}
.btn-mk-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,148,30,.4); color: var(--mk-teal-d); }
.btn-mk-outline {
  background: transparent;
  color: var(--mk-teal);
  border: 2px solid var(--mk-teal);
  border-radius: 50px;
  padding: .7rem 1.8rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Heebo', sans-serif;
  transition: all var(--mk-trans);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  cursor: pointer;
  text-decoration: none;
}
.btn-mk-outline:hover { background: var(--mk-teal); color: var(--mk-white); transform: translateY(-2px); }
.btn-mk-outline-white {
  background: transparent;
  color: var(--mk-white);
  border: 2px solid rgba(255,255,255,.65);
  border-radius: 50px;
  padding: .7rem 1.8rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Heebo', sans-serif;
  transition: all var(--mk-trans);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  cursor: pointer;
  text-decoration: none;
}
.btn-mk-outline-white:hover { background: rgba(255,255,255,.15); color: var(--mk-white); border-color: rgba(255,255,255,.9); }
.btn-sm-mk { padding: .45rem 1.2rem !important; font-size: .88rem !important; }

/* ── SECTION TITLES ──────────────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  background: rgba(143,16,24,.09);
  color: var(--mk-burgundy);
  font-size: .78rem;
  font-weight: 700;
  padding: .28rem .9rem;
  border-radius: 50px;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: .8rem;
}
.section-eyebrow-teal { background: rgba(16,63,74,.09); color: var(--mk-teal); }
.section-title { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 800; color: var(--mk-teal-d); margin-bottom: .5rem; }
.section-sub { font-size: 1.05rem; color: var(--mk-text-light); margin-bottom: 3rem; }

/* ── CARDS ───────────────────────────────────────────────────── */
.mk-card {
  background: var(--mk-white);
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-radius);
  padding: 1.8rem;
  box-shadow: var(--mk-shadow-sm);
  transition: transform var(--mk-trans), box-shadow var(--mk-trans);
  height: 100%;
}
.mk-card:hover { transform: translateY(-5px); box-shadow: var(--mk-shadow-md); }
.mk-card .card-icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.1rem;
}
.ci-burg { background: rgba(143,16,24,.09); }
.ci-teal { background: rgba(16,63,74,.09); }
.ci-gold { background: rgba(200,148,30,.12); }
.ci-blue { background: var(--mk-soft-blue); }
.mk-card h4, .mk-card h3 { color: var(--mk-teal-d); font-weight: 700; margin-bottom: .4rem; }
.mk-card p { font-size: .95rem; margin-bottom: 0; }

/* Dark teal card */
.mk-card-dark {
  background: linear-gradient(-45deg, #0b2f3a, #103f4a, #8f1018, #0b2f3a);
  background-size: 300% 300%;
  animation: heroGrad 12s ease infinite;
  border: none;
  color: var(--mk-white);
}
.mk-card-dark h4,.mk-card-dark h3 { color: var(--mk-white); }
.mk-card-dark p { color: rgba(255,255,255,.78); }

/* Burgundy card */
.mk-card-burg { background: var(--mk-burgundy); border: none; color: var(--mk-white); }
.mk-card-burg h4,.mk-card-burg h3 { color: var(--mk-white); }
.mk-card-burg p { color: rgba(255,255,255,.8); }

/* ── FEATURE ROWS ────────────────────────────────────────────── */
.feature-content h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); font-weight: 800; color: var(--mk-teal-d); margin-bottom: 1rem; }
.feature-content p  { font-size: 1.02rem; margin-bottom: 1.1rem; }
.feature-img-wrap { border-radius: var(--mk-radius-lg); overflow: hidden; box-shadow: var(--mk-shadow-lg); }

/* Character in feature rows — soft background blend */
.feature-char-wrap {
  background: radial-gradient(ellipse at 50% 80%, var(--mk-light) 30%, transparent 72%);
  border-radius: var(--mk-radius-lg);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 2rem 1.5rem 1rem;
  min-height: 340px;
}
.feature-char-wrap img {
  max-height: 400px;
  filter: drop-shadow(0 8px 18px rgba(16,63,74,.15));
}

/* ── CHECK LIST ──────────────────────────────────────────────── */
.mk-checklist { list-style: none; padding: 0; margin: 0 0 1.6rem; }
.mk-checklist li {
  display: flex; align-items: flex-start; gap: .65rem;
  padding: .35rem 0; font-size: .97rem; color: var(--mk-text-mid);
}
.mk-checklist li .chk-icon {
  flex-shrink: 0; width: 22px; height: 22px;
  background: rgba(143,16,24,.1); color: var(--mk-burgundy);
  border-radius: 50%; font-size: .7rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}

/* ── STATS STRIP — animated gradient ────────────────────────── */
.stats-strip {
  background: linear-gradient(-45deg, #0b2f3a, #103f4a, #8f1018, #0b2f3a);
  background-size: 300% 300%;
  animation: heroGrad 10s ease infinite;
  padding: 1.4rem 0;
  position: relative;
  z-index: 8;
}
.stat-item { text-align: center; }
.stat-num  { font-size: 2.6rem; font-weight: 900; color: var(--mk-gold-lt); display: block; line-height: 1; }
.stat-label { font-size: .85rem; color: rgba(255,255,255,.65); margin-top: .3rem; }

/* ── HIGHLIGHT BOX — animated ────────────────────────────────── */
.highlight-box {
  background: linear-gradient(-45deg, #0b2f3a, #103f4a, #8f1018, #6e0c13, #0b2f3a);
  background-size: 400% 400%;
  animation: heroGrad 10s ease infinite;
  border-radius: var(--mk-radius-lg);
  padding: 2.5rem 2.2rem;
  position: relative;
  overflow: hidden;
}
.highlight-box::before {
  content: '"'; position: absolute; top: -15px; right: 1.5rem;
  font-size: 8rem; color: var(--mk-gold-lt); opacity: .15;
  line-height: 1; font-family: Georgia, serif;
}
.highlight-box p { font-size: 1.15rem; color: rgba(255,255,255,.92); font-weight: 500; line-height: 1.75; margin: 0; }
.highlight-box strong { color: var(--mk-gold-lt); }

/* ── QUOTE STRIPE — animated ─────────────────────────────────── */
.quote-stripe {
  background: linear-gradient(-45deg, var(--mk-burgundy-d), var(--mk-burgundy), var(--mk-burgundy-lt), var(--mk-burgundy));
  background-size: 300% 300%;
  animation: heroGrad 8s ease infinite;
  padding: 2rem 1.5rem;
  border-radius: var(--mk-radius);
  text-align: center;
}
.quote-stripe p { color: rgba(255,255,255,.92); font-size: 1.1rem; font-weight: 600; margin: 0; }

/* ── STEPS ───────────────────────────────────────────────────── */
.mk-step { display: flex; gap: 1.2rem; padding-bottom: 1.8rem; position: relative; }
.mk-step:not(:last-child)::before {
  content: ''; position: absolute; right: 18px; top: 42px; bottom: 0;
  width: 2px; background: rgba(143,16,24,.15);
}
.step-num {
  flex-shrink: 0; width: 38px; height: 38px;
  background: var(--mk-burgundy); color: var(--mk-white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem;
}
.mk-step h5 { color: var(--mk-teal-d); font-weight: 700; margin-bottom: .25rem; }
.mk-step p  { font-size: .93rem; margin: 0; }

/* ── AGE CARDS ───────────────────────────────────────────────── */
.age-card {
  background: var(--mk-white); border-radius: var(--mk-radius); padding: 1.5rem;
  box-shadow: var(--mk-shadow-sm); border-top: 4px solid var(--mk-burgundy);
  height: 100%; transition: transform var(--mk-trans), box-shadow var(--mk-trans);
}
.age-card:hover { transform: translateY(-4px); box-shadow: var(--mk-shadow-md); }
.age-range { font-size: 1rem; font-weight: 800; color: var(--mk-burgundy); margin-bottom: .3rem; }
.age-card h5 { color: var(--mk-teal-d); font-weight: 700; }

/* ── BRANCH CARD ─────────────────────────────────────────────── */
.branch-card {
  background: var(--mk-white); border: 1px solid var(--mk-border);
  border-radius: var(--mk-radius-lg); padding: 2rem 1.8rem;
  box-shadow: var(--mk-shadow-sm);
  transition: transform var(--mk-trans), box-shadow var(--mk-trans); height: 100%;
}
.branch-card:hover { transform: translateY(-5px); box-shadow: var(--mk-shadow-md); }
.branch-card .bicon { font-size: 2.4rem; margin-bottom: .8rem; display: block; }
.branch-card h4 { color: var(--mk-teal-d); font-weight: 700; }
.branch-card address { font-style: normal; color: var(--mk-text-light); font-size: .93rem; }

/* ── ZOOM ROOMS GRID ─────────────────────────────────────────── */
.zoom-series-title {
  font-family: 'Heebo', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--mk-text-light);
  border-bottom: 2px solid var(--mk-border);
  padding-bottom: .4rem;
  margin-bottom: .8rem;
}
.zoom-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  background: var(--mk-white);
  border: 1px solid var(--mk-border);
  border-radius: 10px;
  padding: .6rem 1rem;
  margin-bottom: .45rem;
  box-shadow: 0 1px 6px rgba(16,63,74,.06);
  transition: box-shadow var(--mk-trans), border-color var(--mk-trans);
}
.zoom-card:hover {
  border-color: var(--mk-teal-lt);
  box-shadow: 0 4px 14px rgba(16,63,74,.12);
}
.zoom-card-name {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  font-size: .95rem;
  color: var(--mk-text);
}
.zoom-card-name i { color: var(--mk-teal); font-size: 1rem; }
.zoom-card-btn {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: var(--mk-teal);
  color: var(--mk-white) !important;
  font-size: .82rem;
  font-weight: 600;
  padding: .3rem .85rem;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--mk-trans);
}
.zoom-card-btn:hover { background: var(--mk-teal-d); }
.zoom-card-btn i { font-size: .78rem; }
/* Special cards */
.zoom-card-special {
  background: linear-gradient(135deg, #0b2f3a, #103f4a);
  border: none;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  box-shadow: var(--mk-shadow-md);
}
.zoom-card-special .zoom-card-name { color: var(--mk-white); }
.zoom-card-special .zoom-card-name i { color: var(--mk-gold-lt); font-size: 1.2rem; }
.zoom-card-special .zoom-card-btn {
  background: var(--mk-gold);
  font-size: .9rem;
  padding: .4rem 1.1rem;
}
.zoom-card-special .zoom-card-btn:hover { background: var(--mk-gold-lt); color: var(--mk-teal-d) !important; }
.zoom-card-special-dl .zoom-card-btn {
  background: var(--mk-burgundy);
}
.zoom-card-special-dl .zoom-card-btn:hover { background: var(--mk-burgundy-d); }

/* ── CONTACT FORM ────────────────────────────────────────────── */
.contact-box {
  background: var(--mk-white); border-radius: var(--mk-radius-lg);
  padding: 2.5rem; box-shadow: var(--mk-shadow-lg); border: 1px solid var(--mk-border);
}
.form-label { font-weight: 600; font-size: .88rem; color: var(--mk-teal-d); margin-bottom: .4rem; }
.form-control, .form-select {
  border: 1.5px solid #d4e0e5; border-radius: 10px;
  padding: .7rem 1rem; font-family: 'Heebo',sans-serif;
  font-size: .97rem; color: var(--mk-text); direction: rtl;
  transition: border-color var(--mk-trans), box-shadow var(--mk-trans);
}
.form-control:focus, .form-select:focus {
  border-color: var(--mk-burgundy);
  box-shadow: 0 0 0 3px rgba(143,16,24,.1); outline: none;
}
.contact-detail {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 0; border-bottom: 1px solid #eef2f4;
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
  width: 44px; height: 44px; background: var(--mk-soft-blue);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.contact-detail-label { font-size: .78rem; color: var(--mk-text-light); margin-bottom: .1rem; }
.contact-detail a { font-weight: 600; color: var(--mk-teal); font-size: .97rem; }
.contact-detail a:hover { color: var(--mk-burgundy); }

/* ── FOOTER ──────────────────────────────────────────────────── */
.mk-footer {
  background: linear-gradient(160deg, #0b2f3a 0%, #103f4a 60%, #1a0408 100%);
  padding: 4.5rem 0 0;
  color: rgba(255,255,255,.75);
}
.footer-brand-name { font-size: 1.7rem; font-weight: 900; color: var(--mk-white); }
.footer-tagline { color: var(--mk-gold-lt); font-size: .9rem; font-weight: 500; margin: .2rem 0 1rem; }
.mk-footer p { font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.75; }
.footer-contact-list { list-style: none; padding: 0; margin: 1.2rem 0 0; display: flex; flex-direction: column; gap: .5rem; }
.footer-contact-list a { font-size: .9rem; color: rgba(255,255,255,.65); transition: color var(--mk-trans); }
.footer-contact-list a:hover { color: var(--mk-gold-lt); }
.footer-col h5 {
  font-size: .92rem; font-weight: 700; color: var(--mk-white);
  margin-bottom: 1rem; padding-bottom: .5rem;
  border-bottom: 2px solid rgba(143,16,24,.4);
}
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.6); transition: color var(--mk-trans); }
.footer-links a:hover { color: var(--mk-gold-lt); }
.footer-bottom {
  margin-top: 3rem; border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.3rem 0; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: .5rem;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.4); margin: 0; }

/* ── BREADCRUMB ──────────────────────────────────────────────── */
.mk-breadcrumb {
  background: var(--mk-light); padding: .7rem 0;
  border-bottom: 1px solid rgba(16,63,74,.07);
  font-size: .83rem; position: relative; z-index: 5;
}
.mk-breadcrumb a { color: var(--mk-teal); }
.mk-breadcrumb a:hover { color: var(--mk-burgundy); }
.mk-breadcrumb .sep { margin: 0 .4rem; color: var(--mk-text-light); }
.mk-breadcrumb .current { color: var(--mk-text-light); }

/* ── VALUE ITEMS ─────────────────────────────────────────────── */
.value-item { text-align: center; padding: 1.5rem 1rem; }
.value-item .vi-icon { font-size: 2.2rem; margin-bottom: .7rem; }
.value-item h5 { color: var(--mk-teal-d); font-weight: 700; }
.value-item p { font-size: .9rem; }

/* ── TAG CHIPS ───────────────────────────────────────────────── */
.tag-chip {
  display: inline-block; background: rgba(143,16,24,.08); color: var(--mk-burgundy);
  font-size: .8rem; font-weight: 600; padding: .28rem .8rem;
  border-radius: 50px; margin: .2rem;
}

/* ── COMING SOON ─────────────────────────────────────────────── */
.coming-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(200,148,30,.12); border: 1px solid rgba(200,148,30,.3);
  color: var(--mk-gold); font-size: .82rem; font-weight: 600;
  padding: .3rem .9rem; border-radius: 50px;
}

/* ── SECTION BACKGROUNDS ─────────────────────────────────────── */
.bg-mk-light  { background: var(--mk-light); }
.bg-mk-soft   { background: var(--mk-soft-blue); }
.bg-mk-teal   { background: var(--mk-teal); }
.bg-mk-burg   { background: var(--mk-burgundy); }
.bg-mk-burg-soft { background: var(--mk-soft-burg); }

/* Burgundy accent strip */
.burg-strip {
  background: linear-gradient(-45deg, var(--mk-burgundy-d), var(--mk-burgundy), var(--mk-burgundy-lt), var(--mk-burgundy-d));
  background-size: 300% 300%;
  animation: heroGrad 8s ease infinite;
  padding: 3rem 0;
}

/* ── UTILS ───────────────────────────────────────────────────── */
.text-teal    { color: var(--mk-teal) !important; }
.text-burg    { color: var(--mk-burgundy) !important; }
.text-gold    { color: var(--mk-gold) !important; }
.text-gold-lt { color: var(--mk-gold-lt) !important; }
.fw-800       { font-weight: 800 !important; }
.fw-900       { font-weight: 900 !important; }
.rounded-mk   { border-radius: var(--mk-radius) !important; }
.rounded-mk-lg{ border-radius: var(--mk-radius-lg) !important; }

/* Animations */
.anim-up   { animation: fadeUp .55s ease both; }
.anim-up-2 { animation: fadeUp .55s .12s ease both; }
.anim-up-3 { animation: fadeUp .55s .24s ease both; }

/* ── FADE-UP SCROLL ANIMATION ────────────────────────────────── */
.mk-fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.mk-fade-up.mk-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── HERO DIGITAL OVERLAY ────────────────────────────────────── */
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}
.hero-glow {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,148,30,.09) 0%, transparent 65%);
  top: 50%; left: 25%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

/* ── CARD HOVER — icon scale ─────────────────────────────────── */
.mk-card .card-icon {
  transition: transform var(--mk-trans);
}
.mk-card:hover .card-icon {
  transform: scale(1.13);
}

/* ── BUTTON SHINE ────────────────────────────────────────────── */
.btn-mk-primary,
.btn-mk-gold {
  position: relative;
  overflow: hidden;
}
.btn-mk-primary::after,
.btn-mk-gold::after {
  content: '';
  position: absolute;
  top: 0; left: -80px;
  width: 60px; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transform: skewX(-15deg);
  transition: left .5s ease;
  pointer-events: none;
}
.btn-mk-primary:hover::after,
.btn-mk-gold:hover::after {
  left: 120%;
}

/* ── MIVDAK 360 — interactive check grid ─────────────────────── */
.mivdak-check-grid .mk-card {
  cursor: default;
  border-bottom: 3px solid transparent;
  transition: transform var(--mk-trans), box-shadow var(--mk-trans), border-color var(--mk-trans);
}
.mivdak-check-grid .mk-card:hover {
  border-bottom-color: var(--mk-burgundy);
  transform: translateY(-6px);
}
.mivdak-check-grid .mk-card.ci-teal-border:hover { border-bottom-color: var(--mk-teal); }
.mivdak-check-grid .mk-card.ci-gold-border:hover  { border-bottom-color: var(--mk-gold); }

/* ── FLOATING CONTACT BUTTON ─────────────────────────────────── */
.mk-float-btn {
  position: fixed;
  bottom: 1.6rem;
  left: 1.6rem;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  align-items: flex-start;
}
.mk-float-btn a {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem 1rem .55rem .7rem;
  border-radius: 50px;
  font-family: 'Heebo', sans-serif;
  font-weight: 600;
  font-size: .87rem;
  text-decoration: none;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(0,0,0,.22);
  transition: transform .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.mk-float-btn a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.3);
}
.mk-float-btn .flt-phone { background: var(--mk-teal); }
.mk-float-btn .flt-wa    { background: #25D366; }
.mk-float-btn i { font-size: .95rem; }

/* ── prefers-reduced-motion ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .mk-fade-up { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1199px) {
  .hero-char-pull img { max-height: 500px; }
  .mk-hero { padding: 3.5rem 0 0; min-height: 460px; }
}
@media (max-width: 991px) {
  .hero-char-pull, .page-char-pull { display: none; }
  .mk-hero { min-height: auto; padding: 3rem 0 2.5rem; overflow: hidden; }
  .mk-page-hero { padding: 2.5rem 0 2rem; overflow: hidden; }
  .after-hero { padding-top: 4rem !important; }
  .after-page-hero { padding-top: 3rem !important; }
  .stats-strip { z-index: auto; }
}
@media (max-width: 767px) {
  .footer-bottom { flex-direction: column; text-align: center; }
  .mk-hero h1 { font-size: 1.9rem; }
}
