/* =========================================================
   MKP PREMIUM — Custom Stylesheet
   MKMFS (Parent) + MKM VISUALS (Subsidiary)
   ========================================================= */

/* ── CSS Variables ── */
:root {
  --navy: #0d1b3e;
  --navy-mid: #1a2e5a;
  --gold: #d4a843;
  --gold-light: #f5c842;
  --purple: #2d1b69;
  --violet: #7c3aed;
  --violet-light: #a855f7;
  --cyan: #06b6d4;
  --white: #ffffff;
  --light-bg: #f4f6fb;
  --dark-bg: #0a0f1e;
  --text-dark: #1e2d4a;
  --text-mid: #4a5568;
  --text-light: #94a3b8;
  --border: rgba(255, 255, 255, 0.12);
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.14);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.22);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.7;
}
a {
  text-decoration: none;
  transition: var(--transition);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul {
  list-style: none;
}

/* ── Typography ── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-label.gold {
  background: rgba(212, 168, 67, 0.15);
  color: var(--gold);
}
.section-label.violet {
  background: rgba(124, 58, 237, 0.12);
  color: var(--violet);
}
.section-label.cyan {
  background: rgba(6, 182, 212, 0.12);
  color: var(--cyan);
}
.section-label.white {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.section-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title.xl {
  font-size: clamp(2rem, 4vw, 3rem);
}
.section-title.lg {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}
.section-title.md {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 580px;
  line-height: 1.8;
}
.section-sub.light {
  color: rgba(255, 255, 255, 0.75);
}
.text-gold {
  color: var(--gold) !important;
}
.text-violet {
  color: var(--violet) !important;
}
.text-cyan {
  color: var(--cyan) !important;
}
.text-white {
  color: #fff !important;
}

/* ── Buttons ── */
.btn-mkp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: 0 6px 25px rgba(212, 168, 67, 0.4);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 168, 67, 0.55);
  color: var(--navy);
}
.btn-violet {
  background: linear-gradient(135deg, var(--violet), var(--violet-light));
  color: #fff;
  box-shadow: 0 6px 25px rgba(124, 58, 237, 0.4);
}
.btn-violet:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(124, 58, 237, 0.55);
  color: #fff;
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ── Section Spacing ── */
.section {
  padding: 100px 0;
}
.section-sm {
  padding: 60px 0;
}
.section-lg {
  padding: 130px 0;
}
.section-light {
  background: var(--light-bg);
}
.section-dark {
  background: var(--dark-bg);
}
.section-navy {
  background: var(--navy);
}
.section-purple {
  background: var(--purple);
}

/* ── Top Bar ── */
.mkp-topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mkp-topbar a {
  color: rgba(255, 255, 255, 0.75);
}
.mkp-topbar a:hover {
  color: var(--gold);
}
.mkp-topbar .topbar-info {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.mkp-topbar .topbar-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.8rem;
  margin-left: 6px;
  transition: var(--transition);
}
.mkp-topbar .topbar-social a:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ── Premium Navbar ── */
.mkp-navbar {
  background: #fff;
  border-top: 3px solid var(--gold); /* gold accent top bar */
  padding: 0;
  box-shadow: 0 2px 30px rgba(13, 27, 62, 0.09);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}
.mkp-navbar.scrolled {
  box-shadow: 0 6px 40px rgba(13, 27, 62, 0.16);
  border-top-color: var(--gold);
}

/* Logo */
.mkp-logo-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--navy);
  letter-spacing: -1.5px;
  line-height: 1;
}
.mkp-logo-text span {
  color: var(--gold);
}
.mkp-logo-sub {
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  line-height: 1;
  margin-top: 3px;
}

/* Nav links */
.mkp-navbar .nav-link {
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--text-dark) !important;
  padding: 22px 14px !important;
  position: relative;
  transition: var(--transition);
}
.mkp-navbar .nav-link:hover {
  color: var(--navy) !important;
}

/* Gold underline bar */
.mkp-navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 14px;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px 3px 0 0;
  transition: var(--transition);
}
.mkp-navbar .nav-link:hover::after,
.mkp-navbar .nav-link.active::after {
  width: calc(100% - 28px);
}
.mkp-navbar .nav-link.active {
  color: var(--navy) !important;
}

/* dd-icon spans hidden on desktop */
.mkp-navbar .dd-icon {
  display: none;
}

/* ── Dropdown menu — DESKTOP (hover open) ── */
@media (min-width: 992px) {
  .mkp-navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s ease;
    pointer-events: none;
    margin-top: 0 !important;
    border: none;
    box-shadow: 0 16px 50px rgba(13, 27, 62, 0.14);
    border-radius: var(--radius-md);
    padding: 8px;
    min-width: 240px;
    border-top: 3px solid var(--gold);
  }
  .mkp-navbar .nav-item.dropdown:hover > .dropdown-menu,
  .mkp-navbar .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* Dropdown items */
.mkp-navbar .dropdown-item {
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  border-left: 3px solid transparent;
}
.mkp-navbar .dropdown-item:hover {
  background: var(--light-bg);
  color: var(--navy);
  border-left-color: var(--gold);
  padding-left: 18px;
}
.mkp-navbar .dropdown-menu .dropdown-header {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 10px 14px 6px;
}

/* ── Toggler ── */
.navbar-toggler {
  border: 2px solid var(--navy);
  border-radius: 8px;
  padding: 6px 10px;
}
.navbar-toggler:focus {
  box-shadow: none;
}

/* ── Hero ── */
.mkp-hero {
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    #1a2e5a 40%,
    #0d2d5c 70%,
    var(--purple) 100%
  );
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.mkp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.mkp-hero::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.25) 0%,
    transparent 70%
  );
  right: -200px;
  top: -200px;
  animation: pulse 6s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}
.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 168, 67, 0.15) 0%,
    transparent 70%
  );
  left: -150px;
  bottom: -150px;
  animation: pulse 8s ease-in-out infinite reverse;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 8px 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 1.5s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.hero-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title .line-gold {
  color: var(--gold);
  display: block;
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.85;
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-stat-num {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  letter-spacing: 1px;
}
.hero-visual {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}
.hero-card-float {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: #fff;
}
.hero-service-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 4px;
  transition: var(--transition);
}
.hero-service-pill:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.hero-service-pill i {
  font-size: 0.75rem;
  color: var(--gold);
}
.hero-service-pill:hover i {
  color: var(--navy);
}

/* ── Service Cards ── */
.mkp-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.mkp-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.mkp-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.mkp-card:hover::before {
  transform: scaleX(1);
}
.mkp-card.violet-accent::before {
  background: linear-gradient(90deg, var(--violet), var(--violet-light));
}
.card-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
  transition: var(--transition);
}
.icon-gold {
  background: rgba(212, 168, 67, 0.12);
  color: var(--gold);
}
.icon-violet {
  background: rgba(124, 58, 237, 0.1);
  color: var(--violet);
}
.icon-cyan {
  background: rgba(6, 182, 212, 0.1);
  color: var(--cyan);
}
.mkp-card:hover .card-icon-wrap {
  transform: scale(1.1) rotate(5deg);
}
.card-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.card-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 18px;
  transition: var(--transition);
}
.card-link.violet {
  color: var(--violet);
}
.card-link:hover {
  gap: 12px;
}

/* ── Stats Counter ── */
.mkp-stats {
  background: linear-gradient(135deg, var(--navy), #1a3a6c);
  padding: 80px 0;
}
.stat-item {
  text-align: center;
  padding: 20px;
}
.stat-num {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  letter-spacing: 0.5px;
}
.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
  height: 80px;
  margin: auto;
}

/* ── About Section ── */
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-badge-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px 28px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-badge-num {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.about-badge-txt {
  font-size: 0.78rem;
  color: var(--text-mid);
  font-weight: 500;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.feature-check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-top: 2px;
}

/* ── MKM Visuals Section ── */
.mkm-visuals-hero {
  background: linear-gradient(
    135deg,
    var(--purple) 0%,
    #1a0b40 40%,
    #0d1b3e 100%
  );
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.mkm-visuals-hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(168, 85, 247, 0.2) 0%,
    transparent 70%
  );
  right: -200px;
  top: -200px;
}
.mkm-visuals-hero::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(6, 182, 212, 0.15) 0%,
    transparent 70%
  );
  left: -100px;
  bottom: -100px;
}
.mkm-logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 12px 24px;
  margin-bottom: 28px;
}
.mkm-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--violet), var(--violet-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}
.mkm-logo-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
}
.mkm-logo-sub-text {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ── CTA Section ── */
.mkp-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 80px 0;
  text-align: center;
}
.mkp-cta h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 16px;
}
.mkp-cta p {
  color: rgba(13, 27, 62, 0.75);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 32px;
}
.btn-navy {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 6px 25px rgba(13, 27, 62, 0.35);
}
.btn-navy:hover {
  background: #0a1225;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(13, 27, 62, 0.45);
  color: #fff;
}

/* ── Contact Section ── */
.contact-info-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.contact-person-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
}
.contact-person-card.person-gold::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.contact-person-card.person-navy::before {
  background: linear-gradient(90deg, #24437a, var(--navy));
}
.contact-person-card.person-violet::before {
  background: linear-gradient(90deg, var(--violet), var(--violet-light));
}
.contact-photo-shell {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  padding: 3px;
  position: relative;
  background: conic-gradient(
    from 210deg,
    var(--gold),
    var(--navy),
    var(--violet),
    var(--gold)
  );
  box-shadow: 0 14px 28px rgba(13, 27, 62, 0.2);
  transition: transform 0.35s ease;
}
.contact-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.2rem;
}
.contact-icon.violet-ic {
  background: linear-gradient(135deg, var(--violet), var(--violet-light));
  color: #fff;
}
.contact-person-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: inset 0 0 0 1px rgba(13, 27, 62, 0.1);
}
.contact-photo-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: #22c55e;
  position: absolute;
  right: 6px;
  bottom: 6px;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
}
.contact-person-card:hover .contact-photo-shell {
  transform: translateY(-2px) scale(1.04) rotate(-2deg);
}
.contact-role-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  border: 1px solid transparent;
}
.contact-role-badge.role-gold {
  color: #6e4a00;
  background: linear-gradient(
    135deg,
    rgba(212, 168, 67, 0.2),
    rgba(255, 239, 186, 0.58)
  );
  border-color: rgba(212, 168, 67, 0.42);
}
.contact-role-badge.role-navy {
  color: #0d1b3e;
  background: linear-gradient(
    135deg,
    rgba(36, 67, 122, 0.18),
    rgba(188, 207, 245, 0.42)
  );
  border-color: rgba(36, 67, 122, 0.38);
}
.contact-role-badge.role-violet {
  color: #4f2ba8;
  background: linear-gradient(
    135deg,
    rgba(126, 75, 230, 0.2),
    rgba(229, 216, 255, 0.5)
  );
  border-color: rgba(126, 75, 230, 0.38);
}
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.form-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.form-control,
.form-select {
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: var(--transition);
  background: #fafbfd;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.15);
  outline: none;
  background: #fff;
}
textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

/* ── Footer ── */
.mkp-footer {
  background: var(--dark-bg);
  padding: 80px 0 0;
}
.footer-brand {
  margin-bottom: 24px;
}
.footer-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 28px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 8px;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}
.footer-heading {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 0.88rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.footer-links a::before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.6rem;
  color: var(--gold);
  opacity: 0;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}
.footer-links a:hover::before {
  opacity: 1;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-item i {
  color: var(--gold);
  margin-top: 3px;
}
.footer-contact-item span {
  font-size: 0.88rem;
  color: var(--text-light);
}
.footer-bottom {
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px 0;
  margin-top: 60px;
}
.footer-bottom p {
  font-size: 0.83rem;
  color: var(--text-light);
  margin: 0;
}
.footer-bottom a {
  color: var(--gold);
}

/* ── Founder / Team Cards ── */
.founder-section {
  background: var(--light-bg);
}
.founder-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 36px 24px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.founder-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.founder-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 55px rgba(13, 27, 62, 0.14);
}
.founder-photo-wrap {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 20px;
}
.founder-photo-wrap::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--gold),
    var(--gold-light),
    var(--navy)
  );
  z-index: 0;
  animation: spinRing 6s linear infinite;
}
@keyframes spinRing {
  to {
    transform: rotate(360deg);
  }
}
.founder-photo-wrap img,
.founder-photo-wrap .founder-avatar {
  width: 102px;
  height: 102px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  object-fit: cover;
  border: 4px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-avatar {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: #fff;
  width: 102px;
  height: 102px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  border: 4px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), #1a3a6c);
  margin: 0 auto;
}
.founder-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.founder-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.founder-divider {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px;
  margin: 12px auto;
}
.founder-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--light-bg);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 10px;
  transition: var(--transition);
  text-decoration: none;
}
.founder-phone:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
}
.founder-phone i {
  color: var(--gold);
  font-size: 0.75rem;
}
.founder-phone:hover i {
  color: var(--navy);
}

/* ── Animations & AOS overrides ── */
[data-aos] {
  transition-duration: 0.7s !important;
}
.float-anim {
  animation: floatY 4s ease-in-out infinite;
}
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* ═══════════════════════════════════════════
   UTILITY CLASSES  (replaces inline CSS)
════════════════════════════════════════════ */

/* Typography */
.font-montserrat {
  font-family: "Montserrat", sans-serif;
}
.fw-700 {
  font-weight: 700 !important;
}
.fw-800 {
  font-weight: 800 !important;
}
.fw-900 {
  font-weight: 900 !important;
}
.fs-sm {
  font-size: 0.9rem;
}
.fs-xs {
  font-size: 0.82rem;
}
.lh-lg {
  line-height: 1.75;
}
.ls-wide {
  letter-spacing: 2px;
}

/* Colors */
.text-navy {
  color: var(--navy) !important;
}
.text-mid {
  color: var(--text-mid) !important;
}
.text-muted-custom {
  color: var(--text-light) !important;
}
.text-cyan {
  color: var(--cyan) !important;
}
.text-white-70 {
  color: rgba(255, 255, 255, 0.7) !important;
}
.text-white-80 {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Background gradients */
.bg-navy-grad {
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    #1a3a6c 60%,
    #0d2d5c 100%
  );
}
.bg-violet-grad {
  background: linear-gradient(
    135deg,
    var(--purple) 0%,
    #1a0b40 50%,
    #0d1b3e 100%
  );
}
.bg-gold-grad {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}
.bg-dark-card {
  background: linear-gradient(135deg, var(--navy), #1a3a6c);
}

/* Glassmorphism cards */
.bg-glass {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
}
.bg-glass-pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
}
.bg-light-custom {
  background: var(--light-bg);
  border-radius: var(--radius-md);
  padding: 24px;
}

/* Hero section helpers */
.hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.glow-orb-gold {
  background: radial-gradient(
    circle,
    rgba(212, 168, 67, 0.15) 0%,
    transparent 70%
  );
}
.glow-orb-violet {
  background: radial-gradient(
    circle,
    rgba(168, 85, 247, 0.2) 0%,
    transparent 70%
  );
}
.glow-orb-cyan {
  background: radial-gradient(
    circle,
    rgba(6, 182, 212, 0.15) 0%,
    transparent 70%
  );
}
.glow-orb-lg {
  width: 700px;
  height: 700px;
}
.glow-orb-md {
  width: 500px;
  height: 500px;
}
.glow-orb-sm {
  width: 400px;
  height: 400px;
}
.glow-orb-tr {
  right: -200px;
  top: -200px;
}
.glow-orb-bl {
  left: -150px;
  bottom: -150px;
}

/* MKM Visuals logo badge */
.mkm-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 12px 24px;
  margin-bottom: 28px;
}
.mkm-badge-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--violet), var(--violet-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}
.mkm-badge-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
}
.mkm-badge-sub {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Icon backgrounds */
.icon-gold-bg {
  background: rgba(212, 168, 67, 0.12);
  color: var(--gold);
}
.icon-violet-bg {
  background: rgba(124, 58, 237, 0.1);
  color: var(--violet);
}
.icon-cyan-bg {
  background: rgba(6, 182, 212, 0.1);
  color: var(--cyan);
}

/* Founder avatar colors */
.avatar-navy-grad {
  background: linear-gradient(135deg, #0d1b3e, #1a3a6c);
}
.avatar-violet-grad {
  background: linear-gradient(135deg, #2d1b69, #7c3aed);
}
.avatar-cyan-grad {
  background: linear-gradient(135deg, #0e7490, #06b6d4);
}
.founder-card-violet {
  border-top-color: var(--violet);
}
.founder-card-cyan {
  border-top-color: var(--cyan);
}
.founder-phone-violet {
  background: rgba(124, 58, 237, 0.08) !important;
  color: var(--violet) !important;
}
.founder-phone-cyan {
  background: rgba(6, 182, 212, 0.08) !important;
  color: var(--cyan) !important;
}
.founder-phone-violet i {
  color: var(--violet) !important;
}
.founder-phone-cyan i {
  color: var(--cyan) !important;
}
.founder-divider-violet {
  background: linear-gradient(90deg, var(--violet), var(--violet-light));
}
.founder-divider-cyan {
  background: linear-gradient(90deg, var(--cyan), #38bdf8);
}

/* Card helpers */
.card-dark {
  background: linear-gradient(135deg, var(--navy), #1a3a6c);
  border: none;
}
.card-dark .card-title {
  color: #fff;
}
.card-dark .card-text {
  color: rgba(255, 255, 255, 0.7);
}
.card-glass-dark {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
}

/* Contact page */
.contact-icon-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e) !important;
}

/* Section page heroes */
.page-hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-content {
  position: relative;
  z-index: 2;
}

/* Info block (contact page) */
.info-block {
  background: var(--light-bg);
  border-radius: var(--radius-md);
  padding: 24px;
}
.info-block-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 8px;
}

/* Business hours */
.hours-text {
  font-size: 0.85rem;
  color: var(--text-mid);
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Mobile Menu & Layout
════════════════════════════════════════════ */

/* ── Tablet & Mobile (< 992px) ── */
@media (max-width: 991.98px) {
  /* Underline animation — hide on mobile */
  .mkp-navbar .nav-link::after {
    display: none;
  }

  /* Nav link base — bigger touch targets */
  .mkp-navbar .nav-link {
    padding: 13px 20px !important;
    font-size: 0.9rem !important;
    border-bottom: 1px solid rgba(13, 27, 62, 0.06);
    border-radius: 0;
  }

  /* Collapsed menu panel */
  .mkp-navbar .navbar-collapse {
    background: #fff;
    border-top: 2px solid var(--gold);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: 0 16px 48px rgba(13, 27, 62, 0.14);
    padding: 8px 0 16px;
    margin: 0 -12px;
    max-height: 80vh;
    overflow-y: auto;
  }

  /* Mobile dropdown — reset to Bootstrap default */
  .mkp-navbar .dropdown-menu {
    display: none;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
    box-shadow: none;
    border: none;
    border-top: 2px solid rgba(212, 168, 67, 0.25);
    border-radius: 0;
    background: var(--light-bg);
    padding: 6px 0 10px;
    margin: 0 !important;
    width: 100%;
  }
  .mkp-navbar .dropdown-menu.show {
    display: block;
  }

  /* Mobile dropdown items */
  .mkp-navbar .dropdown-item {
    padding: 10px 32px;
    border-left: none;
    border-radius: 0;
    font-size: 0.85rem;
  }
  .mkp-navbar .dropdown-item:hover {
    padding-left: 36px;
    border-left: none;
  }

  /* Mobile dropdown header label */
  .mkp-navbar .dropdown-menu .dropdown-header {
    padding: 10px 32px 6px;
  }

  /* CTA button — full-width centered */
  .mkp-navbar .nav-item.ms-lg-2 {
    padding: 12px 20px 4px;
  }
  .mkp-navbar .nav-item.ms-lg-2 .btn-mkp {
    width: 100%;
    justify-content: center;
  }

  /* Last nav-item no border */
  .mkp-navbar .nav-item:last-child .nav-link {
    border-bottom: none;
  }

  /* ── + / − toggle icon ── */
  /* Show dd-icon on mobile */
  .mkp-navbar .dd-icon {
    display: inline-flex;
  }

  /* Hide Bootstrap's default caret */
  .mkp-navbar .dropdown-toggle::after {
    display: none !important;
  }

  /* Make dropdown nav-link flex so icon goes to right */
  .mkp-navbar .nav-item.dropdown > .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* The icon box */
  .mkp-navbar .dd-icon {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: var(--light-bg);
    border: 1.5px solid rgba(13, 27, 62, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-weight: 800;
    font-size: 1.1rem;
    line-height: 1;
    color: var(--navy);
    flex-shrink: 0;
    transition:
      background 0.2s ease,
      color 0.2s ease,
      transform 0.25s ease;
    pointer-events: none;
  }

  /* + when closed */
  .mkp-navbar .dd-icon::before {
    content: "+";
  }

  /* − when open — aria-expanded="true" is set by Bootstrap 5 on toggle */
  .mkp-navbar .nav-link[aria-expanded="true"] .dd-icon {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
  }
  .mkp-navbar .nav-link[aria-expanded="true"] .dd-icon::before {
    content: "−";
  }

  /* Hero */
  .hero-visual {
    display: none;
  }
  .hero-content {
    padding: 90px 0 60px;
  }

  /* About badge */
  .about-badge-float {
    position: static;
    display: inline-block;
    margin-top: 24px;
  }

  /* Stats divider */
  .stat-divider {
    display: none;
  }
}

/* ── Mobile only (< 768px) ── */
@media (max-width: 767.98px) {
  /* Top bar — hide 3rd phone, wrap email short */
  .mkp-topbar .topbar-info {
    gap: 10px;
    flex-wrap: wrap;
  }
  .mkp-topbar .topbar-info a:last-child {
    display: none;
  }

  /* Sections */
  .section {
    padding: 60px 0;
  }
  .section-sm {
    padding: 40px 0;
  }

  /* Founder cards */
  .founder-card {
    padding: 28px 18px 22px;
  }

  /* Contact form */
  .contact-form-wrap {
    padding: 28px 18px;
  }

  /* Stats */
  .hero-stats {
    gap: 16px;
  }

  /* Page hero text */
  .page-hero {
    padding: 80px 0 60px;
  }
}

/* ── Small phones (< 480px) ── */
@media (max-width: 479.98px) {
  /* Logo text size */
  .mkp-logo-text {
    font-size: 1.3rem;
  }
  .mkp-logo-sub {
    font-size: 0.52rem;
    letter-spacing: 1.5px;
  }

  /* Topbar — hide all but first phone */
  .mkp-topbar .topbar-info a:nth-child(n + 2) {
    display: none;
  }

  /* Section titles */
  .section-title.xl {
    font-size: 1.6rem;
  }
  .section-title.lg {
    font-size: 1.4rem;
  }

  /* Hero title */
  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  /* Cards full width */
  .founder-card {
    padding: 24px 14px 18px;
  }
  .mkp-card {
    padding: 22px 16px;
  }
}
