/* =====================================================================
   Matra Kripa Tour and Travels — Public Site Stylesheet
   Editorial / premium travel aesthetic. Cards used sparingly by design.
   ===================================================================== */

:root {
  --indigo-deep: #1c2b46;
  --indigo-deeper: #131f34;
  --ivory: #fffcf6;
  --sand: #f5f7fb;
  --sand-border: #e4e9f1;
  --marigold: #e6a028;
  --marigold-deep: #c9841a;
  --rust: #9c3a2b;
  --rust-deep: #7c2c20;
  --muted: #6b6152;

  --font-heading:
    "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body:
    "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 10px;
  --shadow-soft: 0 6px 24px rgba(28, 43, 70, 0.08);
  --shadow-strong: 0 12px 40px rgba(28, 43, 70, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--indigo-deep);
  background: var(--ivory);
  line-height: 1.65;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
.display-heading {
  font-family: var(--font-heading);
  color: var(--indigo-deep);
  font-weight: 800;
  line-height: 1.16;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}
h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}
h3 {
  font-size: 1.35rem;
}

a {
  color: var(--rust);
  text-decoration: none;
}
a:hover {
  color: var(--rust-deep);
}

img {
  max-width: 100%;
  display: block;
}

.container-mk {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--marigold-deep);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.eyebrow.on-dark {
  color: var(--marigold);
}

/* ---------- Buttons ---------- */
.btn-mk {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-mk-primary {
  background: var(--marigold);
  color: var(--indigo-deeper);
  border-color: var(--marigold);
}
.btn-mk-primary:hover {
  background: var(--marigold-deep);
  border-color: var(--marigold-deep);
  color: #fff;
}
.btn-mk-outline {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-mk-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.btn-mk-rust {
  background: var(--rust);
  color: #fff;
  border-color: var(--rust);
}
.btn-mk-rust:hover {
  background: var(--rust-deep);
  border-color: var(--rust-deep);
}
.btn-mk-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}

/* ---------- Header ---------- */
.mk-header {
  background: var(--ivory);
  border-bottom: 1px solid var(--sand-border);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.mk-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  gap: 1.5rem;
}
.mk-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--indigo-deep);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}
.mk-logo img {
  width: auto;
  height: 54px;
  max-width: 240px;
  object-fit: contain;
  flex: 0 0 auto;
}
.mk-logo-text {
  color: var(--indigo-deep);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mk-nav {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}
.mk-nav a.nav-link-mk {
  color: var(--indigo-deep);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
}
.mk-nav a.nav-link-mk:hover {
  color: var(--rust);
}

.mk-dropdown {
  position: relative;
}
.mk-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--sand-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  min-width: 260px;
  padding: 0.5rem;
  display: none;
  z-index: 50;
}
.mk-dropdown:hover .mk-dropdown-menu,
.mk-dropdown.open .mk-dropdown-menu {
  display: block;
}
.mk-dropdown-menu a {
  display: block;
  padding: 0.55rem 0.8rem;
  border-radius: 6px;
  color: var(--indigo-deep);
  font-size: 0.9rem;
  font-weight: 500;
}
.mk-dropdown-menu a:hover {
  background: var(--sand);
  color: var(--rust);
}

.mk-header-cta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.mk-call-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--indigo-deep);
  color: #fff;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}
.mk-call-btn:hover {
  background: var(--indigo-deeper);
  color: #fff;
}

.mk-mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--indigo-deep);
}

/* ---------- Hero ---------- */
.mk-hero {
  background: linear-gradient(135deg, var(--indigo-deep), var(--indigo-deeper));
  color: var(--ivory);
  padding: 4.5rem 0 5rem;
}
.mk-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
}
.mk-hero h1 {
  color: #fff;
  margin-bottom: 1rem;
}
.mk-hero p.lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  max-width: 46ch;
  margin-bottom: 1.75rem;
}
.mk-hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.mk-trust-points {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.mk-trust-points div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
}
.mk-trust-points i {
  color: var(--marigold);
}

/* Hero slider */
.mk-slider {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  aspect-ratio: 4/3.1;
}
.mk-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.mk-slide.active {
  opacity: 1;
  z-index: 2;
}
.mk-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mk-slider-arrows button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  z-index: 5;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--indigo-deep);
}
.mk-slider-arrows .prev {
  left: 14px;
}
.mk-slider-arrows .next {
  right: 14px;
}
.mk-slider-dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 5;
}
.mk-slider-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}
.mk-slider-dots button.active {
  background: var(--marigold);
  width: 22px;
  border-radius: 5px;
}

/* ---------- Section shells ---------- */
.section-mk {
  padding: 2.5rem 0 4.5rem;
}
.section-mk.on-sand {
  background: var(--sand);
}
.section-mk.on-indigo {
  background: var(--indigo-deep);
  color: var(--ivory);
}
.section-mk.on-indigo h2,
.section-mk.on-indigo h3 {
  color: #fff;
}
.section-head {
  max-width: 640px;
  margin-bottom: 2.75rem;
}
.section-head p {
  color: var(--muted);
  font-size: 1.02rem;
}
.on-indigo .section-head p {
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- About page ---------- */
.about-page {
  background: linear-gradient(180deg, rgba(245, 247, 251, 0.85) 0%, rgba(255, 255, 255, 1) 28%, rgba(255, 255, 255, 1) 100%);
}
.about-shell {
  max-width: 1100px;
}
.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.7fr);
  gap: 2.25rem;
  align-items: end;
  padding: 1rem 0 2.5rem;
  border-bottom: 1px solid var(--sand-border);
}
.about-intro h1 {
  margin: 0 0 1rem;
}
.about-intro .lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 64ch;
}
.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}
.about-spotlight {
  display: flex;
  min-height: 100%;
}
.about-spotlight-inner {
  width: 100%;
  background: rgba(255, 255, 255, 0.38);
  border-left: 4px solid var(--marigold);
  border-top: 1px solid var(--sand-border);
  border-bottom: 1px solid var(--sand-border);
  padding: 1.5rem 1.5rem 1.25rem;
}
.mini-label {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--marigold-deep);
  font-weight: 800;
}
.about-points {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 0;
}
.about-points li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.3rem;
  border-bottom: 1px solid rgba(28, 43, 70, 0.08);
  color: var(--indigo-deep);
  font-weight: 600;
}
.about-points li:last-child {
  border-bottom: none;
}
.about-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--marigold);
  box-shadow: 0 0 0 4px rgba(230, 160, 40, 0.15);
}
.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(250px, 0.55fr);
  gap: 2rem;
  align-items: start;
  padding-top: 2.5rem;
}
.about-copy p,
.about-detail-copy p {
  color: var(--muted);
  font-size: 1.02rem;
}
.about-aside {
  padding-left: 1.5rem;
  border-left: 1px solid var(--sand-border);
}
.about-mini-heading {
  font-size: 0.77rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--marigold-deep);
}
.about-checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.about-checklist li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(28, 43, 70, 0.08);
  color: var(--indigo-deep);
  font-weight: 600;
}
.about-checklist li:last-child {
  border-bottom: none;
}
.about-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(28, 43, 70, 0.14), rgba(156, 58, 43, 0.3), rgba(28, 43, 70, 0.14));
  margin: 2.5rem 0 2rem;
}
.about-detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}
.about-mission-vision {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.about-value-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 247, 251, 0.85) 100%);
  border: 1px solid var(--sand-border);
  border-radius: 18px;
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow-soft);
}
.accent-panel {
  background: linear-gradient(180deg, rgba(28, 43, 70, 0.96) 0%, rgba(19, 31, 52, 1) 100%);
  border-color: rgba(255, 255, 255, 0.08);
}
.accent-panel .mini-label,
.accent-panel h2,
.accent-panel p {
  color: #ffffff;
}
.accent-panel p {
  color: rgba(255, 255, 255, 0.836) !important;
}
.about-value-icon {
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(230, 160, 40, 0.12);
  border: 1px solid rgba(230, 160, 40, 0.2);
  margin-bottom: 1rem;
  margin-right: 10px;
  color: var(--marigold-deep);
  font-size: 1.4rem;
}
.accent-panel .about-value-icon {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--marigold);
}
.about-value-panel h2 {
  margin: 0.8rem 0 0.8rem;
  font-size: clamp(1.5rem, 2vw, 2rem);
  max-width: 18ch;
}
.about-value-panel p {
  margin: 0;
  color: rgba(28, 43, 70, 0.82);
  line-height: 1.8;
}
@media (max-width: 768px) {
  .about-hero,
  .about-story,
  .about-detail,
  .about-mission-vision {
    grid-template-columns: 1fr;
  }
  .about-aside {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--sand-border);
    padding-top: 1.2rem;
  }
  .about-intro h1 {
    max-width: 100%;
  }
  .about-value-panel {
    padding: 1.5rem 1.2rem;
  }
}

/* ---------- Booking / fare estimator strip ---------- */
.mk-booking {
  background: var(--ivory);
  border: 1px solid var(--sand-border);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 1.15rem 1.35rem;
  margin-top: -3.5rem;
  position: relative;
  z-index: 20;
}
.mk-booking h3 {
  margin: 0 0 0.75rem !important;
  font-size: 1.2rem;
}
.mk-booking-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-areas:
    "name phone from from"
    "to vehicle round submit";
  gap: 0.65rem 0.8rem;
  align-items: end;
}
.mk-booking .mk-field:nth-child(1) {
  grid-area: name;
}
.mk-booking .mk-field:nth-child(2) {
  grid-area: phone;
}
.mk-booking .mk-field:nth-child(3) {
  grid-area: from;
}
.mk-booking .mk-field:nth-child(4) {
  grid-area: to;
}
.mk-booking .mk-field:nth-child(5) {
  grid-area: vehicle;
}
.mk-booking .mk-field:nth-child(6) {
  grid-area: round;
}
.mk-booking .mk-field:nth-child(7) {
  grid-area: submit;
}
.mk-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.22rem;
}
.mk-field select,
.mk-field input {
  width: 100%;
  padding: 0.5rem 0.68rem;
  border-radius: 8px;
  border: 1px solid var(--sand-border);
  font-family: var(--font-body);
  font-size: 0.92rem;
  background: #fff;
}
.mk-booking .mk-field {
  min-width: 0;
}
.mk-booking .mk-fare-submit {
  height: 41px;
  padding-block: 0.48rem;
  padding-inline: 1.3rem;
}
.mk-booking .mk-field:nth-last-child(2) {
  display: flex !important;
  align-items: center !important;
  gap: 0.45rem !important;
  padding-top: 0 !important;
  height: 41px;
  white-space: nowrap;
}
.mk-field input[list] {
  padding-right: 2rem;
}
.mk-fare-result {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: var(--sand);
  border-left: 4px solid var(--marigold);
  border-radius: 8px;
  display: none;
}
.mk-fare-result.show {
  display: block;
}
.mk-fare-result .amount {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--rust-deep);
  font-weight: 700;
}
.mk-fare-disclaimer {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

/* ---------- Trust strip ---------- */
.mk-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  border-top: 1px solid var(--sand-border);
  border-bottom: 1px solid var(--sand-border);
  padding: 2rem 0;
}
.mk-trust-strip div {
  text-align: center;
}
.mk-trust-strip i {
  font-size: 1.6rem;
  color: var(--marigold-deep);
  margin-bottom: 0.5rem;
  display: block;
}
.mk-trust-strip h4 {
  font-size: 0.95rem;
  margin: 0.3rem 0 0.2rem;
}
.mk-trust-strip p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

/* ---------- Services: editorial list, not cards ---------- */
.mk-service-list {
  display: flex;
  flex-direction: column;
}
.mk-service-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--sand-border);
}
.mk-service-row:first-child {
  border-top: 1px solid var(--sand-border);
}
.mk-service-row .num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--sand-border);
}
.mk-service-row h3 {
  margin: 0 0 0.3rem;
  font-size: 1.15rem;
}
.mk-service-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.mk-service-row a.arrow-link {
  font-weight: 700;
  white-space: nowrap;
}

/* ---------- Routes: route-line visual language ---------- */
.mk-route-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}
.mk-route-line .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--marigold);
}
.mk-route-line .dot.end {
  background: var(--rust);
}
.mk-route-line .line {
  flex: 1;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--sand-border) 0 6px,
    transparent 6px 12px
  );
}
.mk-route-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.mk-route-item {
  border: 1px solid var(--sand-border);
  border-radius: 12px;
  padding: 1.25rem 1.4rem;
  background: #fff;
}
.mk-route-item h4 {
  margin: 0.4rem 0 0.5rem;
  font-size: 1.05rem;
}
.mk-route-meta {
  display: flex;
  gap: 1.1rem;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ---------- Fleet ---------- */
.mk-fleet-table {
  width: 100%;
  border-collapse: collapse;
}
.mk-table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.mk-table-scroll .mk-fleet-table {
  min-width: 680px;
}
.mk-fleet-table th,
.mk-fleet-table td {
  text-align: left;
  padding: 0.95rem 1rem;
  border-bottom: 1px solid var(--sand-border);
}
.mk-fleet-table th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.mk-fleet-table td {
  font-size: 0.94rem;
}
.mk-fleet-table img {
  width: 64px;
  height: 44px;
  object-fit: cover;
  border-radius: 6px;
}
.mk-fleet-page-list {
  display: grid;
  gap: 1rem;
}
.mk-fleet-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) minmax(220px, 0.8fr) auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--sand-border);
}
.mk-fleet-row:first-child {
  border-top: 1px solid var(--sand-border);
}
.mk-fleet-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.55);
}
.mk-fleet-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.mk-fleet-row:hover .mk-fleet-media img {
  transform: scale(1.05);
}
.mk-fleet-main h2 {
  margin: 0.25rem 0 0.35rem;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}
.mk-fleet-main p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.mk-fleet-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1rem;
}
.mk-fleet-specs div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink);
  font-size: 0.92rem;
}
.mk-fleet-specs i {
  color: var(--marigold-deep);
}

.mk-content-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.mk-content-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 1rem;
  min-height: 210px;
  padding: 1.55rem;
  border: 1px solid var(--sand-border);
  border-radius: 12px;
  background: #fff;
}
.mk-content-card.featured {
  grid-column: 1 / -1;
  min-height: 0;
  padding: 1.8rem;
}
.mk-content-count {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #0794df;
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  line-height: 1;
}
.mk-content-copy .eyebrow {
  margin-bottom: 0.45rem;
  color: #0b8bd2;
}
.mk-content-copy h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.28;
}
.mk-content-body {
  color: #596273;
  font-size: 0.98rem;
}
.mk-content-body p {
  margin: 0 0 0.85rem;
}
.mk-content-body p:last-child {
  margin-bottom: 0;
}
.mk-content-body ul,
.mk-content-body ol {
  display: grid;
  gap: 0.45rem;
  margin: 0.85rem 0 0;
  padding-left: 1.1rem;
}
.mk-content-body li {
  padding-left: 0.2rem;
}
.mk-content-body h3 {
  margin: 1rem 0 0.35rem;
  color: var(--indigo-deep);
  font-size: 1rem;
}

.mk-vehicle-showcase {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(19, 31, 52, 0.98) 0%, rgba(28, 43, 70, 0.96) 48%, rgba(156, 58, 43, 0.92) 100%);
  color: #fff;
}
.mk-vehicle-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 36px),
    linear-gradient(45deg, rgba(230, 160, 40, 0.12) 0 1px, transparent 1px 42px);
  opacity: 0.45;
  pointer-events: none;
}
.mk-vehicle-showcase::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 62px;
  height: 86px;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(255, 255, 255, 0.32) 8% 13%, transparent 13% 21%, rgba(255, 255, 255, 0.32) 21% 26%, transparent 26% 100%),
    linear-gradient(180deg, rgba(8, 14, 26, 0), rgba(8, 14, 26, 0.42));
  transform: skewY(-2deg);
  pointer-events: none;
}
.mk-vehicle-showcase .container-mk {
  position: relative;
  z-index: 1;
}
.mk-vehicle-showcase .section-head h2,
.mk-vehicle-showcase .section-head p {
  color: #fff;
}
.mk-vehicle-showcase .section-head p {
  color: rgba(255, 255, 255, 0.76);
}
.mk-vehicle-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.mk-vehicle-head .section-head {
  margin: 0;
}
.mk-view-all {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.65rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  line-height: 1;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
}
.mk-view-all:hover {
  background: var(--marigold);
  border-color: var(--marigold);
  color: var(--indigo-deeper);
}
.mk-vehicle-rail {
  position: relative;
  height: 42px;
  margin: 0 0 1rem;
  overflow: hidden;
}
.mk-vehicle-rail::before,
.mk-vehicle-rail::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 999px;
}
.mk-vehicle-rail::before {
  top: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.24);
}
.mk-vehicle-rail::after {
  top: 10px;
  height: 18px;
  background: repeating-linear-gradient(90deg, transparent 0 36px, rgba(230, 160, 40, 0.72) 36px 72px);
  opacity: 0.58;
  animation: mkRoadMove 9s linear infinite;
}
.mk-vehicle-rail span {
  position: absolute;
  top: 0;
  left: 0;
  width: 105px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(230, 160, 40, 0), rgba(230, 160, 40, 0.7), rgba(230, 160, 40, 0));
  filter: blur(2px);
  animation: mkVehicleSweep 5.5s ease-in-out infinite;
}
.mk-vehicle-carousel {
  position: relative;
}
.mk-vehicle-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2.4rem) / 3);
  gap: 1.2rem;
  overflow-x: auto;
  padding: 0.6rem 0 1.35rem;
  scroll-behavior: smooth;
  scroll-padding: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.mk-vehicle-track::-webkit-scrollbar {
  display: none;
}
.mk-vehicle-card {
  position: relative;
  scroll-snap-align: start;
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 14px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 252, 246, 0.98) 100%);
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.24);
  isolation: isolate;
  transform: translateY(8px) scale(0.97);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.mk-vehicle-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 0 34%, rgba(230, 160, 40, 0.18) 34% 50%, transparent 50% 100%);
  transform: translateX(-40%);
  transition: transform 0.65s ease;
}
.mk-vehicle-card::after {
  content: "";
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  top: 278px;
  height: 16px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(28, 43, 70, 0.26), rgba(28, 43, 70, 0) 70%);
  filter: blur(5px);
  opacity: 0.55;
  pointer-events: none;
}
.mk-vehicle-card.is-active,
.mk-vehicle-card:hover {
  transform: translateY(-4px) scale(1);
  border-color: rgba(230, 160, 40, 0.9);
  box-shadow: 0 30px 85px rgba(0, 0, 0, 0.34);
}
.mk-vehicle-card.is-active::before,
.mk-vehicle-card:hover::before {
  transform: translateX(42%);
}
.mk-vehicle-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 0.8rem 1rem 0;
}
.mk-vehicle-card-top span {
  color: rgba(28, 43, 70, 0.18);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.mk-vehicle-card-top strong {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--indigo-deeper);
  color: #fff;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.mk-vehicle-image {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 1.5rem 0.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 250, 241, 0.72));
}
.mk-vehicle-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 22px 18px rgba(28, 43, 70, 0.18));
  transform: translateY(0);
  transition: transform 0.35s ease, filter 0.35s ease;
}
.mk-vehicle-card.is-active .mk-vehicle-image img,
.mk-vehicle-card:hover .mk-vehicle-image img {
  filter: drop-shadow(0 26px 22px rgba(28, 43, 70, 0.26));
  transform: translateY(-8px) scale(1.04);
}
.mk-vehicle-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0.85rem 1.35rem 1.25rem;
  background: rgba(255, 255, 255, 0.7);
}
.mk-vehicle-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}
.mk-vehicle-title-row h3 {
  margin: 0;
  color: #063b91;
  font-size: 1.12rem;
  line-height: 1.28;
}
.mk-vehicle-title-row span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0.28rem 0.58rem;
  border-radius: 7px;
  background: var(--indigo-deeper);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: lowercase;
  box-shadow: 0 8px 18px rgba(19, 31, 52, 0.22);
}
.mk-vehicle-card-body p {
  min-height: 2.85rem;
  margin: 0.35rem 0 0.85rem;
  color: #6b5146;
  font-size: 0.9rem;
  line-height: 1.55;
}
.mk-vehicle-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}
.mk-vehicle-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 32px;
  padding: 0.38rem 0.62rem;
  border: 1px solid rgba(230, 160, 40, 0.28);
  border-radius: 999px;
  background: #fff4df;
  color: var(--indigo-deep);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}
.mk-vehicle-meta i {
  color: var(--marigold-deep);
}
.mk-vehicle-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}
.mk-vehicle-bottom strong {
  color: #0b0f18;
  font-size: 1.45rem;
  line-height: 1;
}
.mk-vehicle-bottom small {
  font-size: 0.82rem;
  font-weight: 800;
  color: #364156;
}
.mk-vehicle-bottom .btn-mk {
  position: relative;
  min-width: 140px;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0f923f, #16b957);
  border-color: #12a64b;
  color: #fff;
  box-shadow: 0 14px 26px rgba(15, 146, 63, 0.24);
}
.mk-vehicle-bottom .btn-mk::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0 32%, rgba(255, 255, 255, 0.38) 45%, transparent 58% 100%);
  transform: translateX(-120%);
}
.mk-vehicle-bottom .btn-mk:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #087331, #109c45);
  border-color: #087331;
  color: #fff;
}
.mk-vehicle-bottom .btn-mk:hover::after {
  animation: mkButtonShine 0.8s ease;
}
.mk-vehicle-nav {
  position: absolute;
  top: 46%;
  z-index: 3;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--indigo-deep);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.2s ease;
}
.mk-vehicle-nav:hover {
  background: var(--marigold);
  color: var(--indigo-deeper);
  transform: translateY(-2px);
}
.mk-vehicle-nav:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}
.mk-vehicle-nav:disabled:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--indigo-deep);
  transform: none;
}
.mk-vehicle-nav.prev {
  left: -25px;
}
.mk-vehicle-nav.next {
  right: -25px;
}
.mk-vehicle-dots {
  display: flex;
  justify-content: center;
  gap: 0.58rem;
  min-height: 14px;
}
.mk-vehicle-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}
.mk-vehicle-dots button.active {
  width: 38px;
  background: var(--marigold);
}

@keyframes mkRoadMove {
  from { background-position: 0 0; }
  to { background-position: 216px 0; }
}
@keyframes mkVehicleSweep {
  0%, 100% { transform: translateX(-120px); opacity: 0; }
  14%, 76% { opacity: 1; }
  88% { transform: translateX(calc(100vw + 120px)); opacity: 0; }
}
@keyframes mkButtonShine {
  from { transform: translateX(-120%); }
  to { transform: translateX(120%); }
}
@media (prefers-reduced-motion: reduce) {
  .mk-vehicle-rail::after,
  .mk-vehicle-rail span,
  .mk-vehicle-bottom .btn-mk:hover::after {
    animation: none;
  }
  .mk-vehicle-card,
  .mk-vehicle-image img,
  .mk-vehicle-card::before {
    transition: none;
  }
}

/* Professional vehicle showroom reset */
.mk-vehicle-showcase {
  overflow: hidden;
  background: transparent;
  color: var(--indigo-deep);
  border-top: 0;
  border-bottom: 0;
}
.mk-vehicle-showcase::before,
.mk-vehicle-showcase::after {
  display: none;
}
.mk-vehicle-showcase .section-head h2 {
  color: var(--indigo-deep);
}
.mk-vehicle-showcase .section-head p {
  max-width: 56ch;
  color: #5f6878;
}
.mk-vehicle-head {
  align-items: center;
  margin-bottom: 2.1rem;
}
.mk-vehicle-rail {
  display: none;
}
.mk-view-all {
  min-height: 44px;
  padding: 0.65rem 1.15rem;
  border: 1px solid #cdd6e4;
  border-radius: 8px;
  background: #fff;
  color: var(--indigo-deep);
  box-shadow: 0 8px 22px rgba(28, 43, 70, 0.06);
}
.mk-view-all:hover {
  background: var(--indigo-deep);
  border-color: var(--indigo-deep);
  color: #fff;
}
.mk-vehicle-track {
  grid-auto-columns: calc((100% - 2rem) / 3);
  gap: 1rem;
  padding: 0.2rem 0 1rem;
}
.mk-vehicle-card {
  min-height: 0;
  overflow: hidden;
  border: 1px solid #d8e0eb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(28, 43, 70, 0.1);
  transform: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.mk-vehicle-card::before,
.mk-vehicle-card::after {
  display: none;
}
.mk-vehicle-card:hover {
  transform: translateY(-6px);
  border-color: #f0a733;
  box-shadow: 0 20px 46px rgba(28, 43, 70, 0.16);
}
.mk-vehicle-card-top {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  min-height: 0;
  padding: 0;
}
.mk-vehicle-card-top span {
  display: none;
}
.mk-vehicle-card-top strong {
  min-height: 30px;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: #14213d;
  color: #fff;
  box-shadow: 0 10px 22px rgba(20, 33, 61, 0.18);
}
.mk-vehicle-image {
  height: 238px;
  margin: 0;
  padding: 1.15rem;
  background: #fff;
  border-bottom: 0;
}
.mk-vehicle-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 14px rgba(28, 43, 70, 0.16));
  transform: none;
}
.mk-vehicle-card:hover .mk-vehicle-image img {
  transform: translateY(-6px) scale(1.04);
  filter: drop-shadow(0 26px 22px rgba(28, 43, 70, 0.24));
}
.mk-vehicle-card-body {
  padding: 1.15rem 1.2rem 1.25rem;
  background: #fff;
}
.mk-vehicle-title-row h3 {
  color: #073b8f;
  font-size: 1.08rem;
}
.mk-vehicle-title-row span {
  min-height: 28px;
  border-radius: 7px;
  background: #14213d;
}
.mk-vehicle-card-body p {
  min-height: 2.7rem;
  color: #606a7a;
}
.mk-vehicle-meta span {
  border-color: #ffe0ad;
  background: #fff8ec;
  color: #17243a;
}
.mk-vehicle-bottom {
  padding-top: 0.15rem;
}
.mk-vehicle-bottom strong {
  color: #101828;
}
.mk-vehicle-bottom .btn-mk {
  border-radius: 8px;
  background: #f28c18;
  border-color: #f28c18;
  box-shadow: 0 12px 24px rgba(242, 140, 24, 0.22);
}
.mk-vehicle-bottom .btn-mk:hover {
  background: #d87509;
  border-color: #d87509;
}
.mk-vehicle-nav {
  top: 43%;
  width: 46px;
  height: 46px;
  border: 1px solid #d7dfeb;
  background: #fff;
  color: var(--indigo-deep);
  box-shadow: 0 14px 32px rgba(28, 43, 70, 0.14);
}
.mk-vehicle-nav:hover {
  background: var(--indigo-deep);
  color: #fff;
  transform: translateY(-2px);
}
.mk-vehicle-nav:disabled:hover {
  background: #fff;
  color: var(--indigo-deep);
}
.mk-vehicle-dots {
  flex-wrap: wrap;
  margin-top: 0.4rem;
}
.mk-vehicle-dots button {
  width: 8px;
  height: 8px;
  background: #cfd7e3;
}
.mk-vehicle-dots button.active {
  width: 28px;
  background: #f28c18;
}

/* ---------- Why choose / split section ---------- */
.mk-split img {
  box-shadow: 0 18px 40px rgba(28, 43, 70, 0.5);
}
.mk-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.mk-reason {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.mk-reason i {
  font-size: 1.3rem;
  color: var(--marigold-deep);
}
.mk-reason h4 {
  margin: 0 0 0.2rem;
  font-size: 1rem;
}
.mk-reason p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

/* ---------- Destinations grid ---------- */
.mk-destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.mk-destination-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 247, 251, 0.82) 100%);
  border: 1px solid var(--sand-border);
  border-radius: 12px;
  padding: 1.2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
}
.mk-destination-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(28, 43, 70, 0.12);
  border-color: rgba(230, 160, 40, 0.3);
}
.mk-destination-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(230, 160, 40, 0.12);
  border-radius: 8px;
  color: var(--marigold-deep);
  font-size: 1rem;
}
.mk-destination-card h4 {
  margin: 0;
  font-size: 1rem;
  color: var(--indigo-deep);
  line-height: 1.4;
}
.mk-destination-arrow {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--rust);
  margin-top: 0.2rem;
}
.mk-destination-card:hover .mk-destination-arrow {
  gap: 0.8rem;
}
.mk-destination-card:hover .mk-destination-arrow i {
  animation: slideRight 0.3s ease;
}
@keyframes slideRight {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(4px);
  }
}

/* ---------- Cities panels ---------- */
.mk-city-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--sand-border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.mk-city-panel img {
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}
.mk-city-panel .content {
  padding: 2rem;
  background: #fff;
}

/* ---------- FAQ accordion ---------- */
.mk-faq-item {
  border-bottom: 1px solid var(--sand-border);
}
.mk-faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.1rem 0;
  font-weight: 600;
  font-size: 0.98rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--indigo-deep);
}
.mk-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.mk-faq-a p {
  padding-bottom: 1.1rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.mk-faq-item.open .mk-faq-a {
  max-height: 500px;
}
.mk-faq-item.open .mk-faq-q i {
  transform: rotate(45deg);
}
.mk-faq-q i {
  transition: transform 0.2s ease;
}
.mk-faq-wrap {
  max-width: 760px;
  margin: 0 auto;
}

/* ---------- CTA band ---------- */
.mk-cta-band {
  background: var(--rust);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
  border-radius: 18px;
}
.mk-cta-band h2 {
  color: #fff;
  margin-bottom: 0.6rem;
}
.mk-cta-band p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

/* ---------- Blog ---------- */
.mk-blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.mk-blog-item img {
  border-radius: 10px;
  margin-bottom: 1rem;
  aspect-ratio: 16/11;
}
.mk-blog-item .meta {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
.mk-blog-item h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}
.mk-blog-item p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---------- Content Body Styling - Full Width with Section Separation ---------- */

/* Main content container - centered with better styling */
.mk-blog-body {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  font-size: 1.05rem;
  line-height: 1.72;
  color: var(--indigo-deep);
}

/* Section-level container styling */
.section-mk .container-mk .mk-blog-body {
  width: 100%;
  max-width: 100%;
}

/* Base paragraph styling with centered text */
.mk-blog-body p {
  margin: 0 0 2rem;
  color: #444;
  line-height: 2;
  font-size: 1.1rem;
  text-align: left;
  max-width: none;
  letter-spacing: 0.2px;
}

.mk-blog-body p:last-child {
  margin-bottom: 0;
}

/* Main heading (h1) */
.mk-blog-body h1 {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--indigo-deep);
  margin: 0 0 2rem;
  line-height: 1.2;
  padding-bottom: 1.5rem;
  border-bottom: 4px solid var(--marigold);
  letter-spacing: 0.5px;
}

/* Section blocks (h2 + content) styling with professional backgrounds */
.mk-blog-body h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin: 4.5rem 0 0;
  padding: 2.2rem 2.5rem;
  line-height: 1.3;
  position: relative;
  display: block;
  width: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), inset 0 4px 12px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.3px;
}

/* Alternating section backgrounds for h2 */
.mk-blog-body h2:nth-of-type(1) {
  background: linear-gradient(135deg, #1c2b46 0%, #0f1f35 100%);
  border-radius: 14px 14px 0 0;
  margin-top: 4.5rem;
  padding: 2.2rem 2.5rem;
}

.mk-blog-body h2:nth-of-type(2) {
  background: linear-gradient(135deg, #9c3a2b 0%, #8b2d21 100%);
  border-radius: 14px 14px 0 0;
  margin-top: 4.5rem;
  padding: 2.2rem 2.5rem;
}

.mk-blog-body h2:nth-of-type(3) {
  background: linear-gradient(135deg, #c9841a 0%, #b8720d 100%);
  border-radius: 14px 14px 0 0;
  margin-top: 4.5rem;
  padding: 2.2rem 2.5rem;
}

.mk-blog-body h2:nth-of-type(4) {
  background: linear-gradient(135deg, #2c4a6f 0%, #1c2b46 100%);
  border-radius: 14px 14px 0 0;
  margin-top: 4.5rem;
  padding: 2.2rem 2.5rem;
}

.mk-blog-body h2:nth-of-type(5) {
  background: linear-gradient(135deg, #9c3a2b 0%, #6b1f18 100%);
  border-radius: 14px 14px 0 0;
  margin-top: 4.5rem;
  padding: 2.2rem 2.5rem;
}

.mk-blog-body h2:nth-of-type(n+6) {
  background: linear-gradient(135deg, #1c2b46 0%, #0a1220 100%);
  border-radius: 14px 14px 0 0;
  margin-top: 4.5rem;
  padding: 2.2rem 2.5rem;
}

/* Improved section container styling */
.section-mk .container-mk {
  position: relative;
}

.section-mk .container-mk .mk-blog-body {
  position: relative;
  z-index: 1;
}

/* Better paragraph centering in content sections */
.mk-blog-body h2 + p {
  display: block;
  width: 100%;
}

/* Ensure content doesn't shift left */
.section-mk.on-sand .mk-blog-body,
.section-mk .mk-blog-body {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* List styling */
.mk-blog-body ul,
.mk-blog-body ol {
  margin: 2.5rem 0;
  padding-left: 2.8rem;
  color: #3a3a3a;
}

.mk-blog-body ul li,
.mk-blog-body ol li {
  margin-bottom: 1.4rem;
  line-height: 2;
  font-size: 1.1rem;
  color: #444;
}

.mk-blog-body ul li::marker {
  color: var(--marigold);
  font-weight: 700;
  font-size: 1.3rem;
}

.mk-blog-body ol li::marker {
  color: var(--rust);
  font-weight: 700;
  font-size: 1.1rem;
}

/* h3 styling (sub-sections) */
.mk-blog-body h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 750;
  color: var(--indigo-deep);
  margin: 3rem 0 1.2rem;
  padding-left: 1rem;
  border-left: 5px solid var(--marigold);
  letter-spacing: 0.2px;
}

.mk-blog-body h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--indigo-deep);
  margin: 2rem 0 0.8rem;
  padding-left: 0.8rem;
  border-left: 4px solid var(--marigold);
}

/* Text formatting */
.mk-blog-body strong,
.mk-blog-body b {
  font-weight: 800;
  color: var(--indigo-deep);
}

.mk-blog-body em,
.mk-blog-body i {
  font-style: italic;
  color: var(--rust);
  font-weight: 600;
}

/* Images */
.mk-blog-body img {
  border-radius: 18px;
  margin: 3.5rem 0;
  max-width: 100%;
  height: auto;
  box-shadow: 0 20px 60px rgba(28, 43, 70, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}

.mk-blog-body img:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(28, 43, 70, 0.2);
}

/* Links */
.mk-blog-body a {
  color: var(--rust);
  text-decoration: underline;
  font-weight: 700;
  transition: all 0.25s ease;
  position: relative;
}

.mk-blog-body a:hover {
  color: var(--rust-deep);
  text-decoration: none;
  background: rgba(230, 160, 40, 0.12);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
}

/* Blockquotes */
.mk-blog-body blockquote {
  margin: 3rem 0;
  padding: 2.5rem;
  border-left: 7px solid var(--marigold);
  background: linear-gradient(90deg, rgba(230, 160, 40, 0.18) 0%, transparent 100%);
  border-radius: 10px;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--indigo-deep);
  line-height: 2;
  box-shadow: 0 6px 20px rgba(230, 160, 40, 0.12);
}

.mk-blog-body blockquote p {
  margin: 0;
  text-align: left;
}

/* Code styling */
.mk-blog-body code {
  background: rgba(28, 43, 70, 0.08);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-family: 'Courier New', monospace;
  color: var(--rust);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(28, 43, 70, 0.12);
}

.mk-blog-body pre {
  background: var(--indigo-deep);
  color: #fff;
  padding: 2rem;
  border-radius: 12px;
  overflow-x: auto;
  margin: 2.5rem 0;
  font-size: 0.9rem;
  line-height: 1.7;
  box-shadow: 0 12px 40px rgba(28, 43, 70, 0.2);
}

.mk-blog-body pre code {
  background: none;
  color: #fff;
  padding: 0;
  font-size: 0.9rem;
  border: none;
}

/* HR/Divider */
.mk-blog-body hr {
  border: none;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--marigold) 50%, transparent 100%);
  margin: 3.5rem 0;
}

/* Table styling */
.mk-blog-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 2.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(28, 43, 70, 0.12);
  background: #fff;
}

.mk-blog-body table thead {
  background: linear-gradient(135deg, var(--indigo-deep) 0%, #0f1f35 100%);
  color: #fff;
}

.mk-blog-body table th {
  padding: 1.2rem;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.mk-blog-body table td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--sand-border);
  color: #2c2c2c;
}

.mk-blog-body table tbody tr:hover {
  background: rgba(230, 160, 40, 0.08);
  transition: background 0.2s ease;
}

.mk-blog-body table tbody tr:last-child td {
  border-bottom: none;
}

/* Responsive Design */
@media (max-width: 991px) {
  .mk-blog-body {
    font-size: 1rem;
  }
  
  .mk-blog-body h1 {
    font-size: 2.4rem;
    margin-bottom: 1.8rem;
    padding-bottom: 1.2rem;
  }
  
  .mk-blog-body h2 {
    font-size: 1.8rem;
    padding: 1.8rem 1.8rem;
    margin-top: 4rem;
  }
  
  .mk-blog-body h2 + p,
  .mk-blog-body h2 + ul,
  .mk-blog-body h2 + ol {
    padding: 2.5rem 2rem;
    margin-bottom: 3rem;
    font-size: 1.08rem;
  }
  
  .mk-blog-body h3 {
    font-size: 1.3rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .mk-blog-body p {
    margin: 0 0 1.8rem;
    line-height: 1.95;
    font-size: 1.06rem;
  }
  
  .mk-blog-body ul li,
  .mk-blog-body ol li {
    margin-bottom: 1.2rem;
    line-height: 1.95;
    font-size: 1.06rem;
  }
  
  .mk-blog-body img {
    margin: 3rem 0;
    border-radius: 16px;
  }
  
  .mk-blog-body blockquote {
    margin: 2.5rem 0;
    padding: 2rem;
    font-size: 1.12rem;
  }
}

@media (max-width: 600px) {
  .mk-blog-body {
    font-size: 0.95rem;
  }
  
  .mk-blog-body h1 {
    font-size: 1.9rem;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid var(--marigold);
  }
  
  .mk-blog-body h2 {
    font-size: 1.5rem;
    padding: 1.6rem 1.4rem;
    margin-top: 3.5rem;
  }
  
  .mk-blog-body h2 + p,
  .mk-blog-body h2 + ul,
  .mk-blog-body h2 + ol {
    padding: 2rem 1.6rem;
    margin-bottom: 2.5rem;
    font-size: 1.04rem;
    line-height: 1.95;
  }
  
  .mk-blog-body h3 {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
  }
  
  .mk-blog-body p {
    margin: 0 0 1.6rem;
    line-height: 1.95;
    font-size: 1.04rem;
  }
  
  .mk-blog-body ul,
  .mk-blog-body ol {
    padding-left: 2rem;
    margin: 2rem 0;
  }
  
  .mk-blog-body ul li,
  .mk-blog-body ol li {
    margin-bottom: 1.2rem;
    line-height: 1.95;
    font-size: 1.04rem;
  }
  
  .mk-blog-body img {
    margin: 2.5rem 0;
    border-radius: 14px;
  }
  
  .mk-blog-body blockquote {
    padding: 1.8rem 1.2rem;
    font-size: 1.08rem;
    margin: 2.5rem 0;
    border-left: 6px solid var(--marigold);
  }
}

/* ---------- Home page refresh ---------- */
@media (prefers-reduced-motion: no-preference) {
  .mk-hero,
  .mk-booking,
  .mk-service-row,
  .mk-route-item,
  .mk-blog-item,
  .mk-city-panel,
  .mk-airport-route,
  .btn-mk,
  .mk-call-btn {
    transition:
      transform 0.24s ease,
      box-shadow 0.24s ease,
      border-color 0.24s ease,
      background 0.24s ease,
      color 0.24s ease;
  }
}
.mk-hero {
  background:
    radial-gradient(circle at 78% 16%, rgba(230, 160, 40, 0.2), transparent 34%),
    linear-gradient(135deg, var(--indigo-deep), var(--indigo-deeper));
  padding: 5.25rem 0 5.75rem;
  overflow: hidden;
}
.mk-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.25rem);
}
.mk-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 560px;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.mk-hero-stats div {
  padding: 1rem 0;
}
.mk-hero-stats strong {
  display: block;
  color: var(--marigold);
  font-size: 1.5rem;
  line-height: 1;
}
.mk-hero-stats span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
}
.mk-slider {
  transform: rotate(1deg);
}
.mk-slider:hover {
  transform: rotate(0deg) translateY(-4px);
}
.mk-booking:hover {
  box-shadow: 0 18px 45px rgba(28, 43, 70, 0.14);
  transform: translateY(-2px);
}
.mk-service-row:hover {
  padding-left: 0.8rem;
  border-color: rgba(156, 58, 43, 0.38);
}
.mk-route-item:hover,
.mk-blog-item:hover,
.mk-city-panel:hover {
  transform: translateY(-4px);
}
.mk-city-panel:hover {
  box-shadow: 0 18px 38px rgba(28, 43, 70, 0.12);
}
.mk-airport-section {
  background: var(--indigo-deep);
  color: #fff;
}
.mk-airport-section h2 {
  color: #fff;
}
.mk-airport-section .section-head p {
  color: rgba(255, 255, 255, 0.72);
}
.mk-airport-routes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.mk-airport-route {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1.15fr);
  align-items: center;
  gap: 0.75rem;
  padding: 1.15rem 1rem;
  color: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mk-airport-route:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.mk-airport-route:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.mk-airport-route i,
.mk-airport-route strong {
  color: var(--marigold);
}

@media (max-width: 991px) {
  
  .mk-airport-routes {
    grid-template-columns: 1fr;
  }
  .mk-airport-route:nth-child(odd) {
    border-right: 0;
  }
}

@media (max-width: 600px) {
  .mk-hero {
    padding: 3.5rem 0 5rem;
  }
  .mk-hero-stats {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .mk-slider {
    transform: none;
  }
  .mk-airport-route {
    grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr);
    padding: 1rem 0;
  }
}

/* ---------- Breadcrumbs ---------- */
.mk-breadcrumb-container {
  background: linear-gradient(90deg, rgba(245, 247, 251, 0.85) 0%, rgba(255, 255, 255, 0.35) 100%);
  border-bottom: 1px solid var(--sand-border);
  padding: 0.9rem 0;
  margin-bottom: 1.8rem;
}
.mk-breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.mk-breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  align-items: center;
}
.mk-breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mk-breadcrumb li:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--sand-border);
  border-radius: 50%;
  margin-left: 0.65rem;
}
.mk-breadcrumb i {
  color: var(--marigold);
  font-size: 0.95rem;
}
.mk-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 0.35rem 0.55rem;
  border-radius: 6px;
  font-weight: 500;
}
.mk-breadcrumb a:hover {
  color: var(--marigold-deep);
  background: rgba(230, 160, 40, 0.08);
}
.mk-breadcrumb span {
  color: var(--indigo-deep);
  font-weight: 600;
  padding: 0.35rem 0.55rem;
}

@media (max-width: 600px) {
  .mk-breadcrumb-container {
    padding: 0.7rem 0;
    margin-bottom: 1.2rem;
  }
  .mk-breadcrumb-inner {
    padding: 0 1rem;
  }
  .mk-breadcrumb {
    font-size: 0.85rem;
  }
  .mk-breadcrumb li:not(:last-child)::after {
    margin-left: 0.5rem;
  }
}

/* ---------- Footer ---------- */
.mk-footer {
  background: linear-gradient(180deg, #17273f 0%, #101d30 100%);
  color: rgba(255, 255, 255, 0.76);
  padding: 4rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.mk-footer h5 {
  color: #fff;
  font-size: 0.96rem;
  margin: 0 0 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.mk-footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.9fr 1fr 1fr 1.2fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.mk-footer-col {
  min-width: 0;
}
.mk-footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.mk-footer-brand img {
  width: auto;
  height: 52px;
  max-width: 220px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.12));
  background: white;
}
.mk-footer-brand h5 {
  margin: 0;
}
.mk-footer-copy {
  margin: 0;
  max-width: 32ch;
  font-size: 0.86rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}
.mk-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.mk-footer a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  display: block;
  transition: color 0.2s ease, transform 0.2s ease;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.mk-footer a:hover {
  color: var(--marigold);
  transform: translateX(2px);
}
.contact-links a {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  max-width: 100%;
}
.contact-links .bi {
  flex-shrink: 0;
}
.contact-links i {
  color: var(--marigold);
  margin-top: 0.14rem;
}
.contact-links a,
.contact-links a span,
.contact-links a strong,
.contact-links a em {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.mk-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
}
.mk-footer-policy-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.mk-footer-policy-links a {
  display: inline-block;
}
.mk-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
}
.mk-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.mk-social a:hover {
  background: rgba(230, 160, 40, 0.12);
  border-color: rgba(230, 160, 40, 0.4);
  transform: translateY(-2px);
}

/* ---------- Floating call/whatsapp ---------- */
.mk-floating {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  z-index: 900;
}
.mk-floating a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: var(--shadow-strong);
}
.mk-floating .whatsapp {
  background: #25d366;
}
.mk-floating .call {
  background: var(--rust);
}

/* ---------- Contact page layout ---------- */
.mk-contact-page .mk-contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.75rem;
  align-items: start;
  margin-top: 2rem;
}
.mk-contact-page .mk-contact-form-panel {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--sand-border);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}
.mk-contact-page .mk-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}
.mk-contact-page .mk-form-group.full {
  grid-column: 1 / -1;
}
.mk-contact-page .mk-form-group {
  margin-bottom: 0.25rem;
}
.mk-contact-page .mk-form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  color: var(--indigo-deep);
}
.mk-contact-page .mk-form-group input,
.mk-contact-page .mk-form-group select,
.mk-contact-page .mk-form-group textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border-radius: 10px;
  border: 1px solid var(--sand-border);
  background: rgba(255, 255, 255, 0.9);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--indigo-deep);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.mk-contact-page .mk-form-group input:focus,
.mk-contact-page .mk-form-group select:focus,
.mk-contact-page .mk-form-group textarea:focus {
  outline: none;
  border-color: rgba(156, 58, 43, 0.7);
  box-shadow: 0 0 0 4px rgba(156, 58, 43, 0.08);
}
.mk-contact-page .mk-contact-submit {
  width: 100%;
  justify-content: center;
  margin-top: 1.2rem;
}
.mk-contact-page .mk-contact-details {
  padding-top: 0.5rem;
}
.mk-contact-page .mk-contact-details h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}
.mk-contact-page .mk-contact-intro {
  margin-bottom: 1.5rem;
  color: var(--muted);
  line-height: 1.7;
}
.mk-contact-page .mk-contact-map {
  margin-top: 1.6rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--sand-border);
  background: #fff;
}

/* ---------- Forms (booking / contact) ---------- */
.mk-form-panel {
  background: #fff;
  border: 1px solid var(--sand-border);
  border-radius: 14px;
  padding: 2rem;
}
.mk-form-group {
  margin-bottom: 1.1rem;
}
.mk-form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.mk-form-group input,
.mk-form-group select,
.mk-form-group textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  border: 1px solid var(--sand-border);
  font-family: var(--font-body);
  font-size: 0.94rem;
}
.mk-form-msg {
  padding: 0.9rem 1.1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}
.mk-form-msg.success {
  background: #e6f4ea;
  color: #1e6b34;
  border: 1px solid #b7e0c3;
}
.mk-form-msg.error {
  background: #fbe9e7;
  color: var(--rust-deep);
  border: 1px solid #f2c4bc;
}
.mk-form-msg {
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}
.message-hiding {
  opacity: 0;
  transform: translateY(-6px);
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .mk-header-inner {
    padding: 0.85rem 1.5rem;
  }
  .mk-nav {
    display: none;
  }
  .mk-mobile-toggle {
    display: block;
  }
  .mk-hero-grid {
    grid-template-columns: 1fr;
  }
  .mk-booking-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .mk-split {
    grid-template-columns: 1fr;
  }
  .mk-contact-page .mk-contact-layout {
    grid-template-columns: 1fr;
  }
  .mk-city-panel {
    grid-template-columns: 1fr;
  }
  .mk-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mk-blog-list {
    grid-template-columns: 1fr 1fr;
  }
  .mk-trust-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .mk-booking-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .mk-contact-page .mk-form-grid {
    grid-template-columns: 1fr;
  }
  .mk-header-inner {
    padding: 0.8rem 1.1rem;
    gap: 0.9rem;
  }
  .mk-logo {
    font-size: 1.15rem;
    min-width: 0;
  }
  .mk-logo img {
    height: 44px;
    max-width: 170px;
  }
  .mk-logo-text {
    display: none;
  }
  .mk-header-cta {
    gap: 0.55rem;
  }
  .mk-call-btn {
    padding: 0.55rem 0.85rem;
    font-size: 0.82rem;
  }
  .mk-booking-grid {
    grid-template-columns: 1fr;
  }
  .mk-route-grid {
    grid-template-columns: 1fr;
  }
  .mk-blog-list {
    grid-template-columns: 1fr;
  }
  .mk-footer-grid {
    grid-template-columns: 1fr;
  }
  .mk-trust-strip {
    grid-template-columns: 1fr;
  }
  .section-mk {
    padding: 1.5rem 0 3rem;
  }
}

@media (max-width: 480px){
  .mk-call-btn{
    display: none;
  }
}

/* Mobile nav drawer */
.mk-mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--indigo-deeper);
  color: #fff;
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 2rem 1.5rem;
  overflow-y: auto;
}
.mk-mobile-nav.open {
  transform: translateX(0);
}
.mk-mobile-nav a {
  display: block;
  padding: 0.85rem 0;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
}
.mk-mobile-nav .close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  float: right;
}

/* ---------- Refined inner pages: services, routes, destinations, blog ---------- */
.mk-page-hero {
  background:
    linear-gradient(90deg, rgba(255, 252, 246, 0.98), rgba(255, 252, 246, 0.82)),
    linear-gradient(135deg, rgba(230, 160, 40, 0.16), rgba(156, 58, 43, 0.08));
  border-bottom: 1px solid var(--sand-border);
}
.mk-page-hero h1 {
  max-width: 900px;
  margin-bottom: 1rem;
}
.mk-service-row {
  grid-template-columns: 52px minmax(0, 1fr) auto;
  padding: 1.35rem 0;
  border-color: rgba(228, 233, 241, 0.95);
}
.mk-service-row:hover h3,
.mk-route-item:hover h4,
.mk-blog-item:hover h3 {
  color: var(--rust);
}
.mk-route-item {
  border: 0;
  border-radius: 0;
  padding: 1.2rem 0;
  background: transparent;
  border-top: 1px solid var(--sand-border);
}
.mk-route-item:nth-last-child(-n + 2) {
  border-bottom: 1px solid var(--sand-border);
}
.mk-route-meta {
  flex-wrap: wrap;
}
.mk-route-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 1rem;
  max-width: 860px;
  margin: 0 0 1.5rem;
  border-top: 1px solid var(--sand-border);
  border-bottom: 1px solid var(--sand-border);
}
.mk-route-facts div {
  padding: 1rem 0;
}
.mk-route-facts span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}
.mk-route-facts strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
}
.mk-link-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
}
.mk-link-columns h3 {
  margin-top: 0;
}
.mk-link-columns p {
  margin: 0;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--sand-border);
}
.mk-destination-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  border-top: 1px solid var(--sand-border);
  padding: 1rem 0;
}
.mk-destination-card:hover {
  transform: none;
  box-shadow: none;
}
.mk-destinations-list {
  gap: 0 2rem;
}
.mk-blog-list {
  gap: 2.25rem 2rem;
}
.mk-blog-item {
  display: block;
  border-top: 1px solid var(--sand-border);
}
.mk-blog-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  background: var(--sand);
}
.mk-blog-body {
  max-width: 920px;
}
.mk-blog-body h1,
.mk-blog-body h2,
.mk-blog-body h2:nth-of-type(1),
.mk-blog-body h2:nth-of-type(2),
.mk-blog-body h2:nth-of-type(3),
.mk-blog-body h2:nth-of-type(4),
.mk-blog-body h2:nth-of-type(5),
.mk-blog-body h2:nth-of-type(n+6) {
  color: var(--indigo-deep);
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0 0 0.7rem;
  margin: 2.75rem 0 1rem;
  border-bottom: 2px solid var(--sand-border);
  letter-spacing: 0;
}
.mk-blog-body h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}
.mk-blog-body h2 {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}
.mk-blog-body h2 + p,
.mk-blog-body h2 + ul,
.mk-blog-body h2 + ol,
.mk-blog-body h2 + div {
  background: transparent;
  border-left: 0;
  box-shadow: none;
  padding: 0;
  margin-top: 0;
  margin-bottom: 1.35rem;
}
.mk-blog-body h2:nth-of-type(1) + p,
.mk-blog-body h2:nth-of-type(1) + ul,
.mk-blog-body h2:nth-of-type(1) + ol,
.mk-blog-body h2:nth-of-type(1) + div,
.mk-blog-body h2:nth-of-type(2) + p,
.mk-blog-body h2:nth-of-type(2) + ul,
.mk-blog-body h2:nth-of-type(2) + ol,
.mk-blog-body h2:nth-of-type(2) + div,
.mk-blog-body h2:nth-of-type(3) + p,
.mk-blog-body h2:nth-of-type(3) + ul,
.mk-blog-body h2:nth-of-type(3) + ol,
.mk-blog-body h2:nth-of-type(3) + div,
.mk-blog-body h2:nth-of-type(4) + p,
.mk-blog-body h2:nth-of-type(4) + ul,
.mk-blog-body h2:nth-of-type(4) + ol,
.mk-blog-body h2:nth-of-type(4) + div,
.mk-blog-body h2:nth-of-type(5) + p,
.mk-blog-body h2:nth-of-type(5) + ul,
.mk-blog-body h2:nth-of-type(5) + ol,
.mk-blog-body h2:nth-of-type(5) + div,
.mk-blog-body h2:nth-of-type(n+6) + p,
.mk-blog-body h2:nth-of-type(n+6) + ul,
.mk-blog-body h2:nth-of-type(n+6) + ol,
.mk-blog-body h2:nth-of-type(n+6) + div {
  background: transparent;
  border-left: 0;
  box-shadow: none;
  padding: 0;
  margin-top: 0;
  margin-bottom: 1.35rem;
}
.mk-blog-body p,
.mk-blog-body ul li,
.mk-blog-body ol li {
  color: #473f34;
  font-size: 1rem;
  line-height: 1.82;
}
.mk-blog-body p {
  margin-bottom: 1.2rem;
}
.mk-blog-body ul,
.mk-blog-body ol {
  margin: 1rem 0 1.5rem;
  padding-left: 1.45rem;
}
.mk-blog-body h3,
.mk-blog-body h4 {
  border-left: 0;
  padding-left: 0;
}
.mk-blog-body img,
.mk-article-cover {
  border-radius: 8px;
  box-shadow: none;
}
.mk-blog-body img:hover {
  transform: none;
  box-shadow: none;
}
.mk-blog-body .mk-faq-item,
.mk-blog-body .mk-faq-q,
.mk-blog-body .mk-faq-a,
.mk-blog-body .faq-section,
.mk-blog-body [class*="faq"],
.mk-blog-body button[class*="faq"] {
  display: block !important;
  visibility: visible !important;
  height: auto !important;
}
.mk-blog-body .mk-faq-a {
  max-height: 0;
}
.mk-blog-body .mk-faq-item.open .mk-faq-a {
  max-height: 500px;
}
.mk-article {
  max-width: 900px;
  margin: 0 auto;
}
.mk-article h1 {
  margin: 0 0 0.8rem;
}
.mk-article-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.mk-article-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin: 0 0 2rem;
}

@media (max-width: 991px) {
  .mk-route-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mk-link-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .mk-fleet-row {
    grid-template-columns: 130px minmax(0, 1fr);
  }
  .mk-fleet-specs,
  .mk-fleet-row .btn-mk {
    grid-column: 2;
  }
  .mk-fleet-row .btn-mk {
    justify-self: start;
  }
  .mk-vehicle-track {
    grid-auto-columns: calc((100% - 1rem) / 2);
  }
  .mk-vehicle-card {
    min-height: 0;
  }
  .mk-vehicle-image {
    height: 220px;
  }
  .mk-vehicle-nav.prev {
    left: 8px;
  }
  .mk-vehicle-nav.next {
    right: 8px;
  }
  .mk-content-sections {
    grid-template-columns: 1fr;
  }
  .mk-content-card,
  .mk-content-card.featured {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  .mk-service-row {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 0.9rem;
  }
  .mk-service-row a.arrow-link {
    grid-column: 2;
    white-space: normal;
  }
  .mk-route-facts {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .mk-fleet-table {
    width: 100%;
    white-space: nowrap;
  }
  .mk-fleet-row {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }
  .mk-fleet-media,
  .mk-fleet-specs,
  .mk-fleet-row .btn-mk {
    grid-column: 1;
  }
  .mk-fleet-media {
    max-width: 260px;
  }
  .mk-fleet-specs {
    grid-template-columns: 1fr;
  }
  .mk-vehicle-head {
    align-items: stretch;
    flex-direction: column;
    gap: 1rem;
  }
  .mk-view-all {
    align-self: flex-start;
  }
  .mk-vehicle-track {
    grid-auto-columns: 100%;
    padding-top: 0.35rem;
  }
  .mk-vehicle-rail {
    height: 30px;
    margin-bottom: 0.55rem;
  }
  .mk-vehicle-rail::before {
    top: 14px;
  }
  .mk-vehicle-rail::after {
    top: 8px;
    height: 14px;
  }
  .mk-vehicle-card {
    min-height: 0;
    transform: none;
  }
  .mk-vehicle-card.is-active,
  .mk-vehicle-card:hover {
    transform: none;
  }
  .mk-vehicle-card::after {
    top: 222px;
  }
  .mk-vehicle-card-top {
    min-height: 38px;
    padding: 0.65rem 0.85rem 0;
  }
  .mk-vehicle-card-top span {
    font-size: 1.45rem;
  }
  .mk-vehicle-image {
    height: 205px;
    padding: 0.25rem 1rem 0;
  }
  .mk-vehicle-card-body {
    padding: 0.7rem 1rem 1rem;
  }
  .mk-vehicle-title-row {
    align-items: flex-start;
  }
  .mk-vehicle-bottom {
    align-items: stretch;
    flex-direction: column;
    gap: 0.8rem;
  }
  .mk-vehicle-bottom .btn-mk {
    width: 100%;
  }
  .mk-vehicle-nav {
    width: 38px;
    height: 38px;
    top: 38%;
  }
  .mk-vehicle-nav.prev {
    left: 6px;
  }
  .mk-vehicle-nav.next {
    right: 6px;
  }
  .mk-content-card,
  .mk-content-card.featured {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding: 1.2rem;
  }
  .mk-content-count {
    width: 48px;
    height: 48px;
    border-radius: 10px;
  }
  .mk-blog-body h1,
  .mk-blog-body h2,
  .mk-blog-body h2:nth-of-type(1),
  .mk-blog-body h2:nth-of-type(2),
  .mk-blog-body h2:nth-of-type(3),
  .mk-blog-body h2:nth-of-type(4),
  .mk-blog-body h2:nth-of-type(5),
  .mk-blog-body h2:nth-of-type(n+6) {
    padding: 0 0 0.65rem;
    margin-top: 2rem;
  }
  .mk-blog-body p,
  .mk-blog-body ul li,
  .mk-blog-body ol li {
    font-size: 0.98rem;
    line-height: 1.75;
  }
}

/* ---------- Button contrast safety ---------- */
a.btn-mk,
button.btn-mk,
.btn-mk {
  text-decoration: none;
}
a.btn-mk-rust,
button.btn-mk-rust,
.btn-mk-rust,
a.btn-mk-rust:visited,
a.btn-mk-rust:hover,
a.btn-mk-rust:focus,
button.btn-mk-rust:hover,
button.btn-mk-rust:focus,
.btn-mk-rust:hover,
.btn-mk-rust:focus {
  color: #fff !important;
}
a.btn-mk-primary,
button.btn-mk-primary,
.btn-mk-primary,
a.btn-mk-primary:visited {
  color: var(--indigo-deeper);
}
a.btn-mk-primary:hover,
a.btn-mk-primary:focus,
button.btn-mk-primary:hover,
button.btn-mk-primary:focus,
.btn-mk-primary:hover,
.btn-mk-primary:focus {
  color: #fff !important;
}
a.btn-mk-outline,
button.btn-mk-outline,
.btn-mk-outline,
a.btn-mk-outline:visited {
  color: var(--indigo-deep) !important;
}
a.btn-mk-outline:hover,
a.btn-mk-outline:focus,
button.btn-mk-outline:hover,
button.btn-mk-outline:focus,
.btn-mk-outline:hover,
.btn-mk-outline:focus {
  background: var(--indigo-deep);
  border-color: var(--indigo-deep);
  color: #fff !important;
}
.mk-hero a.btn-mk-outline,
.mk-hero button.btn-mk-outline,
.mk-hero .btn-mk-outline,
.mk-hero a.btn-mk-outline:visited,
.mk-airport-section a.btn-mk-outline,
.mk-airport-section button.btn-mk-outline,
.mk-airport-section .btn-mk-outline,
.mk-airport-section a.btn-mk-outline:visited {
  color: #fff !important;
}
.btn-mk i {
  color: currentColor;
}
.mk-blog-body a.btn-mk-rust:hover,
.mk-blog-body a.btn-mk-rust:focus {
  background: var(--rust-deep);
  border-color: var(--rust-deep);
  color: #fff !important;
}
.mk-blog-body a.btn-mk-primary:hover,
.mk-blog-body a.btn-mk-primary:focus {
  background: var(--marigold-deep);
  border-color: var(--marigold-deep);
  color: #fff !important;
}
.mk-blog-body a.btn-mk-outline:hover,
.mk-blog-body a.btn-mk-outline:focus {
  background: var(--indigo-deep);
  border-color: var(--indigo-deep);
  color: #fff !important;
}

/* ---------- Final UI polish ---------- */
.mk-hero {
  padding: 4.2rem 0 4.8rem;
}
.mk-hero h1 {
  font-size: clamp(2.45rem, 4.2vw, 3.7rem);
  line-height: 1.05;
}
.mk-hero p.lead {
  max-width: 40rem;
}
.mk-city-panel {
  position: relative;
  grid-template-columns: minmax(120px, 190px) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  border: 0;
  border-radius: 0;
  border-top: 1px solid var(--sand-border);
  padding: 1.25rem 0;
  overflow: visible;
}
.mk-city-panel:last-child {
  border-bottom: 1px solid var(--sand-border);
}
.mk-city-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  min-height: 0;
  max-height: none;
  object-fit: cover;
  border-radius: 8px;
}
.mk-city-panel .content {
  position: relative;
  padding: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mk-contact-page {
  background:
    linear-gradient(180deg, rgba(245, 247, 251, 0.9) 0%, rgba(255, 255, 255, 1) 38%);
}
.mk-contact-page h1 {
  max-width: 720px;
  margin-bottom: 0.8rem;
}
.mk-contact-lead {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 0 1.8rem;
}
.mk-contact-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--sand-border);
  border-bottom: 1px solid var(--sand-border);
  margin: 1.5rem 0 2.75rem;
}
.mk-contact-actions a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 0.1rem 0.8rem;
  align-items: center;
  padding: 1rem 1.25rem;
  color: var(--indigo-deep);
  border-right: 1px solid var(--sand-border);
}
.mk-contact-actions a:last-child {
  border-right: 0;
}
.mk-contact-actions a:hover {
  background: rgba(230, 160, 40, 0.09);
  color: var(--rust);
}
.mk-contact-actions i {
  grid-row: span 2;
  color: var(--marigold-deep);
  font-size: 1.25rem;
}
.mk-contact-actions span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mk-contact-actions strong {
  overflow-wrap: anywhere;
  line-height: 1.3;
}
.mk-contact-page .mk-contact-layout {
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 0;
}
.mk-contact-page .mk-contact-form-panel {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.mk-contact-page .mk-contact-form-panel .section-head {
  margin-bottom: 1.5rem;
}
.mk-contact-page .mk-contact-form-panel .section-head h2 {
  margin: 0;
}
.mk-contact-page .mk-form-grid {
  gap: 1.1rem 1.35rem;
}
.mk-contact-page .mk-form-group {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--sand-border);
}
.mk-contact-page .mk-form-group input,
.mk-contact-page .mk-form-group select,
.mk-contact-page .mk-form-group textarea {
  border: 0;
  border-radius: 0;
  padding: 0.35rem 0 0;
  background: transparent;
}
.mk-contact-page .mk-form-group input:focus,
.mk-contact-page .mk-form-group select:focus,
.mk-contact-page .mk-form-group textarea:focus {
  box-shadow: none;
  border-color: transparent;
}
.mk-contact-page .mk-contact-submit {
  width: auto;
  min-width: 190px;
  margin-top: 1.5rem;
}
.mk-contact-page .mk-contact-details {
  padding-top: 0;
  border-left: 1px solid var(--sand-border);
  padding-left: clamp(1.5rem, 3vw, 2.25rem);
}
.mk-contact-page .mk-contact-details .mk-reason {
  border-bottom: 1px solid var(--sand-border);
  padding-bottom: 1rem;
}
.mk-contact-page .mk-contact-map {
  border-radius: 8px;
  box-shadow: none;
}

@media (max-width: 991px) {
  .mk-hero h1 {
    font-size: clamp(2.25rem, 8vw, 3.2rem);
  }
  .mk-city-panel {
    grid-template-columns: minmax(110px, 160px) minmax(0, 1fr);
  }
  .mk-contact-actions {
    grid-template-columns: 1fr;
  }
  .mk-contact-actions a {
    border-right: 0;
    border-bottom: 1px solid var(--sand-border);
  }
  .mk-contact-actions a:last-child {
    border-bottom: 0;
  }
  .mk-contact-page .mk-contact-details {
    grid-row: auto;
    border-left: 0;
    border-top: 1px solid var(--sand-border);
    padding-left: 0;
    padding-top: 2rem;
  }
  .mk-contact-page .mk-contact-layout {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
}

@media (max-width: 600px) {
  .mk-hero {
    padding: 3.1rem 0 4.5rem;
  }
  .mk-hero h1 {
    font-size: clamp(2.05rem, 12vw, 2.75rem);
  }
  .mk-city-panel {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .mk-city-panel img {
    width: min(100%, 280px);
    max-height: none;
  }
  .mk-contact-page .mk-contact-submit {
    width: 100%;
  }
  .mk-contact-page {
    padding-top: 1.25rem;
  }
  .mk-contact-page h1 {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
    line-height: 1.12;
    margin-bottom: 0.7rem;
  }
  .mk-contact-lead {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
  }
  .mk-contact-page .mk-contact-form-panel .section-head {
    margin-bottom: 1.1rem;
  }
  .mk-contact-page .mk-contact-form-panel .section-head h2,
  .mk-contact-page .mk-contact-details h3 {
    font-size: 1.35rem;
  }
  .mk-contact-page .mk-form-grid {
    grid-template-columns: 1fr;
    gap: 0.95rem;
  }
  .mk-contact-page .mk-form-group {
    padding-bottom: 0.85rem;
  }
  .mk-contact-page .mk-contact-details .mk-reason {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 0.8rem;
    margin-bottom: 1rem;
  }
  .mk-contact-page .mk-contact-details .mk-reason p,
  .mk-contact-page .mk-contact-details .mk-reason a {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 700px) {
  .mk-table-scroll {
    margin-inline: -0.15rem;
    padding-bottom: 0.35rem;
  }
  .mk-fleet-table {
    width: 100%;
    min-width: 620px;
    white-space: nowrap;
  }
  .mk-fleet-table thead {
    display: table-header-group;
  }
  .mk-fleet-table tbody {
    display: table-row-group;
  }
  .mk-fleet-table tr {
    display: table-row;
  }
  .mk-fleet-table th,
  .mk-fleet-table td {
    display: table-cell;
    width: auto;
    padding: 0.85rem 0.9rem;
    vertical-align: middle;
  }
  .mk-fleet-table td:first-child {
    min-width: 220px;
  }
  .mk-fleet-table td:first-child img {
    width: 64px;
    height: 44px;
    flex: 0 0 64px;
  }
  .mk-fleet-table .btn-mk {
    min-width: 110px;
    justify-content: center;
  }
}

/* ---------- Button sizing polish ---------- */
.btn-mk {
  width: auto;
  max-width: 100%;
  justify-content: center;
  white-space: nowrap;
}
.mk-fare-submit {
  width: auto;
}
.mk-section-action,
.mk-cta-action,
.mk-city-action {
  width: auto;
  min-width: 0;
  padding-inline: 1.35rem;
}
.mk-section-action,
.mk-cta-action {
  min-width: 170px;
}
.mk-city-action {
  align-self: flex-start;
  margin-top: 0.45rem;
}
.mk-cta-band {
  text-align: center;
}
.mk-cta-band .btn-mk {
  display: inline-flex;
}
.mk-fleet-table .btn-mk {
  padding-inline: 1.1rem;
  min-width: 98px;
}

@media (max-width: 700px) {
  .btn-mk {
    white-space: normal;
  }
  .mk-section-action,
  .mk-cta-action {
    width: auto;
    min-width: 150px;
  }
  .mk-city-action {
    max-width: 100%;
  }
  .mk-contact-page .mk-contact-submit {
    width: auto;
    min-width: 170px;
  }
  .mk-fare-submit {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .mk-hero-ctas,
  .about-actions {
    align-items: flex-start;
  }
  .mk-hero-ctas .btn-mk,
  .about-actions .btn-mk {
    width: auto;
  }
  .mk-contact-page .mk-contact-submit {
    width: 100%;
  }
}

/* Keep the homepage fare form as a compact two-row layout on wide screens. */
@media (min-width: 992px) {
  .mk-booking-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-areas:
      "name phone from from"
      "to vehicle round submit";
  }
  .mk-booking .mk-fare-submit {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 991px) {
  .mk-booking-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "name phone"
      "from to"
      "vehicle round"
      "submit submit";
  }
}

@media (max-width: 600px) {
  .mk-booking-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "name"
      "phone"
      "from"
      "to"
      "vehicle"
      "round"
      "submit";
  }
}

.mk-vehicle-card.is-active {
  transform: none;
  border-color: #d8e0eb;
  box-shadow: none;
}
.mk-vehicle-card.is-active .mk-vehicle-image img {
  transform: none;
  filter: none;
}
.mk-vehicle-card.is-active:hover {
  transform: translateY(-6px);
  border-color: #f0a733;
  box-shadow: 0 20px 46px rgba(28, 43, 70, 0.16);
}
.mk-vehicle-card.is-active:hover .mk-vehicle-image img {
  transform: translateY(-6px) scale(1.04);
  filter: drop-shadow(0 26px 22px rgba(28, 43, 70, 0.24));
}
.mk-vehicle-carousel,
.mk-vehicle-track {
  background: transparent !important;
  box-shadow: none;
}
.mk-vehicle-carousel::before,
.mk-vehicle-carousel::after,
.mk-vehicle-track::before,
.mk-vehicle-track::after {
  display: none;
  content: none;
}
.section-mk.mk-vehicle-showcase,
.mk-vehicle-showcase .container-mk,
.mk-vehicle-showcase .mk-vehicle-carousel,
.mk-vehicle-showcase .mk-vehicle-track {
  background-color: transparent !important;
  background-image: none !important;
}
.mk-vehicle-showcase .mk-vehicle-image {
  background-color: #fff !important;
  background-image: none !important;
}
.mk-vehicle-card {
  box-shadow: none !important;
}
.mk-vehicle-image img {
  filter: none !important;
}
.mk-vehicle-card-top strong,
.mk-vehicle-title-row span {
  box-shadow: none !important;
}
.mk-vehicle-card:hover {
  box-shadow: 0 20px 46px rgba(28, 43, 70, 0.16) !important;
}
.mk-vehicle-card:hover .mk-vehicle-image img {
  filter: drop-shadow(0 22px 18px rgba(28, 43, 70, 0.2)) !important;
}

.mk-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.mk-route-item {
  display: block;
  padding: 1.15rem;
  border: 1px solid var(--sand-border);
  border-radius: 12px;
  background: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.mk-route-item:hover {
  transform: translateY(-3px);
  border-color: #0794df;
  box-shadow: 0 14px 32px rgba(28, 43, 70, 0.1);
}
.mk-route-item .mk-route-line {
  display: none;
}
.mk-route-item h4 {
  margin: 0 0 0.65rem;
  color: var(--indigo-deep);
  font-size: 1.05rem;
}
.mk-route-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.mk-route-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 30px;
  padding: 0.32rem 0.55rem;
  border: 1px solid #dfe6f0;
  border-radius: 999px;
  background: #f8fafc;
  color: #596273;
  font-size: 0.82rem;
}
.mk-service-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}
.mk-service-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  grid-template-areas:
    "num body"
    "num link";
  gap: 0.65rem 1rem;
  min-height: 0;
  padding: 1.25rem;
  border: 1px solid var(--sand-border);
  border-radius: 12px;
  background: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.mk-service-row:hover {
  transform: translateY(-3px);
  border-color: #0794df;
  box-shadow: 0 14px 32px rgba(28, 43, 70, 0.1);
}
.mk-service-row .num {
  grid-area: num;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #0794df;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
}
.mk-service-row > div:not(.num) {
  grid-area: body;
}
.mk-service-row h3 {
  margin: 0 0 0.35rem;
}
.mk-service-row a.arrow-link {
  grid-area: link;
  align-self: end;
  justify-self: start;
  color: #a63729;
}

@media (max-width: 991px) {
  .mk-route-grid,
  .mk-service-list {
    grid-template-columns: 1fr;
  }
}

.mk-content-section {
  padding: 3.2rem 0;
}
.mk-content-card-wide {
  max-width: 1050px;
  margin: 0 auto;
  box-shadow: none;
}
.mk-home-city-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 920px;
  margin: 0 auto;
}
.mk-home-city-card {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 0.25rem 0.85rem;
  align-items: center;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--sand-border);
  border-radius: 12px;
  background: #fff;
  color: var(--indigo-deep);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.mk-home-city-card:hover {
  transform: translateY(-3px);
  border-color: #0794df;
  box-shadow: 0 14px 32px rgba(28, 43, 70, 0.1);
}
.mk-home-city-card i {
  grid-row: span 2;
  color: #0794df;
  font-size: 1.35rem;
}
.mk-home-city-card strong {
  font-size: 1.05rem;
  line-height: 1.2;
}
.mk-home-city-card span {
  color: #687386;
  font-size: 0.9rem;
}
.mk-link-hub {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}
.mk-link-group {
  padding: 1.45rem;
  border: 1px solid var(--sand-border);
  border-radius: 12px;
  background: #fff;
}
.mk-link-group.wide {
  grid-column: 1 / -1;
}
.mk-link-group h3 {
  margin: 0 0 0.9rem;
  font-size: 1.15rem;
}
.mk-link-group div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.7rem;
}
.mk-link-group a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.42rem 0.7rem;
  border: 1px solid #dfe6f0;
  border-radius: 999px;
  background: #f8fafc;
  color: #15345a;
  font-size: 0.9rem;
  font-weight: 650;
}
.mk-link-group a:hover {
  border-color: #0794df;
  background: #eef8ff;
  color: #0369a1;
}
.mk-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.mk-service-row {
  display: grid;
  grid-template-columns: auto 142px minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.15rem;
  min-height: 150px;
  padding: 1.25rem;
  border: 1px solid var(--sand-border);
  border-radius: 12px;
  background: #fff;
  box-shadow: none;
}
.mk-service-row .num {
  border-radius: 10px;
  background: #0794df;
  color: #fff;
}
.mk-service-thumb {
  overflow: hidden;
  width: 142px;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  background: #f5f7fb;
}
.mk-service-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.mk-service-row:hover {
  border-color: #0794df;
  box-shadow: 0 14px 32px rgba(28, 43, 70, 0.1);
}
.mk-service-row:hover .mk-service-thumb img {
  transform: scale(1.045);
}
.mk-blog-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}
.mk-blog-item {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--sand-border);
  border-radius: 14px;
  background: #fff;
  color: inherit;
  min-height: 100%;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.mk-blog-item:hover {
  transform: translateY(-4px);
  border-color: #0794df;
  box-shadow: 0 18px 42px rgba(28, 43, 70, 0.12);
}
.mk-blog-item img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 0;
}
.mk-blog-item .meta,
.mk-blog-item h3,
.mk-blog-item p {
  margin-left: 1.15rem;
  margin-right: 1.15rem;
}
.mk-blog-item .meta {
  margin-top: 1rem;
  color: #7b8493;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.mk-blog-item h3 {
  margin-top: 0.45rem;
  color: var(--indigo-deep);
  line-height: 1.28;
}
.mk-blog-item p {
  margin-bottom: 1.15rem;
  color: #626d7d;
}
.mk-blog-item::after {
  content: "Read Story";
  margin: auto 1.15rem 1.15rem;
  color: #f28c18;
  font-size: 0.84rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 991px) {
  .mk-home-city-grid,
  .mk-blog-list,
  .mk-service-list,
  .mk-link-hub {
    grid-template-columns: 1fr;
  }
  .mk-link-group.wide {
    grid-column: auto;
  }
  .mk-service-row {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .mk-service-thumb {
    grid-column: 1 / -1;
    width: 100%;
  }
  .mk-service-row a.arrow-link {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 600px) {
  .mk-home-city-card {
    padding: 1rem;
  }
  .mk-link-group {
    padding: 1.1rem;
  }
}

/* Final service-card polish */
.mk-service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: center;
}
.mk-service-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "image"
    "body"
    "link";
  align-items: stretch;
  gap: 0;
  min-height: 100%;
  padding: 0;
  border: 1px solid var(--sand-border);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.mk-service-row::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(7, 148, 223, 0.06), transparent 42%);
  opacity: 0;
  transition: opacity 0.22s ease;
}
.mk-service-row .num {
  display: none;
}
.mk-service-row > .mk-service-card-body {
  grid-area: body !important;
  min-width: 0;
  padding: 1.15rem 1.25rem 0.4rem;
}
.mk-service-row > .mk-service-thumb {
  grid-area: image !important;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 8.6;
  border-radius: 0;
  background: #f5f7fb;
}
.mk-service-row > .mk-service-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.38s ease;
}
.mk-service-row h3 {
  margin: 0 0 0.45rem;
  color: var(--indigo-deep);
  font-size: 1.2rem;
  line-height: 1.24;
}
.mk-service-row p {
  margin: 0;
  color: #5f6878;
  font-size: 0.94rem;
  line-height: 1.58;
}
.mk-service-row a.arrow-link {
  grid-area: link !important;
  align-self: end;
  justify-self: start;
  margin: 0 1.25rem 1.2rem;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: #fff7ed;
  color: #f28c18;
  font-weight: 850;
}
.mk-service-row a.arrow-link:hover {
  background: #f28c18;
  color: #fff;
}
.mk-service-row:hover {
  transform: translateY(-5px);
  border-color: #0794df;
  box-shadow: 0 18px 42px rgba(28, 43, 70, 0.12);
}
.mk-service-row:hover::after {
  opacity: 1;
}
.mk-service-row:hover .mk-service-thumb img {
  transform: scale(1.055);
}
.mk-service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 2.5rem;
  align-items: center;
}
.mk-service-hero-image {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--sand-border);
  background: #fff;
  box-shadow: 0 20px 50px rgba(28, 43, 70, 0.12);
}
.mk-service-hero-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 991px) {
  .mk-service-list,
  .mk-service-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .mk-service-row {
    border-radius: 14px;
  }
  .mk-service-row > .mk-service-thumb {
    aspect-ratio: 16 / 9;
  }
  .mk-service-row > .mk-service-card-body {
    padding: 1rem 1rem 0.35rem;
  }
  .mk-service-row a.arrow-link {
    margin: 0 1rem 1rem;
  }
}

/* Professional support sections for service and locality pages */
.mk-proof-section {
  background:
    radial-gradient(circle at top right, rgba(7, 148, 223, 0.08), transparent 32%),
    #fff;
}
.mk-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.mk-proof-card {
  position: relative;
  min-height: 220px;
  padding: 1.45rem;
  border: 1px solid var(--sand-border);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.mk-proof-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #0794df, #f28c18);
}
.mk-proof-card i {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  border-radius: 14px;
  background: #eef8ff;
  color: #0794df;
  font-size: 1.35rem;
}
.mk-proof-card h3 {
  margin: 0 0 0.55rem;
  color: var(--indigo-deep);
  font-size: 1.06rem;
  line-height: 1.25;
}
.mk-proof-card p {
  margin: 0;
  color: #5f6878;
  font-size: 0.92rem;
  line-height: 1.6;
}
.mk-proof-card:hover {
  transform: translateY(-5px);
  border-color: #0794df;
  box-shadow: 0 18px 42px rgba(28, 43, 70, 0.11);
}
.mk-process-section {
  background: #f7f9fc;
}
.mk-process-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.4fr);
  gap: 1.4rem;
  align-items: center;
  padding: 1.3rem;
  border: 1px solid var(--sand-border);
  border-radius: 18px;
  background: #fff;
}
.mk-process-intro {
  padding: 1.45rem;
  border-radius: 14px;
  background: #10233d;
  color: #fff;
}
.mk-process-intro .eyebrow {
  color: #f28c18;
}
.mk-process-intro h2 {
  margin: 0.75rem 0 0.8rem;
  color: #fff;
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
  line-height: 1.15;
}
.mk-process-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}
.mk-process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}
.mk-process-steps div {
  padding: 1.35rem;
  border: 1px solid #e4e9f1;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, #f8fafc);
}
.mk-process-steps strong {
  display: inline-flex;
  margin-bottom: 1.25rem;
  color: #f28c18;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
}
.mk-process-steps h3 {
  margin: 0 0 0.55rem;
  color: var(--indigo-deep);
  font-size: 1.05rem;
}
.mk-process-steps p {
  margin: 0;
  color: #5f6878;
  font-size: 0.9rem;
  line-height: 1.58;
}

@media (max-width: 1100px) {
  .mk-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mk-process-panel,
  .mk-process-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .mk-proof-grid {
    grid-template-columns: 1fr;
  }
  .mk-proof-card {
    min-height: 0;
    padding: 1.2rem;
  }
  .mk-process-panel {
    padding: 0.8rem;
    border-radius: 14px;
  }
  .mk-process-intro,
  .mk-process-steps div {
    padding: 1.15rem;
  }
}

/* Keep service cards aligned on hover; older rules added left padding. */
.mk-service-list > .mk-service-row,
.mk-service-list > .mk-service-row:first-child,
.mk-service-list > .mk-service-row:hover {
  padding: 0 !important;
}

.mk-service-list > .mk-service-row:hover {
  padding-left: 0 !important;
  transform: translate3d(0, -5px, 0);
}

.mk-service-list > .mk-service-row > .mk-service-thumb {
  margin: 0 !important;
}

.mk-service-list > .mk-service-row > .mk-service-thumb img {
  transform-origin: center center;
}

.mk-footer-credit {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.mk-footer-credit a {
  color: #f5a623;
  font-weight: 700;
  text-decoration: none;
}

.mk-footer-credit a:hover {
  color: #fff;
}

@media (max-width: 760px) {
  .mk-footer-credit {
    text-align: center;
  }
}
