/* ============================================================
   Kunene Transport — Material Design 3 Stylesheet
   Typography: Montserrat (body) + Playfair Display (headings)
   Color system: M3 tokens · Brand = Navy + Gold + Cream
   ============================================================ */

:root {
  --md-sys-color-primary:            #0A2540;
  --md-sys-color-on-primary:         #FFFFFF;
  --md-sys-color-primary-container:  #D7E2F0;
  --md-sys-color-on-primary-container:#061830;
  --md-sys-color-secondary:          #B8935A;
  --md-sys-color-on-secondary:       #FFFFFF;
  --md-sys-color-secondary-container: #F5EBD8;
  --md-sys-color-tertiary:           #2D7A4E;
  --md-sys-color-error:              #BA1A1A;
  --md-sys-color-error-container:    #FFDAD6;
  --md-sys-color-background:         #FFFBF5;
  --md-sys-color-surface:            #FFFFFF;
  --md-sys-color-surface-variant:    #F2EEE5;
  --md-sys-color-surface-container-low:    #FBF8F0;
  --md-sys-color-surface-container:        #F5F1E8;
  --md-sys-color-outline:            #75777C;
  --md-sys-color-outline-variant:    #C4C6CE;

  --kt-navy:          var(--md-sys-color-primary);
  --kt-navy-dark:     #061830;
  --kt-navy-light:    #1E4976;
  --kt-gold:          var(--md-sys-color-secondary);
  --kt-gold-deep:     #8F6F3E;
  --kt-gold-light:    var(--md-sys-color-secondary-container);
  --kt-cream:         #FAF8F4;
  --kt-cream-deep:    #F2EEE5;
  --kt-text:          #1B1C1E;
  --kt-text-muted:    #5B5E65;
  --kt-border:        #E5E0D2;
  --kt-success:       var(--md-sys-color-tertiary);
  --kt-danger:        var(--md-sys-color-error);

  --md-elevation-1: 0 1px 2px 0 rgba(10,37,64,.08), 0 1px 3px 1px rgba(10,37,64,.04);
  --md-elevation-2: 0 1px 2px 0 rgba(10,37,64,.10), 0 2px 6px 2px rgba(10,37,64,.06);
  --md-elevation-3: 0 4px 8px 3px rgba(10,37,64,.08), 0 1px 3px 0 rgba(10,37,64,.12);
  --md-elevation-4: 0 6px 10px 4px rgba(10,37,64,.10), 0 2px 3px 0 rgba(10,37,64,.14);
  --md-elevation-5: 0 8px 12px 6px rgba(10,37,64,.12), 0 4px 4px 0 rgba(10,37,64,.16);

  --md-shape-xs:  4px;
  --md-shape-sm:  8px;
  --md-shape-md:  12px;
  --md-shape-lg:  16px;
  --md-shape-xl:  28px;
  --md-shape-full: 9999px;

  --md-state-hover: 0.08;

  --md-motion-short:      150ms cubic-bezier(0.2, 0, 0, 1);
  --md-motion-medium:     300ms cubic-bezier(0.2, 0, 0, 1);
  --md-motion-emphasized: 500ms cubic-bezier(0.3, 0, 0, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html  { scroll-behavior: smooth; }

body  {
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 400;
  color: var(--kt-text);
  background: var(--kt-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a   { color: inherit; text-decoration: none; transition: color var(--md-motion-short); }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--kt-navy);
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ── Typography utilities ────────────────────────────────── */
.kt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kt-gold-deep);
  margin-bottom: 20px;
}
.kt-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--kt-gold);
  border-radius: var(--md-shape-full);
}

/* ── Topbar ──────────────────────────────────────────────── */
.kt-topbar {
  background: var(--kt-navy);
  color: rgba(255,255,255,.78);
  font-size: 12.5px;
  font-weight: 400;
  padding: 10px 0;
  letter-spacing: 0.02em;
}
.kt-topbar i { color: var(--kt-gold); margin-right: 4px; }

/* ── Navigation ──────────────────────────────────────────── */
.kt-nav {
  background: var(--kt-cream);
  padding: 16px 0;
  border-bottom: 1px solid var(--kt-border);
  transition: box-shadow var(--md-motion-medium), padding var(--md-motion-medium), background var(--md-motion-medium);
}
.kt-nav.scrolled {
  padding: 10px 0;
  background: rgba(250,248,244,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--md-elevation-2);
}

.kt-brand-link {
  display: flex !important;
  align-items: center;
  gap: 14px;
  padding: 0;
  text-decoration: none;
}
.kt-brand-mark {
  color: var(--kt-navy);
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: transform var(--md-motion-medium);
}
.kt-brand-link:hover .kt-brand-mark { transform: rotate(-8deg) scale(1.05); }
.kt-brand-text { display: flex; flex-direction: column; line-height: 1; }
.kt-brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--kt-navy);
  letter-spacing: -0.02em;
}
.kt-brand-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--kt-gold);
  margin-top: 4px;
}

.kt-toggler {
  border: 1px solid var(--kt-border) !important;
  background: transparent !important;
  padding: 0 !important;
  border-radius: var(--md-shape-sm);
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  transition: background var(--md-motion-short), border-color var(--md-motion-short);
}
.kt-toggler:focus { box-shadow: none !important; outline: none; }
.kt-toggler:hover { background: var(--kt-gold-light) !important; border-color: var(--kt-gold) !important; }
.kt-toggler-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--kt-navy);
  border-radius: 2px;
  transition: transform var(--md-motion-medium), opacity var(--md-motion-short);
}
.kt-toggler[aria-expanded="true"] .kt-toggler-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.kt-toggler[aria-expanded="true"] .kt-toggler-bar:nth-child(2) { opacity: 0; }
.kt-toggler[aria-expanded="true"] .kt-toggler-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.kt-nav-collapse { justify-content: space-between; margin-left: 40px; }
.kt-nav-links { display: flex; gap: 2px; list-style: none; padding: 0; margin: 0; }

.kt-nav-link {
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--kt-text) !important;
  padding: 10px 18px !important;
  letter-spacing: 0.04em;
  border-radius: var(--md-shape-sm);
  background: transparent !important;
  transition: color var(--md-motion-short);
}
.kt-nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--md-shape-sm);
  background: var(--kt-navy);
  opacity: 0;
  transition: opacity var(--md-motion-short);
  pointer-events: none;
}
.kt-nav-link:hover::before { opacity: var(--md-state-hover); }
.kt-nav-link.active { color: var(--kt-navy) !important; font-weight: 600; }
.kt-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background: var(--kt-gold);
  border-radius: var(--md-shape-full);
}

.kt-nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }

/* ── Material Buttons ────────────────────────────────────── */
.kt-btn-primary, .kt-btn-ghost, .kt-btn-gold, .kt-btn-dark, .kt-btn-outline {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 12px 24px;
  border-radius: var(--md-shape-full);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  transition: box-shadow var(--md-motion-short), background var(--md-motion-short), color var(--md-motion-short), border-color var(--md-motion-short);
}
.kt-btn-primary::before, .kt-btn-ghost::before, .kt-btn-gold::before, .kt-btn-dark::before, .kt-btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: currentColor;
  opacity: 0;
  transition: opacity var(--md-motion-short);
  pointer-events: none;
}
.kt-btn-primary:hover::before, .kt-btn-ghost:hover::before, .kt-btn-gold:hover::before, .kt-btn-dark:hover::before, .kt-btn-outline:hover::before { opacity: var(--md-state-hover); }

.kt-btn-primary { background: var(--kt-navy); color: var(--kt-cream); box-shadow: var(--md-elevation-1); }
.kt-btn-primary:hover { background: var(--kt-navy); color: var(--kt-cream); box-shadow: var(--md-elevation-3); }

.kt-btn-ghost { background: transparent; color: var(--kt-navy); border-color: var(--kt-border); }
.kt-btn-ghost:hover { background: var(--kt-gold-light); border-color: var(--kt-gold); color: var(--kt-navy); }

.kt-btn-gold { background: var(--kt-gold); color: #fff; box-shadow: var(--md-elevation-1); }
.kt-btn-gold:hover { background: var(--kt-gold); color: #fff; box-shadow: var(--md-elevation-3); }

.kt-btn-dark { background: transparent; color: var(--kt-cream); border-color: rgba(255,255,255,.3); }
.kt-btn-dark:hover { background: rgba(255,255,255,.1); color: var(--kt-cream); border-color: rgba(255,255,255,.6); }

.kt-btn-outline { background: transparent; color: var(--kt-navy); border-color: var(--kt-navy); }
.kt-btn-outline:hover { background: var(--kt-navy); color: var(--kt-cream); }

.kt-btn-lg { padding: 15px 32px; font-size: 14px; }

/* ── Mobile nav ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .kt-nav-collapse {
    margin-left: 0;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--kt-border);
  }
  .kt-nav-links { flex-direction: column; gap: 2px; margin-bottom: 20px; }
  .kt-nav-links .nav-item { width: 100%; }
  .kt-nav-link { display: block !important; padding: 14px 16px !important; font-size: 15px; }
  .kt-nav-link.active { background: var(--kt-gold-light) !important; }
  .kt-nav-link.active::after { display: none; }
  .kt-nav-actions { flex-direction: column; gap: 10px; margin-left: 0; width: 100%; }
  .kt-nav-actions .kt-btn-primary, .kt-nav-actions .kt-btn-ghost { width: 100%; padding: 14px 24px; }
}

/* ── Hero ────────────────────────────────────────────────── */
.kt-hero {
  position: relative;
  min-height: 88vh;
  background: var(--kt-cream);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 0;
}
.kt-hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 85% 15%, rgba(184,147,90,.10) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(10,37,64,.06) 0%, transparent 50%);
  pointer-events: none;
}
.kt-hero-content { position: relative; z-index: 2; }
.kt-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(44px, 7vw, 78px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--kt-navy);
  margin-bottom: 28px;
}
.kt-hero-title em { font-style: italic; color: var(--kt-gold); font-weight: 600; }
.kt-hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--kt-text-muted);
  max-width: 540px;
  margin-bottom: 40px;
}
.kt-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }

.kt-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 520px;
  padding-top: 36px;
  border-top: 1px solid var(--kt-border);
}
.kt-stat-val {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--kt-navy);
  margin-bottom: 6px;
  line-height: 1;
}
.kt-stat-val-sm { font-size: 15px; color: var(--kt-gold); font-weight: 600; vertical-align: super; margin-left: 3px; }
.kt-stat-lbl {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--kt-text-muted);
}

.kt-hero-visual { position: relative; z-index: 1; }
.kt-hero-image-frame {
  position: relative;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--kt-navy) 0%, var(--kt-navy-light) 100%);
  border-radius: var(--md-shape-lg);
  overflow: hidden;
  box-shadow: var(--md-elevation-5);
}
.kt-hero-image-inner {
  position: absolute;
  inset: 24px;
  background:
    linear-gradient(135deg, rgba(10,37,64,.4) 0%, rgba(30,73,118,.2) 100%),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 500"><rect fill="%230A2540" width="400" height="500"/><circle cx="200" cy="250" r="120" fill="%23B8935A" opacity="0.15"/><path d="M100 350 Q200 320 300 350 L300 400 Q200 380 100 400 Z" fill="%23B8935A" opacity="0.3"/></svg>');
  background-size: cover;
  background-position: center;
  border-radius: var(--md-shape-md);
}
.kt-hero-accent {
  position: absolute;
  width: 120px; height: 120px;
  border: 2px solid var(--kt-gold);
  border-radius: var(--md-shape-md);
  bottom: -24px; right: -24px;
  z-index: -1;
}

.kt-hero-badge-card {
  position: absolute;
  background: var(--md-sys-color-surface);
  padding: 20px 22px;
  border-radius: var(--md-shape-md);
  box-shadow: var(--md-elevation-4);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 260px;
  transition: transform var(--md-motion-medium), box-shadow var(--md-motion-medium);
}
.kt-hero-badge-card:hover { transform: translateY(-4px); box-shadow: var(--md-elevation-5); }
.kt-hbc-tl { top: 32px; left: -24px; }
.kt-hbc-br { bottom: 56px; right: -24px; }
.kt-hbc-icon {
  width: 48px; height: 48px;
  background: var(--kt-gold-light);
  border-radius: var(--md-shape-full);
  display: flex; align-items: center; justify-content: center;
  color: var(--kt-gold-deep);
  font-size: 20px;
  flex-shrink: 0;
}
.kt-hbc-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--kt-text-muted);
  display: block;
  margin-bottom: 4px;
}
.kt-hbc-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--kt-navy);
}

/* ── Sections ────────────────────────────────────────────── */
.kt-section    { padding: 100px 0; }
.kt-section-sm { padding: 70px 0; }
.kt-bg-cream   { background: var(--kt-cream); }
.kt-bg-navy    { background: var(--kt-navy); color: var(--kt-cream); }
.kt-bg-navy h1, .kt-bg-navy h2, .kt-bg-navy h3, .kt-bg-navy h4 { color: var(--kt-cream); }

.kt-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4.8vw, 54px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
  color: var(--kt-navy);
}
.kt-section-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--kt-text-muted);
  max-width: 600px;
}
.kt-center { text-align: center; }
.kt-center .kt-eyebrow { justify-content: center; }
.kt-center .kt-eyebrow::after {
  content: '';
  width: 28px; height: 2px;
  background: var(--kt-gold);
  border-radius: var(--md-shape-full);
}
.kt-center .kt-section-sub { margin-inline: auto; }

/* ── Service cards (elevated) ────────────────────────────── */
.kt-services-grid { margin-top: 60px; }
.kt-service-card {
  position: relative;
  background: var(--md-sys-color-surface);
  padding: 40px 32px;
  border-radius: var(--md-shape-lg);
  height: 100%;
  box-shadow: var(--md-elevation-1);
  transition: box-shadow var(--md-motion-medium), transform var(--md-motion-medium);
  overflow: hidden;
}
.kt-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--kt-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--md-motion-emphasized);
}
.kt-service-card:hover {
  box-shadow: var(--md-elevation-3);
  transform: translateY(-4px);
}
.kt-service-card:hover::before { transform: scaleX(1); }

.kt-service-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--kt-gold-deep);
  background: var(--kt-gold-light);
  border-radius: var(--md-shape-full);
  margin-bottom: 24px;
}
.kt-service-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--kt-navy);
  margin-bottom: 14px;
}
.kt-service-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--kt-text-muted);
  margin-bottom: 20px;
}
.kt-service-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--kt-navy);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap var(--md-motion-medium), color var(--md-motion-short);
}
.kt-service-link:hover { color: var(--kt-gold-deep); gap: 16px; }

/* ── Approach list ───────────────────────────────────────── */
.kt-approach-item {
  display: flex;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--kt-border);
}
.kt-approach-item:last-child { border-bottom: none; }
.kt-approach-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 52px;
  font-style: italic;
  font-weight: 600;
  color: var(--kt-gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
}
.kt-approach-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--kt-navy);
  margin-bottom: 12px;
}
.kt-approach-desc { font-size: 15px; line-height: 1.75; color: var(--kt-text-muted); max-width: 580px; }

/* ── Testimonials ────────────────────────────────────────── */
.kt-testimonial-card {
  background: var(--md-sys-color-surface);
  padding: 40px 36px;
  border-radius: var(--md-shape-lg);
  box-shadow: var(--md-elevation-1);
  height: 100%;
  transition: box-shadow var(--md-motion-medium), transform var(--md-motion-medium);
}
.kt-testimonial-card:hover { box-shadow: var(--md-elevation-3); transform: translateY(-4px); }
.kt-quote-mark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 80px;
  line-height: 1;
  color: var(--kt-gold);
  margin-bottom: -16px;
  font-weight: 700;
}
.kt-quote-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  line-height: 1.5;
  color: var(--kt-navy);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 28px;
}
.kt-quote-author { display: flex; align-items: center; gap: 14px; }
.kt-author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--kt-navy);
  color: var(--kt-gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  flex-shrink: 0;
}
.kt-author-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--kt-navy);
  display: block;
}
.kt-author-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px;
  color: var(--kt-text-muted);
}

/* ── Elegant cards ───────────────────────────────────────── */
.kt-elegant-card {
  background: var(--md-sys-color-surface);
  padding: 32px 28px;
  border-radius: var(--md-shape-lg);
  box-shadow: var(--md-elevation-1);
  height: 100%;
  transition: box-shadow var(--md-motion-medium);
}
.kt-elegant-card:hover { box-shadow: var(--md-elevation-3); }
.kt-ec-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--kt-navy);
  margin-bottom: 12px;
}
.kt-ec-meta { font-size: 14px; line-height: 1.7; color: var(--kt-text-muted); }

/* ── CTA band ────────────────────────────────────────────── */
.kt-cta-band {
  background: var(--kt-navy);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.kt-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(184,147,90,.12) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(184,147,90,.08) 0%, transparent 50%);
}
.kt-cta-band > .container { position: relative; z-index: 1; }
.kt-cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(34px, 4.8vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--kt-cream);
  margin-bottom: 20px;
  letter-spacing: -0.015em;
}
.kt-cta-title em { color: var(--kt-gold); font-style: italic; }
.kt-cta-desc {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,.78);
  margin-bottom: 36px;
  max-width: 580px;
}

/* ── Page hero ───────────────────────────────────────────── */
.kt-page-hero {
  background: var(--kt-navy);
  color: var(--kt-cream);
  padding: 120px 0 90px;
  position: relative;
  overflow: hidden;
}
.kt-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(184,147,90,.14) 0%, transparent 50%);
}
.kt-page-hero > .container { position: relative; z-index: 1; }
.kt-breadcrumb {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 22px;
}
.kt-breadcrumb a { color: rgba(255,255,255,.55); }
.kt-breadcrumb a:hover { color: var(--kt-gold); }
.kt-breadcrumb span { margin: 0 10px; }
.kt-page-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--kt-cream);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.kt-page-hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,.78);
  max-width: 620px;
}

/* ── Timeline ────────────────────────────────────────────── */
.kt-timeline { position: relative; padding-left: 32px; margin-top: 40px; }
.kt-timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--kt-gold-light);
  border-radius: var(--md-shape-full);
}
.kt-timeline-item { position: relative; padding-bottom: 32px; }
.kt-timeline-item::before {
  content: '';
  position: absolute;
  left: -28px; top: 10px;
  width: 10px; height: 10px;
  background: var(--kt-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--kt-cream);
}
.kt-tl-year {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--kt-gold-deep);
  display: block;
  margin-bottom: 6px;
}
.kt-tl-text { font-size: 14.5px; line-height: 1.7; color: var(--kt-text); }

/* ── Value blocks ────────────────────────────────────────── */
.kt-value-block {
  padding: 40px 32px;
  background: var(--md-sys-color-surface);
  border-radius: var(--md-shape-lg);
  box-shadow: var(--md-elevation-1);
  height: 100%;
  transition: box-shadow var(--md-motion-medium), transform var(--md-motion-medium);
}
.kt-value-block:hover { box-shadow: var(--md-elevation-3); transform: translateY(-3px); }
.kt-value-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 44px;
  font-style: italic;
  color: var(--kt-gold);
  display: block;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1;
}
.kt-value-block h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--kt-navy);
  margin-bottom: 14px;
}
.kt-value-block p { font-size: 14.5px; line-height: 1.75; color: var(--kt-text-muted); margin: 0; }

/* ── Team ────────────────────────────────────────────────── */
.kt-team-member { text-align: left; }
.kt-team-photo {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--kt-navy) 0%, var(--kt-navy-light) 100%);
  border-radius: var(--md-shape-lg);
  margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center;
  color: var(--kt-gold);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 80px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: transform var(--md-motion-emphasized), box-shadow var(--md-motion-emphasized);
  box-shadow: var(--md-elevation-2);
}
.kt-team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,37,64,.4) 0%, transparent 50%);
}
.kt-team-member:hover .kt-team-photo { transform: translateY(-6px); box-shadow: var(--md-elevation-4); }
.kt-team-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--kt-navy);
  margin-bottom: 4px;
}
.kt-team-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--kt-gold-deep);
  display: block;
  margin-bottom: 14px;
}
.kt-team-bio { font-size: 14px; line-height: 1.75; color: var(--kt-text-muted); }

/* ── Route table ─────────────────────────────────────────── */
.kt-route-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--md-sys-color-surface);
  border-radius: var(--md-shape-lg);
  overflow: hidden;
  box-shadow: var(--md-elevation-1);
}
.kt-route-table thead { background: var(--kt-navy); }
.kt-route-table th {
  padding: 18px 24px;
  color: var(--kt-cream);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: left;
}
.kt-route-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--kt-border);
  font-size: 14.5px;
  vertical-align: middle;
}
.kt-route-table tbody tr:last-child td { border-bottom: none; }
.kt-route-table tbody tr { transition: background var(--md-motion-short); }
.kt-route-table tbody tr:hover { background: var(--kt-cream-deep); }
.kt-rt-route {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--kt-navy);
}

.kt-status-pill {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--md-shape-full);
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.kt-sp-active { background: rgba(45,122,78,.12); color: var(--kt-success); }
.kt-sp-soon   { background: var(--kt-gold-light); color: var(--kt-gold-deep); }

/* ── Fleet ───────────────────────────────────────────────── */
.kt-fleet-card {
  background: var(--md-sys-color-surface);
  border-radius: var(--md-shape-lg);
  padding: 36px 32px;
  height: 100%;
  box-shadow: var(--md-elevation-1);
  transition: box-shadow var(--md-motion-medium), transform var(--md-motion-medium);
}
.kt-fleet-card:hover { box-shadow: var(--md-elevation-3); transform: translateY(-3px); }
.kt-fleet-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--kt-border);
}
.kt-fleet-icon-big {
  width: 64px; height: 64px;
  background: var(--kt-gold-light);
  border-radius: var(--md-shape-full);
  display: flex; align-items: center; justify-content: center;
  color: var(--kt-navy);
  font-size: 26px;
}
.kt-fleet-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--kt-navy);
  margin-bottom: 4px;
}
.kt-fleet-cap {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kt-gold-deep);
}
.kt-fleet-features { list-style: none; }
.kt-fleet-features li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--kt-text);
  border-bottom: 1px solid var(--kt-border);
}
.kt-fleet-features li:last-child { border-bottom: none; }
.kt-fleet-features i { color: var(--kt-gold); font-size: 16px; }

/* ── Contact ─────────────────────────────────────────────── */
.kt-contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
@media (max-width: 991px) { .kt-contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.kt-contact-intro h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--kt-navy);
  margin-bottom: 16px;
}
.kt-contact-intro p { font-size: 15px; line-height: 1.7; color: var(--kt-text-muted); margin-bottom: 32px; }

.kt-contact-items { list-style: none; padding: 0; margin-bottom: 32px; }
.kt-contact-items li,
.kt-contact-items .kt-contact-item { padding: 20px 0; display: flex; gap: 18px; border-bottom: 1px solid var(--kt-border); }
.kt-contact-items li:last-child,
.kt-contact-items .kt-contact-item:last-child { border-bottom: none; }
.kt-ci-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--kt-gold-light);
  border-radius: var(--md-shape-full);
  display: flex; align-items: center; justify-content: center;
  color: var(--kt-gold-deep);
  font-size: 18px;
}
.kt-ci-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--kt-text-muted);
  margin-bottom: 4px;
  display: block;
}
.kt-ci-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--kt-text);
  line-height: 1.5;
}
.kt-ci-value a { color: var(--kt-text); }
.kt-ci-value a:hover { color: var(--kt-gold-deep); }

/* ── Form card ───────────────────────────────────────────── */
.kt-form-card {
  background: var(--md-sys-color-surface);
  border-radius: var(--md-shape-lg);
  padding: 48px;
  box-shadow: var(--md-elevation-2);
}
@media (max-width: 767px) { .kt-form-card { padding: 32px 24px; } }

.kt-field { margin-bottom: 22px; }
.kt-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kt-navy);
  margin-bottom: 10px;
}

.kt-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--md-sys-color-surface);
  border: 1px solid var(--kt-border);
  border-radius: var(--md-shape-sm);
  font-family: 'Montserrat', sans-serif;
  font-size: 14.5px;
  color: var(--kt-text);
  outline: none;
  transition: border-color var(--md-motion-short), box-shadow var(--md-motion-short);
}
.kt-input:hover { border-color: var(--kt-gold); }
.kt-input:focus { border-color: var(--kt-gold); box-shadow: 0 0 0 3px rgba(184,147,90,.15); }
.kt-input::placeholder { color: #A8ABB3; }
.kt-input-error { border-color: var(--kt-danger) !important; }
textarea.kt-input { resize: vertical; min-height: 120px; }

.kt-input-wrap { position: relative; }
.kt-input-wrap .kt-input { padding-right: 46px; }
.kt-eye-btn {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--kt-text-muted);
  cursor: pointer;
  padding: 8px;
  border-radius: var(--md-shape-full);
  transition: background var(--md-motion-short);
}
.kt-eye-btn:hover { background: var(--kt-gold-light); color: var(--kt-navy); }

.kt-field-error {
  display: block;
  font-size: 12.5px;
  color: var(--kt-danger);
  margin-top: 6px;
  font-weight: 500;
}

.kt-strength-bar {
  height: 4px;
  background: var(--kt-border);
  border-radius: var(--md-shape-full);
  overflow: hidden;
  margin-top: 10px;
}
.kt-strength-fill { height: 100%; width: 0; border-radius: inherit; transition: width var(--md-motion-medium), background var(--md-motion-medium); }
.kt-strength-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
}

.kt-check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--kt-text);
  cursor: pointer;
  line-height: 1.55;
}
.kt-check-label input[type=checkbox] { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--kt-gold); cursor: pointer; }
.kt-check-label a { color: var(--kt-gold-deep); text-decoration: underline; text-underline-offset: 2px; }

/* ── Alerts ──────────────────────────────────────────────── */
.kt-alert {
  padding: 16px 20px;
  border-radius: var(--md-shape-sm);
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.kt-alert i { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.kt-alert-success { background: #E8F5EE; color: #1B5E2E; border-left: 4px solid var(--kt-success); }
.kt-alert-danger  { background: #FFEEEE; color: #8B1515; border-left: 4px solid var(--kt-danger); }
.kt-alert-info    { background: #E7EFF9; color: var(--kt-navy); border-left: 4px solid var(--kt-navy); }
.kt-alert-warning { background: #FFF4E4; color: #6B4A1F; border-left: 4px solid var(--kt-gold); }

/* ── Auth ────────────────────────────────────────────────── */
.kt-auth-page {
  background: var(--kt-cream);
  min-height: 100vh;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.kt-auth-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(184,147,90,.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 90%, rgba(10,37,64,.05) 0%, transparent 50%);
  pointer-events: none;
}
.kt-auth-box {
  background: var(--md-sys-color-surface);
  border-radius: var(--md-shape-lg);
  overflow: hidden;
  box-shadow: var(--md-elevation-4);
  position: relative;
  z-index: 1;
}
.kt-auth-hero {
  background: var(--kt-navy);
  color: var(--kt-cream);
  padding: 52px 40px 48px;
  text-align: center;
  position: relative;
}
.kt-auth-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 56px; height: 3px;
  background: var(--kt-gold);
  border-radius: var(--md-shape-full);
}
.kt-auth-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--kt-cream);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.kt-auth-sub { font-size: 14.5px; color: rgba(255,255,255,.75); margin: 0; line-height: 1.55; }

.kt-auth-body { padding: 48px 40px; }
@media (max-width: 575px) { .kt-auth-hero, .kt-auth-body { padding: 36px 24px; } }

.kt-auth-divider { text-align: center; position: relative; margin: 28px 0; }
.kt-auth-divider::before {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: var(--kt-border);
}
.kt-auth-divider span {
  background: var(--md-sys-color-surface);
  padding: 0 18px;
  position: relative;
  color: var(--kt-text-muted);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.kt-auth-switch { text-align: center; color: var(--kt-text-muted); font-size: 14px; margin: 0; }
.kt-link-gold { color: var(--kt-gold-deep); font-weight: 600; }
.kt-link-gold:hover { color: var(--kt-gold); text-decoration: underline; text-underline-offset: 3px; }

.kt-demo-box {
  background: var(--kt-gold-light);
  border-radius: var(--md-shape-sm);
  padding: 18px 20px;
  margin-top: 28px;
  font-size: 13px;
  color: var(--kt-text-muted);
  line-height: 1.7;
}
.kt-demo-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--kt-navy);
  margin-bottom: 10px;
}
.kt-demo-creds code {
  color: var(--kt-gold-deep);
  font-family: 'SF Mono', Consolas, monospace;
  font-size: 12.5px;
  background: rgba(255,255,255,.6);
  padding: 1px 5px;
  border-radius: 3px;
}

.kt-info-callout {
  background: var(--kt-gold-light);
  border-radius: var(--md-shape-sm);
  padding: 14px 18px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--kt-gold-deep);
  margin-top: 20px;
}

/* ── Footer ──────────────────────────────────────────────── */
.kt-footer {
  background: var(--kt-navy-dark);
  color: rgba(255,255,255,.7);
  padding: 80px 0 30px;
}
.kt-footer-brand { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.kt-footer-mark  { color: var(--kt-gold); }
.kt-footer-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--kt-cream);
  line-height: 1;
}
.kt-footer-est {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--kt-gold);
  margin-top: 5px;
}
.kt-footer-desc { font-size: 14px; line-height: 1.8; max-width: 380px; margin-bottom: 24px; color: rgba(255,255,255,.65); }

.kt-footer-socials { display: flex; gap: 10px; }
.kt-footer-socials a {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06);
  border-radius: var(--md-shape-full);
  color: rgba(255,255,255,.6);
  font-size: 15px;
  transition: background var(--md-motion-short), color var(--md-motion-short), transform var(--md-motion-short);
}
.kt-footer-socials a:hover { background: var(--kt-gold); color: #fff; transform: translateY(-2px); }

.kt-footer-h {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--kt-cream);
  margin-bottom: 22px;
}
.kt-footer-links { list-style: none; padding: 0; }
.kt-footer-links li { margin-bottom: 12px; }
.kt-footer-links a {
  color: rgba(255,255,255,.6);
  font-size: 14px;
  transition: color var(--md-motion-short), padding var(--md-motion-short);
}
.kt-footer-links a:hover { color: var(--kt-gold); padding-left: 6px; }

.kt-footer-contact { list-style: none; padding: 0; }
.kt-footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,.65);
}
.kt-footer-contact i { color: var(--kt-gold); font-size: 16px; margin-top: 3px; flex-shrink: 0; }
.kt-footer-contact a { color: rgba(255,255,255,.65); }
.kt-footer-contact a:hover { color: var(--kt-gold); }

.kt-footer-bottom {
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 12.5px;
  color: rgba(255,255,255,.4);
}
.kt-footer-legal a { color: rgba(255,255,255,.4); }
.kt-footer-legal a:hover { color: var(--kt-gold); }

/* ── Install banner ──────────────────────────────────────── */
.kt-install-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--kt-navy);
  border-top: 2px solid var(--kt-gold);
  padding: 14px 0;
  z-index: 1000;
  color: var(--kt-cream);
  font-size: 14px;
  box-shadow: var(--md-elevation-4);
}
.kt-install-bar i { color: var(--kt-gold); font-size: 18px; }
.kt-install-x {
  background: none; border: none;
  color: rgba(255,255,255,.5);
  cursor: pointer;
  font-size: 18px;
  padding: 6px 10px;
  border-radius: var(--md-shape-full);
  transition: background var(--md-motion-short);
}
.kt-install-x:hover { background: rgba(255,255,255,.1); }

/* ── Utilities ───────────────────────────────────────────── */
.kt-divider {
  width: 48px;
  height: 2px;
  background: var(--kt-gold);
  border-radius: var(--md-shape-full);
  margin: 24px 0;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991px) {
  .kt-section { padding: 72px 0; }
  .kt-hero { min-height: auto; padding: 56px 0; }
  .kt-hero-visual { display: none; }
  .kt-hero-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .kt-contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 575px) {
  .kt-brand-name { font-size: 22px; }
  .kt-brand-tag  { font-size: 9px; letter-spacing: 0.25em; }
  .kt-hero-stats { grid-template-columns: 1fr; gap: 20px; }
  .kt-approach-item { flex-direction: column; gap: 14px; }
  .kt-approach-num { font-size: 42px; }
  .kt-route-table th, .kt-route-table td { padding: 14px 16px; }
}

/* ============================================================
   PUBLIC PAGES — MISSING CLASSES  v3.6
   About · Services · Contact
   ============================================================ */

/* ── Shared utilities ────────────────────────────────────── */
.kt-bg-light    { background: var(--md-sys-color-surface-container-low); }
.kt-body-text   { font-size: 15.5px; line-height: 1.8; color: var(--kt-text-muted); margin-bottom: 18px; }
.kt-link-blue   { color: var(--kt-navy); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.kt-link-blue:hover { color: var(--kt-gold-deep); }

/* ── Section header block (badge + title centred) ─────────── */
.kt-section-header { margin-bottom: 48px; }
.kt-section-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--kt-gold-deep);
  background: var(--kt-gold-light);
  padding: 5px 14px;
  border-radius: var(--md-shape-full);
  margin-bottom: 16px;
}

/* ── Stat pills row (About page) ──────────────────────────── */
.kt-stat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.kt-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--kt-gold-light);
  border-radius: var(--md-shape-md);
  padding: 14px 20px;
  min-width: 88px;
  text-align: center;
}
.kt-pill strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--kt-navy);
  line-height: 1;
}
.kt-pill span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: var(--kt-gold-deep);
  margin-top: 4px;
}

/* ── About visual block (bus card + timeline) ─────────────── */
.kt-about-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.kt-av-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--kt-navy);
  color: #fff;
  border-radius: var(--md-shape-lg);
  padding: 20px 24px;
  box-shadow: var(--md-elevation-2);
}
.kt-av-card i { font-size: 36px; color: var(--kt-gold); flex-shrink: 0; }
.kt-av-card strong { display: block; font-family: 'Playfair Display', Georgia, serif; font-size: 17px; font-weight: 700; }
.kt-av-card span   { display: block; font-size: 12px; color: rgba(255,255,255,.65); margin-top: 2px; }
.kt-av-main { /* inherits kt-av-card */ }

.kt-av-timeline {
  background: var(--md-sys-color-surface);
  border-radius: var(--md-shape-lg);
  padding: 20px 24px;
  box-shadow: var(--md-elevation-1);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.kt-timeline-item {
  display: grid;
  grid-template-columns: 48px 16px 1fr;
  align-items: flex-start;
  gap: 0 12px;
  padding: 10px 0;
  position: relative;
}
.kt-timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 55px;
  top: 30px;
  bottom: -10px;
  width: 2px;
  background: var(--kt-gold-light);
}
.kt-tl-year {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--kt-gold-deep);
  text-align: right;
  padding-top: 2px;
}
.kt-tl-dot {
  width: 12px; height: 12px;
  background: var(--kt-gold);
  border-radius: 50%;
  margin-top: 4px;
  flex-shrink: 0;
}
.kt-tl-text {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--kt-text-muted);
  padding-top: 2px;
}

/* ── Value cards (Mission / Vision / Values) ──────────────── */
.kt-value-card {
  background: var(--md-sys-color-surface);
  border-radius: var(--md-shape-lg);
  padding: 32px 28px;
  height: 100%;
  box-shadow: var(--md-elevation-1);
  transition: box-shadow var(--md-motion-medium), transform var(--md-motion-medium);
}
.kt-value-card:hover { box-shadow: var(--md-elevation-3); transform: translateY(-3px); }
.kt-value-card h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--kt-navy);
  margin: 16px 0 10px;
}
.kt-value-card p { font-size: 14.5px; line-height: 1.75; color: var(--kt-text-muted); margin: 0; }
.kt-value-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--md-shape-md);
  font-size: 22px;
}

/* ── Team cards ───────────────────────────────────────────── */
.kt-team-card {
  background: var(--md-sys-color-surface);
  border-radius: var(--md-shape-lg);
  padding: 28px 24px;
  text-align: center;
  height: 100%;
  box-shadow: var(--md-elevation-1);
  transition: box-shadow var(--md-motion-medium), transform var(--md-motion-medium);
}
.kt-team-card:hover { box-shadow: var(--md-elevation-3); transform: translateY(-4px); }
.kt-team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 16px;
  box-shadow: var(--md-elevation-2);
}

/* ── CTA section ──────────────────────────────────────────── */
.kt-cta-section {
  background: var(--kt-navy);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.kt-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(184,147,90,.14) 0%, transparent 50%),
              radial-gradient(circle at 90% 80%, rgba(184,147,90,.08) 0%, transparent 50%);
}
.kt-cta-inner { position: relative; z-index: 1; }
.kt-cta-sub {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
  max-width: 580px;
  margin-inline: auto;
}
/* Override cta-title colour inside cta-section */
.kt-cta-section .kt-cta-title { color: var(--kt-cream); }

/* CTA Buttons */
.kt-btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--kt-gold);
  color: var(--kt-navy) !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--md-shape-full);
  text-decoration: none !important;
  transition: background var(--md-motion-short), transform var(--md-motion-short), box-shadow var(--md-motion-short);
  box-shadow: 0 4px 20px rgba(184,147,90,.45);
}
.kt-btn-cta-primary:hover {
  background: var(--kt-gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184,147,90,.55);
}
.kt-btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  background: transparent;
  color: #fff !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 2px solid rgba(255,255,255,.45);
  border-radius: var(--md-shape-full);
  text-decoration: none !important;
  transition: border-color var(--md-motion-short), background var(--md-motion-short), transform var(--md-motion-short);
}
.kt-btn-cta-outline:hover {
  border-color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}

/* ── Services page: sc- classes ───────────────────────────── */
.kt-sc-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--md-shape-full);
  font-size: 24px;
  color: #fff;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.kt-sc-body h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--kt-navy);
  margin-bottom: 10px;
}
.kt-sc-body p { font-size: 14.5px; line-height: 1.75; color: var(--kt-text-muted); margin-bottom: 16px; }
.kt-sc-features {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.kt-sc-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--kt-text-muted);
}
.kt-sc-features i { color: var(--kt-success); font-size: 14px; margin-top: 2px; flex-shrink: 0; }

/* ── Route table badges ───────────────────────────────────── */
.kt-route-table-wrap {
  border-radius: var(--md-shape-lg);
  overflow: hidden;
  box-shadow: var(--md-elevation-2);
}
.kt-badge-pill {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--md-shape-full);
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.kt-bp-green { background: rgba(45,122,78,.12); color: var(--kt-success); }
.kt-bp-amber { background: var(--kt-gold-light); color: var(--kt-gold-deep); }

/* ── Fleet: info + specs ──────────────────────────────────── */
.kt-fleet-icon { font-size: 48px; margin-bottom: 16px; }
.kt-fleet-info h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--kt-navy);
  margin-bottom: 8px;
}
.kt-fleet-info p { font-size: 14px; line-height: 1.7; color: var(--kt-text-muted); margin-bottom: 14px; }
.kt-fleet-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.kt-fleet-specs span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--kt-cream-deep);
  padding: 5px 12px;
  border-radius: var(--md-shape-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--kt-navy);
}

/* ── Guarantee items ──────────────────────────────────────── */
.kt-guarantee-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-radius: var(--md-shape-md);
  padding: 20px;
  height: 100%;
}
.kt-guarantee-item i { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.kt-guarantee-item strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.kt-guarantee-item p { font-size: 13px; line-height: 1.6; margin: 0; }

/* ── Contact page: card + heading + social ────────────────── */
.kt-contact-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--kt-navy);
  margin-bottom: 8px;
}
.kt-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--kt-border);
}
.kt-contact-item:last-child { border-bottom: none; }
.kt-contact-item .kt-ci-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--kt-gold-light);
  border-radius: var(--md-shape-full);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--kt-gold-deep);
}
.kt-contact-item strong { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--kt-navy); margin-bottom: 2px; }
.kt-contact-item a, .kt-contact-item span { display: block; font-size: 14px; color: var(--kt-text-muted); }
.kt-contact-item a:hover { color: var(--kt-navy); }

.kt-contact-card {
  background: var(--md-sys-color-surface);
  border-radius: var(--md-shape-lg);
  padding: 40px 40px;
  box-shadow: var(--md-elevation-2);
}

.kt-contact-social { display: flex; gap: 10px; }
.kt-social-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--kt-navy);
  color: #fff !important;
  border-radius: 50%;
  font-size: 16px;
  text-decoration: none !important;
  transition: background var(--md-motion-short), transform var(--md-motion-short);
}
.kt-social-btn:hover { background: var(--kt-gold-deep); transform: translateY(-2px); }

/* Contact form submit button */
.kt-btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--kt-navy);
  color: #fff !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  border-radius: var(--md-shape-full);
  cursor: pointer;
  text-decoration: none !important;
  transition: background var(--md-motion-short), transform var(--md-motion-short), box-shadow var(--md-motion-short);
  box-shadow: 0 4px 16px rgba(10,37,64,.25);
}
.kt-btn-submit:hover {
  background: var(--kt-navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,37,64,.35);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 991px) {
  .kt-cta-section { padding: 72px 0; }
  .kt-contact-card { padding: 28px 24px; }
}
@media (max-width: 768px) {
  .kt-av-timeline .kt-timeline-item { grid-template-columns: 42px 14px 1fr; }
  .kt-stat-pills { gap: 10px; }
  .kt-pill { padding: 10px 16px; min-width: 76px; }
}
