
    :root {
      --bg-body: #fffaf2;
      --bg-header: #ffffff;
      --bg-topbar: #fff4e1;
      --bg-chip: #fff3d1;
      --accent: #fb9d09;          /* main theme color */
      --accent-2: #52181a;        /* secondary theme color */
      --accent-soft: rgba(251, 157, 9, 0.08);
      --border-soft: rgba(15, 23, 42, 0.08);
      --text-main: #1f2933;
      --text-muted: #6b7280;
      --radius-pill: 999px;
      --radius-lg: 16px;
      --shadow-soft: 0 12px 35px rgba(15, 23, 42, 0.06);
      --nav-height: 74px;
      --container-width: 1180px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at top left, #fff7e3 0, #fff0d0 36%, #ffe4b3 60%, #ffe1cb 100%);
      color: var(--text-main);
      -webkit-font-smoothing: antialiased;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .km-container {
      width: 100%;
      max-width: var(--container-width);
      margin: 0 auto;
      padding: 0 16px;
    }

    /* ==========================
       TOPBAR
    =========================== */
    .km-topbar {
      background: linear-gradient(90deg, #fff4e1, #ffe6c2);
      border-bottom: 1px solid rgba(251, 157, 9, 0.18);
      font-size: 12px;
      color: var(--text-muted);
    }

    .km-topbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 6px 0;
    }

    .km-top-left,
    .km-top-right {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .km-tagline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 4px 10px;
      border-radius: var(--radius-pill);
      background: #ffffff;
      border: 1px solid rgba(251, 157, 9, 0.35);
      color: #8a4510;
      font-size: 11px;
    }

    .km-tagline i {
      color: var(--accent);
    }

    .km-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 9px;
      border-radius: var(--radius-pill);
      background: #ffffff;
      border: 1px solid rgba(148, 163, 184, 0.26);
      font-size: 11px;
      color: var(--text-muted);
    }

    .km-chip i {
      color: var(--accent);
      font-size: 12px;
    }

    .km-top-right .km-chip-whatsapp {
      border-color: #15803d33;
      color: #15803d;
      background: #ecfdf3;
    }

    .km-top-right .km-chip-whatsapp i {
      color: #22c55e;
    }

    @media (max-width: 576px) {
      .km-topbar {
        display: none;
      }
    }

    /* ==========================
       MAIN HEADER
    =========================== */
    .km-header {
      position: sticky;
      inset-block-start: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(148, 163, 184, 0.16);
      transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    }

    .km-header.is-scrolled {
      box-shadow: var(--shadow-soft);
      border-color: transparent;
      background: #ffffff;
    }

    .km-nav {
      height: var(--nav-height);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    /* BRAND: simple full logo image */
    .km-brand {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .km-brand-img {
      height: 47px;
      width: auto;
      display: block;
      object-fit: contain;
    }

    /* NAV LINKS */
    .km-nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      font-size: 14px;
      color: var(--text-muted);
    }

    .km-nav-links a {
      padding: 4px 0;
      position: relative;
    }

    .km-nav-links a::after {
      content: "";
      position: absolute;
      inset-inline: 0;
      inset-block-end: -4px;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--accent), var(--accent-2));
      transform-origin: center;
      transform: scaleX(0);
      transition: transform 0.25s ease;
    }

    .km-nav-links a:hover {
      color: var(--accent-2);
    }

    .km-nav-links a:hover::after {
      transform: scaleX(1);
    }

    /* CTA BUTTONS */
    .km-nav-cta {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .km-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 8px 16px;
      border-radius: var(--radius-pill);
      border: 1px solid transparent;
      font-size: 13px;
      cursor: pointer;
      background: transparent;
      color: var(--text-main);
      transition: all 0.23s ease;
      outline: none;
      white-space: nowrap;
    }

    .km-btn-outline {
      border-color: rgba(148, 163, 184, 0.7);
      background: #ffffff;
      color: #374151;
    }

    .km-btn-outline:hover {
      border-color: var(--accent);
      box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
      transform: translateY(-1px);
    }

    .km-btn-primary {
      background: linear-gradient(120deg, var(--accent), #ffc557, var(--accent-2));
      color: #ffffff;
      border-color: transparent;
      box-shadow: 0 12px 30px rgba(251, 157, 9, 0.5);
    }

    .km-btn-primary:hover {
      filter: brightness(1.03);
      transform: translateY(-1px);
      box-shadow: 0 16px 40px rgba(82, 24, 26, 0.35);
    }

    /* MOBILE TOGGLER */
    .km-nav-toggle {
      display: none;
      width: 34px;
      height: 34px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      background: #ffffff;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .km-nav-toggle span {
      width: 18px;
      height: 2px;
      border-radius: 999px;
      background: #111827;
      position: relative;
      transition: all 0.2s ease;
    }

    .km-nav-toggle span::before,
    .km-nav-toggle span::after {
      content: "";
      position: absolute;
      inset-inline-start: 0;
      width: 18px;
      height: 2px;
      border-radius: 999px;
      background: #111827;
      transition: all 0.25s ease;
    }

    .km-nav-toggle span::before {
      inset-block-start: -5px;
    }

    .km-nav-toggle span::after {
      inset-block-start: 5px;
    }

    .km-nav-toggle.is-open span {
      background: transparent;
    }

    .km-nav-toggle.is-open span::before {
      transform: translateY(5px) rotate(45deg);
    }

    .km-nav-toggle.is-open span::after {
      transform: translateY(-5px) rotate(-45deg);
    }

    /* ==========================
       MOBILE MENU (SLIDE FROM LEFT)
    =========================== */
    .km-mobile-overlay {
      position: fixed;
      inset: 0;
      background: rgba(15, 23, 42, 0.25);
      display: none;
      z-index: 70; /* above header */
    }

    .km-mobile-overlay.is-open {
      display: block;
    }

    .km-mobile-drawer {
      position: fixed;
      inset-block: 0;
      inset-inline-start: 0;
      width: 82%;
      max-width: 320px;
      background: #ffffff;
      box-shadow: 12px 0 35px rgba(15, 23, 42, 0.18);
      transform: translateX(-100%);
      transition: transform 0.26s ease-out;
      z-index: 80; /* above overlay + header */
      display: flex;
      flex-direction: column;
    }

    .km-mobile-drawer.is-open {
      transform: translateX(0);
    }

    .km-mobile-header {
      padding: 14px 16px;
      border-bottom: 1px solid rgba(148, 163, 184, 0.25);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }

    .km-mobile-title {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .km-mobile-title .km-brand-img {
      height: 38px; /* slightly smaller inside drawer */
    }

    .km-mobile-close {
      width: 28px;
      height: 28px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      background: #f9fafb;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .km-mobile-body {
      padding: 12px 16px 16px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      font-size: 14px;
    }

    .km-mobile-body a {
      padding: 8px 0;
      border-bottom: 1px dashed rgba(226, 232, 240, 0.9);
      color: #4b5563;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .km-mobile-body a:last-child {
      border-bottom: none;
    }

    .km-mobile-footer {
      margin-top: auto;
      padding: 12px 16px 14px;
      border-top: 1px solid rgba(226, 232, 240, 0.9);
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .km-mobile-footer .km-btn {
      flex: 1 1 auto;
      justify-content: center;
    }

    /* ==========================
       MAIN / HERO
    =========================== */
    .km-main {
      padding-bottom: 40px;
    }

    .km-hero {
      position: relative;
      padding: 32px 0 32px;
      overflow: hidden;
    }

    /* Hero gradient background (no image) */
    .km-hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 0% 0%, rgba(251, 157, 9, 0.24), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(82, 24, 26, 0.22), transparent 55%),
        linear-gradient(135deg, #fffaf2, #ffe9c7);
      pointer-events: none;
      z-index: 0;
      opacity: 1;
    }

    .km-hero > .km-container {
      position: relative;
      z-index: 1;
    }

    .km-hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 32px;
      align-items: center;
    }

    /* LEFT SIDE */
    .km-hero-left {
      position: relative;
    }

    .km-hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 4px 10px;
      border-radius: 999px;
      background: #fff7eb;
      border: 1px solid rgba(251, 157, 9, 0.4);
      font-size: 11px;
      color: #8a4510;
      margin-bottom: 10px;
    }

    .km-hero-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #22c55e;
      box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.24);
    }

    .km-hero-title {
      font-family: "DM Serif Display", serif;
      font-size: clamp(28px, 3.2vw, 36px);
      line-height: 1.1;
      margin-bottom: 10px;
      color: #52181a;
    }

    .km-hero-highlight {
      background: linear-gradient(120deg, var(--accent), #ffc857, var(--accent-2));
      -webkit-background-clip: text;
      color: transparent;
    }

    .km-hero-subtitle {
      font-size: 14px;
      color: var(--text-muted);
      max-width: 440px;
      margin-bottom: 16px;
    }

    /* SEARCH CARD */
    .km-hero-search-card {
      background: #ffffff;
      border-radius: 18px;
      border: 1px solid rgba(251, 157, 9, 0.28);
      box-shadow: var(--shadow-soft);
      padding: 14px 14px 12px;
      margin-bottom: 14px;
    }

    .km-hero-search-header {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      color: #7f1d1d;
      padding: 4px 9px;
      border-radius: 999px;
      background: rgba(251, 157, 9, 0.12);
      margin-bottom: 10px;
    }

    .km-hero-search-header i {
      color: var(--accent);
    }

    .km-hero-search-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 8px;
    }

    .km-field {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .km-field label {
      font-size: 11px;
      color: var(--text-muted);
    }

    .km-field select,
    .km-field input {
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.6);
      padding: 7px 10px;
      font-size: 12px;
      outline: none;
      background: #fff7ec;
      color: var(--text-main);
    }

    .km-field select:focus,
    .km-field input:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 1px rgba(251, 157, 9, 0.4);
      background: #ffffff;
    }

    .km-hero-search-footer {
      margin-top: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .km-hero-note {
      font-size: 11px;
      color: var(--text-muted);
    }

    .km-btn-xs {
      padding: 6px 12px;
      font-size: 12px;
    }

    /* META BELOW SEARCH */
    .km-hero-meta {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-top: 6px;
      font-size: 12px;
      color: var(--text-muted);
    }

    .km-hero-meta-item {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .km-hero-meta-item i {
      color: var(--accent);
    }

    /* RIGHT SIDE – FORM CARD */
    .km-hero-right {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .km-hero-orbit {
      position: absolute;
      width: 260px;
      height: 260px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(251, 157, 9, 0.45), rgba(82, 24, 26, 0.6));
      opacity: 0.42;
      filter: blur(6px);
    }

    .km-hero-form-card {
      position: relative;
      width: 100%;
      max-width: 360px;
      border-radius: 20px;
      padding: 16px 16px 14px;
      background: linear-gradient(135deg, #ffffff, #fff5e1);
      border: 1px solid rgba(251, 157, 9, 0.5);
      box-shadow: 0 18px 40px rgba(82, 24, 26, 0.25);
      overflow: hidden;
    }

    .km-hero-form-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 10px;
      border-radius: 999px;
      background: #fffbeb;
      color: #8a4510;
      font-size: 11px;
      margin-bottom: 8px;
      border: 1px solid rgba(251, 157, 9, 0.35);
    }

    .km-hero-form-label .dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #22c55e;
    }

    .km-hero-form-title {
      font-size: 15px;
      font-weight: 600;
      color: #52181a;
      margin-bottom: 6px;
    }

    .km-hero-form-text {
      font-size: 12px;
      color: #6b7280;
      margin-bottom: 10px;
    }

    .km-hero-form {
      font-size: 12px;
    }

    .km-hero-form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
      margin-bottom: 8px;
    }

    .km-hero-form-message label span {
      color: #9ca3af;
      font-weight: 400;
    }

    .km-hero-form-message textarea {
      margin-top: 3px;
      border-radius: 14px;
      border: 1px solid rgba(148, 163, 184, 0.6);
      padding: 7px 10px;
      font-size: 12px;
      outline: none;
      background: #fff7ec;
      color: var(--text-main);
      resize: vertical;
      min-height: 70px;
    }

    .km-hero-form-message textarea:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 1px rgba(251, 157, 9, 0.4);
      background: #ffffff;
    }

    .km-hero-form-footer {
      margin-top: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .km-hero-form-footer .km-btn {
      padding-inline: 16px;
    }

    .km-hero-form-note {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      color: #6b7280;
    }

    .km-hero-form-note i {
      color: #22c55e;
    }

    /* STATS STRIP BELOW HERO */
    .km-hero-stats-strip {
      margin-top: 24px;
      border-radius: 18px;
      border: 1px solid rgba(251, 157, 9, 0.4);
      background: rgba(255, 252, 245, 0.98);
      box-shadow: 0 12px 35px rgba(148, 92, 41, 0.18);
      padding: 10px 14px;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
      font-size: 12px;
    }

    .km-hero-stat {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 10px;
      border-radius: 999px;
      background: #ffffff;
      border: 1px solid rgba(251, 157, 9, 0.25);
    }

    .km-hero-stat .icon {
      width: 26px;
      height: 26px;
      border-radius: 999px;
      background: #fff3d4;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .km-hero-stat .icon i {
      color: var(--accent-2);
      font-size: 13px;
    }

    .km-hero-stat .value {
      font-weight: 600;
      color: #52181a;
    }

    .km-hero-stat .label {
      font-size: 11px;
      color: #6b7280;
    }

    /* ==========================
       RESPONSIVE
    =========================== */
    @media (max-width: 960px) {
      .km-nav-links,
      .km-nav-cta {
        display: none;
      }

      .km-nav-toggle {
        display: inline-flex;
      }
    }

    @media (max-width: 992px) {
      .km-hero-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      /* mobile: search card (left) first, then form (right) below */
      .km-hero-right {
        margin-top: 12px;
      }

      .km-hero-stats-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .km-hero-search-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .km-hero {
        padding-top: 20px;
      }

      .km-hero-stats-strip {
        grid-template-columns: minmax(0, 1fr);
      }

      .km-hero-form-card {
        max-width: 100%;
      }

      .km-hero-form-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }
    
 /* =========== SECTION HEADING (like your screenshot) =========== */
  .km-section {
    padding: 50px 0;
    position: relative;
  }

  .km-section-head--center {
    text-align: center;
    margin-bottom: 28px;
  }

  .km-section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 20px;
    border-radius: 999px;
    background: rgba(255, 248, 232, 0.98);
    border: 1px solid rgba(251, 157, 9, 0.6);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8a4510;
  }

  .km-section-title {
    margin-top: 14px;
    margin-bottom: 6px;
    font-family: "DM Serif Display", serif;
    font-size: 30px;
    line-height: 1.1;
    color: #5a1512;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
  }

  .km-section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    margin: 10px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #fb9d09, #f7cf7b, #52181a);
    opacity: 0.65;
  }

  .km-section-subtitle {
    margin-top: 10px;
    font-size: 14px;
    color: #6b7280;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

  /* ============= HOW IT WORKS – 3×2 ROW STEPS (NO ARROWS) ============= */
  .km-how-steps-row {
    background: radial-gradient(circle at top, #fff8ec 0, #fff3e1 45%, #ffe6c7 100%);
    border-top: 1px solid rgba(251, 157, 9, 0.15);
    border-bottom: 1px solid rgba(251, 157, 9, 0.15);
  }

  .km-steps-rows {
    display: flex;
    flex-direction: column;
    gap: 28px;          /* space between top row and bottom row */
    margin-top: 18px;
  }

  /* each row (3 cards on desktop) */
  .km-steps-row {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px 20px;     /* row-gap 26, column-gap 20 */
    padding: 12px 6px 22px;
  }

  /* each step card container */
  .km-step-card-row {
    position: relative;
    padding-top: 56px;  /* space for icon badge */
  }

  /* icon + step label above card */
  .km-step-badge-row {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .km-step-icon-row {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: #ffffff;
    border: 2px solid rgba(251, 157, 9, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(82, 24, 26, 0.22);
  }

  .km-step-icon-row img {
    width: 30px;
    height: 30px;
    object-fit: contain;
  }

  .km-step-index-row {
    font-size: 11px;
    padding: 2px 12px;
    border-radius: 999px;
    background: #ffe3b8;
    color: #8a4510;
    font-weight: 500;
  }

  /* card body */
  .km-step-card-body {
    background: #fffaf3;
    border-radius: 22px;
    padding: 18px 16px 16px;
    border: 1px solid rgba(251, 157, 9, 0.55);
    box-shadow: 0 14px 30px rgba(82, 24, 26, 0.16);
    text-align: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
  }

  .km-step-card-body h3 {
    font-size: 15px;
    font-weight: 600;
    color: #52181a;
    margin-bottom: 6px;
  }

  .km-step-card-body p {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.55;
  }

  /* hover */
  .km-step-card-row:hover .km-step-card-body {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(82, 24, 26, 0.22);
  }

  /* ============= RESPONSIVE ============= */
  @media (max-width: 1024px) {
    .km-steps-row {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 768px) {
    .km-section {
      padding: 40px 0;
    }

    .km-section-title {
      font-size: 24px;
    }

    .km-steps-row {
      grid-template-columns: minmax(0, 1fr);  /* single column */
      padding-inline: 0;
    }

    .km-step-card-row {
      padding-top: 60px;   /* more room for badge on mobile */
    }

    .km-step-badge-row {
      left: 50%;
      transform: translate(-50%, -60%);
    }

    .km-step-card-body {
      text-align: left;
    }
  }

  /* section wrapper */
  .km-stories-rail {
    padding: 56px 16px;
    background: linear-gradient(180deg,#fffaf2 0%, #fff6ea 100%);
    border-top: 1px solid rgba(82,24,26,0.035);
  }
  .km-stories-rail .km-container { max-width: 1180px; margin: 0 auto; }

  /* header */
  .km-stories-head { text-align: center; margin-bottom: 20px; }
  .km-stories-tag { display:inline-block; padding:6px 16px; background:rgba(255,248,232,0.98); border-radius:999px; border:1px solid rgba(251,157,9,0.35); color:#8a4510; font-size:11px; letter-spacing:.12em; text-transform:uppercase; }
  .km-stories-title { font-family:"DM Serif Display",serif; font-size:30px; color:#52181A; margin:12px 0 6px; }
  .km-stories-sub { color:#6b7280; max-width:760px; margin:0 auto; font-size:14px; }

  /* stats row */
  .km-stats-row { display:flex; gap:12px; justify-content:center; margin:20px auto 24px; flex-wrap:wrap; max-width:860px; }
  .km-stat { background:#fff; padding:12px 14px; border-radius:12px; border:1px solid rgba(251,157,9,0.12); box-shadow:0 8px 18px rgba(82,24,26,0.04); display:flex; flex-direction:column; align-items:center; min-width:120px; }
  .km-stat .value { font-weight:700; font-size:20px; color:#52181A; }
  .km-stat .label { font-size:13px; color:#6b7280; }

  /* image rail container */
  .km-rail-wrap {
    position: relative;
    margin-top: 12px;
    padding: 18px 6px;
    overflow: hidden;
    border-radius: 14px;
    background: linear-gradient(180deg,#fff,#fffaf3);
    border: 1px solid rgba(82,24,26,0.04);
    box-shadow: 0 14px 34px rgba(82,24,26,0.04);
  }

  /* track that will translate left */
  .km-rail-track {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    will-change: transform;
  }

  .km-rail-item {
    flex: 0 0 auto;
    width: calc((100% - 3 * 18px) / 4); /* four items visible on desktop */
    max-width: 260px;
    box-sizing: border-box;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(251,157,9,0.06);
    box-shadow: 0 8px 20px rgba(82,24,26,0.04);
    display: flex;
    flex-direction: column;
  }

  .km-rail-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
  }

  /* content below image */
  .km-rail-item .km-card-body {
    padding: 12px 14px;
  }
  .km-rail-item .km-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #52181A;
    margin: 0 0 6px;
    line-height: 1.2;
  }
  .km-rail-item .km-card-desc {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* truncate to two lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* small overlay to show pause/play controls */
  .km-rail-controls {
    position: absolute;
    inset-inline-end: 14px;
    inset-block-end: 14px;
    z-index: 5;
    display: flex;
    gap: 8px;
  }
  .km-rail-btn {
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(82,24,26,0.06);
    padding: 8px 10px;
    border-radius: 999px;
    cursor: pointer;
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-weight:600;
    color:#52181A;
  }

  /* responsive behavior */
  @media (max-width: 1100px) {
    .km-rail-item { width: calc((100% - 2 * 18px) / 3); } /* 3 items */
    .km-rail-item img { height: 150px; }
  }
  @media (max-width: 820px) {
    .km-rail-item { width: calc((100% - 1 * 12px) / 2); } /* 2 items */
    .km-rail-item img { height: 160px; }
  }
  @media (max-width: 480px) {
    .km-rail-item { width: calc(100%); } /* 1 item */
    .km-rail-item img { height: 220px; }
    .km-rail-controls { inset-inline-end: 10px; inset-block-end: 10px; }
  }

  /* reduce motion preference */
  @media (prefers-reduced-motion: reduce) {
    .km-rail-track { transition: none !important; animation: none !important; }
  }
  /* Container + section */
  .km-services-3 {
    padding: 56px 16px;
    background: linear-gradient(180deg, #fffaf2 0%, #fff3e6 100%);
    border-top: 1px solid rgba(82,24,26,0.03);
  }
  .km-services-3 .km-container {
    max-width: 1180px;
    margin: 0 auto;
  }

  /* Section header */
  .km-services-head {
    text-align: center;
    margin-bottom: 28px;
  }
  .km-services-head .tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,248,232,0.98);
    border: 1px solid rgba(251,157,9,0.4);
    color: #8a4510;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
  }
  .km-services-head h2 {
    font-family: "DM Serif Display", serif;
    font-size: 28px;
    color: #52181A;
    margin: 14px 0 6px;
  }
  .km-services-head p.lead {
    color: #6b7280;
    max-width: 760px;
    margin: 0 auto;
    font-size: 14px;
  }

  /* Grid */
  .km-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 28px;
    align-items: start;
  }

  /* Card */
  .km-service {
    position: relative;
    background: linear-gradient(180deg,#ffffff,#fff6eb);
    border-radius: 16px;
    padding: 18px;
    border: 1px solid rgba(82,24,26,0.06);
    box-shadow: 0 12px 30px rgba(82,24,26,0.06);
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: visible;
  }

  /* Image area (top) */
  .km-service-visual {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .km-service-visual img {
    width: 84px;
    height: 84px;
    object-fit: contain;
    border-radius: 12px;
    background: #fff;
    padding: 10px;
    border: 1px solid rgba(251,157,9,0.12);
    box-shadow: 0 8px 20px rgba(82,24,26,0.06);
  }

  /* Title + subtitle */
  .km-service h3 {
    font-size: 18px;
    color: #52181A;
    margin: 2px 0;
  }
  .km-service p.desc {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
  }

  /* what's unique list */
  .km-unique {
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .km-unique li {
    list-style: none;
    font-size: 13px;
    color: #4b5563;
    display: flex;
    gap: 8px;
    align-items: flex-start;
  }
  .km-unique li::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-top: 6px;
    border-radius: 999px;
    background: linear-gradient(180deg, #fb9d09, #52181A);
    box-shadow: 0 0 0 4px rgba(251,157,9,0.12);
  }

  /* contact row */
  .km-contact {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    flex-wrap: wrap;
  }

  .km-contact .left {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .km-cta-wrap {
    display: flex;
    gap: 8px;
    align-items: center;
    width: 100%;
  }

  .km-whatsapp,
  .km-phone {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    background: #fff;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid rgba(82,24,26,0.04);
    text-decoration: none;
    color: #4b5563;
    font-size: 13px;
  }
  .km-whatsapp i,
  .km-phone i {
    color: #22c55e;
    font-size: 16px;
  }

  /* enquire button — FULL WIDTH */
  .km-enquire {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;                 /* <-- full width */
    box-sizing: border-box;
    background: linear-gradient(90deg,#FB9D09,#52181A);
    color: #fff;
    border: none;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    gap: 8px;
    cursor: pointer;
    margin-top: 8px;
  }

  /* small footnote */
  .km-foot {
    font-size: 12px;
    color: #8a4510;
    margin-top: 6px;
  }

  /* hover */
  .km-service:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(82,24,26,0.08);
  }

  /* Responsive */
  @media (max-width: 1100px) {
    .km-services-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 720px) {
    .km-services-grid { grid-template-columns: 1fr; }
    .km-service { padding: 16px; }
    .km-service-visual img { width: 72px; height: 72px; }
    .km-contact { gap: 10px; }
    .km-cta-wrap { width: 100%; }
  }
