/* =============================================================
   ek-moobli-transport.css
   Page-specific styles for /kolimine/moobli-transport/
   All shared header/footer/button/form styles live in ek-shared.css
   ============================================================= */

/* ── Namespace prefix for this page: "mt" ── */

/* ------------------------------------------------------------------
   VAN SCROLL ANIMATION
   ------------------------------------------------------------------ */
.ks-van-track {
  position: fixed;
  right: 1.5rem;
  top: 0;
  width: 3.5rem;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  display: none;
}
@media (min-width: 1100px) {
  .ks-van-track {
    display: block;
  }
}
.ks-van-track__road {
  position: absolute;
  top: 4rem;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: repeating-linear-gradient(to bottom, #b3b3b3 0, #b3b3b3 12px, transparent 12px, transparent 22px);
}
.ks-van-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 4rem;
  width: 2.75rem;
  filter: drop-shadow(0 4px 8px rgba(52,102,170,.25));
  will-change: top;
}
.ks-van-icon svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ------------------------------------------------------------------
   VAN TRACK (shared decorative element — same as kolimine page)
   ------------------------------------------------------------------ */
.mt-van-track {
  position: relative;
  height: 3px;
  background: #0F172A;
  overflow: visible;
}
.mt-van-track__road {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg,#3466aa 0 18px,transparent 18px 36px);
  opacity: .35;
}
.mt-van-icon {
  position: absolute;
  top: 50%;
  left: -88px;
  transform: translateY(-50%);
  animation: mt-van-drive 14s linear infinite;
}
@keyframes mt-van-drive {
  from { left: -88px; }
  to   { left: 100%; }
}

/* ------------------------------------------------------------------
   LAYOUT WRAPPER
   ------------------------------------------------------------------ */
.mt { background: #fff; }
.mt-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding-inline: 1.5rem;
}

/* ------------------------------------------------------------------
   TYPOGRAPHY HELPERS
   ------------------------------------------------------------------ */
.mt-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #3466aa;
  margin-bottom: .6rem;
}
.mt-h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.04em;
  color: #0F172A;
  margin: 0 0 1.25rem;
}
.mt-h1 .mt-h1__accent { color: #3466aa; }
.mt-h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -.035em;
  color: #0F172A;
  margin: 0 0 .75rem;
}
.mt-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #334155;
  margin: 0 0 1.5rem;
}
.mt-text {
  font-size: .95rem;
  line-height: 1.65;
  color: #475569;
  margin: 0 0 1rem;
}

/* ------------------------------------------------------------------
   BUTTONS (page-level, extend shared .ks-btn)
   ------------------------------------------------------------------ */
.mt-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  transition: background .18s, color .18s, box-shadow .18s;
  border: none;
}
.mt-btn--amber {
  background: #3466aa;
  color: #fff;
  box-shadow: 0 8px 24px rgba(52,102,170,.28);
}
.mt-btn--amber:hover { background: #2d5a96; }
.mt-btn--navy {
  background: #0F172A;
  color: #fff;
}
.mt-btn--navy:hover { background: #1e293b; }
.mt-btn--ghost {
  background: transparent;
  color: #0F172A;
  border: 1.5px solid #CBD5E1;
}
.mt-btn--ghost:hover { border-color: #0F172A; background: #f8fafc; }
.mt-btn--full { width: 100%; justify-content: center; }
.mt-btn--lg { padding: .9rem 2.25rem; font-size: .92rem; }

/* ------------------------------------------------------------------
   HERO
   ------------------------------------------------------------------ */
.mt-hero {
  background: #0F172A;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.mt-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(52,102,170,.12) 0%, transparent 70%);
  pointer-events: none;
}
.mt-hero__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .mt-hero__grid { grid-template-columns: 1fr 420px; }
}

/* Breadcrumb */
.mt-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.25rem;
}
.mt-hero__breadcrumb a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
}
.mt-hero__breadcrumb a:hover { color: #3466aa; }
.mt-hero__breadcrumb svg { opacity: .5; }

/* Rating badge */
.mt-hero__rating-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(52,102,170,.12);
  border: 1px solid rgba(52,102,170,.3);
  border-radius: 999px;
  padding: .35rem .9rem;
  margin-bottom: 1.5rem;
}
.mt-hero__rating-stars { display: flex; gap: 2px; color: #3466aa; }
.mt-hero__rating-stars svg { width: 13px; height: 13px; }
.mt-hero__rating-text {
  font-size: .82rem;
  font-weight: 700;
  color: #3466aa;
}
.mt-hero__rating-sep {
  width: 1px;
  height: 12px;
  background: rgba(52,102,170,.35);
}
.mt-hero__rating-source {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
}

/* Headline */
.mt-hero .mt-h1 { color: #fff; }
.mt-hero .mt-lead { color: rgba(255,255,255,.75); }

/* Offers list */
.mt-hero__offers {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  gap: .55rem;
}
.mt-hero__offer-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .93rem;
  color: rgba(255,255,255,.85);
}
.mt-hero__offer-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(52,102,170,.18);
  color: #3466aa;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mt-hero__offer-icon svg { width: 11px; height: 11px; }

/* CTA row */
.mt-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: .5rem;
}

/* Hero form (reuse ks-hero-form pattern) */
.mt-hero-form {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.32);
}
.mt-hero-form__header {
  background: #3466aa;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: .85rem;
}
.mt-hero-form__header-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0,0,0,.15);
  color: #0F172A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mt-hero-form__header-icon svg { width: 18px; height: 18px; }
.mt-hero-form__title {
  font-size: 1rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 .1rem;
}
.mt-hero-form__sub {
  font-size: .8rem;
  color: rgba(15,23,42,.65);
  margin: 0;
}
.mt-hero-form__body { padding: 1.5rem; }

/* ------------------------------------------------------------------
   STATS BAR
   ------------------------------------------------------------------ */
.mt-stats {
  background: #fff;
  border-bottom: 1px solid #E2E8F0;
}
.mt-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (min-width: 700px) {
  .mt-stats__grid { grid-template-columns: repeat(4, 1fr); }
}
.mt-stat {
  padding: 2rem 1.5rem;
  border-right: 1px solid #E2E8F0;
  text-align: center;
  position: relative;
}
.mt-stat:last-child { border-right: none; }
.mt-stat:nth-child(2) { border-right: 1px solid #E2E8F0; }
@media (max-width: 699px) {
  .mt-stat:nth-child(even) { border-right: none; }
  .mt-stat:nth-child(1),
  .mt-stat:nth-child(2) { border-bottom: 1px solid #E2E8F0; }
}
.mt-stat__icon {
  width: 36px;
  height: 36px;
  margin: 0 auto .6rem;
  color: #3466aa;
}
.mt-stat__icon svg { width: 100%; height: 100%; }
.mt-stat__number {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: #0F172A;
  display: block;
  margin: 0 0 .15rem;
}
.mt-stat__label {
  font-size: .82rem;
  font-weight: 700;
  color: #0F172A;
  display: block;
}
.mt-stat__sub {
  font-size: .74rem;
  color: #94A3B8;
  display: block;
  margin-top: .1rem;
}

/* ------------------------------------------------------------------
   SECTION HEADERS (shared pattern)
   ------------------------------------------------------------------ */
.mt-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.mt-section-header--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ------------------------------------------------------------------
   WHY US
   ------------------------------------------------------------------ */
.mt-why-section {
  padding: 5rem 0;
  background: #fff;
}
.mt-why__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .mt-why__list { grid-template-columns: repeat(2, 1fr); }
}
.mt-why-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: #F8FAFC;
  border-radius: 10px;
  border: 1px solid #E2E8F0;
}
.mt-why-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #0F172A;
  color: #3466aa;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mt-why-item__icon svg { width: 18px; height: 18px; }
.mt-why-item__title {
  font-size: .92rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 .3rem;
}
.mt-why-item__text {
  font-size: .86rem;
  line-height: 1.55;
  color: #475569;
  margin: 0;
}

/* ------------------------------------------------------------------
   PROCESS STEPS
   ------------------------------------------------------------------ */
.mt-process-section {
  padding: 5rem 0;
  background: #F8FAFC;
}
.mt-process__grid {
  display: grid;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: none;
}
@media (min-width: 700px) {
  .mt-process__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .mt-process__grid { grid-template-columns: repeat(5, 1fr); }
}
.mt-process-step {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 1.75rem 1.25rem;
  position: relative;
}
.mt-process-step--highlight {
  background: #0F172A;
  border-color: #0F172A;
}
.mt-process-step--highlight .mt-process-step__title,
.mt-process-step--highlight .mt-process-step__text { color: #fff; }
.mt-process-step__watermark {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -.06em;
  color: #E2E8F0;
  line-height: 1;
  margin-bottom: .75rem;
}
.mt-process-step--highlight .mt-process-step__watermark { color: rgba(255,255,255,.15); }
.mt-process-step__title {
  font-size: .92rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 .5rem;
}
.mt-process-step__text {
  font-size: .84rem;
  line-height: 1.55;
  color: #475569;
  margin: 0;
}

/* ------------------------------------------------------------------
   PRICING INFO
   ------------------------------------------------------------------ */
.mt-pricing-section {
  padding: 5rem 0;
  background: #0F172A;
}
.mt-pricing-section .mt-h2 { color: #fff; }
.mt-pricing-section .mt-tag { color: #3466aa; }
.mt-pricing__grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .mt-pricing__grid { grid-template-columns: 1fr 1fr; }
}
.mt-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: .75rem;
}
.mt-info-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}
.mt-info-item__dot {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(52,102,170,.15);
  color: #3466aa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .15rem;
}
.mt-info-item__dot svg { width: 10px; height: 10px; }
.mt-info-item__text {
  font-size: .9rem;
  line-height: 1.6;
  color: rgba(255,255,255,.75);
  margin: 0;
}
.mt-pricing-note-title {
  font-size: .9rem;
  font-weight: 700;
  color: #3466aa;
  margin: 0 0 .5rem;
}
.mt-pricing__extra-note { color: rgba(255,255,255,.5) !important; }

/* Pricing CTA box */
.mt-quote-box {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 2rem;
}
.mt-quote-box__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 .4rem;
}
.mt-quote-box__subtitle {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin: 0 0 1.5rem;
}

/* ------------------------------------------------------------------
   SERVICE DETAIL CARDS
   ------------------------------------------------------------------ */
.mt-details-section {
  padding: 5rem 0;
  background: #fff;
}
.mt-detail-grid {
  display: grid;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 700px) {
  .mt-detail-grid { grid-template-columns: repeat(2, 1fr); }
}
.mt-detail-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 1.5rem;
}
.mt-detail-card__top {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
}
.mt-detail-card__num {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: #3466aa;
  min-width: 2rem;
}
.mt-detail-card__title {
  font-size: .97rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0;
}
.mt-detail-card__text {
  font-size: .88rem;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

/* ------------------------------------------------------------------
   CTA STRIP (mid-page)
   ------------------------------------------------------------------ */
.mt-cta-strip {
  background: #3466aa;
  padding: 3.5rem 0;
}
.mt-cta-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.mt-cta-strip__eyebrow {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  margin-bottom: .4rem;
}
.mt-cta-strip__title {
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 .3rem;
  letter-spacing: -.03em;
}
.mt-cta-strip__text {
  font-size: .9rem;
  color: rgba(255,255,255,.72);
  margin: 0;
}
.mt-cta-strip__actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ------------------------------------------------------------------
   TESTIMONIALS
   ------------------------------------------------------------------ */
.mt-testimonials-section {
  padding: 5rem 0;
  background: #F8FAFC;
}
.mt-testimonials__grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 700px) {
  .mt-testimonials__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .mt-testimonials__grid { grid-template-columns: repeat(3, 1fr); }
}
.mt-testimonial-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mt-testimonial-card__stars {
  display: flex;
  gap: 3px;
  color: #3466aa;
}
.mt-testimonial-card__stars svg { width: 15px; height: 15px; }
.mt-testimonial-card__text {
  font-size: .93rem;
  line-height: 1.65;
  color: #334155;
  flex: 1;
  margin: 0;
  font-style: italic;
}
.mt-testimonial-card__text::before { content: '\201C'; }
.mt-testimonial-card__text::after  { content: '\201D'; }
.mt-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: .75rem;
  border-top: 1px solid #F1F5F9;
  padding-top: 1rem;
}
.mt-testimonial-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #0F172A;
  color: #3466aa;
  font-size: .75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mt-testimonial-card__name {
  font-size: .85rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 .1rem;
}
.mt-testimonial-card__date {
  font-size: .76rem;
  color: #94A3B8;
  margin: 0;
}

/* ------------------------------------------------------------------
   FAQ
   ------------------------------------------------------------------ */
.mt-faq-section {
  padding: 5rem 0;
  background: #fff;
}
.mt-faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 760px;
  display: grid;
  gap: .75rem;
}
.mt-faq-item {
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  overflow: hidden;
}
.mt-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
}
.mt-faq-btn:hover { background: #F8FAFC; }
.mt-faq-btn__q {
  font-size: .9rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.4;
}
.mt-faq-btn__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #F1F5F9;
  color: #64748B;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .22s;
}
.mt-faq-btn__icon svg { width: 14px; height: 14px; }
.mt-faq-item.is-open .mt-faq-btn__icon { transform: rotate(180deg); }
.mt-faq-item.is-open .mt-faq-btn { background: #F8FAFC; }
.mt-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.mt-faq-answer__inner {
  padding: 0 1.5rem 1.2rem;
  font-size: .88rem;
  line-height: 1.65;
  color: #475569;
}
.mt-faq-answer__inner p { margin: 0; }

/* ------------------------------------------------------------------
   QUOTE FORM SECTION
   ------------------------------------------------------------------ */
.mt-pricing-form-section {
  padding: 5rem 0;
  background: #F8FAFC;
}
.mt-pricing__grid2 {
  display: grid;
  gap: 3rem;
}
@media (min-width: 900px) {
  .mt-pricing__grid2 { grid-template-columns: 1fr 1fr; }
}

/* Form elements (mirrors ek-kolimine patterns) */
.mt-field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: .9rem; }
.mt-field label {
  font-size: .8rem;
  font-weight: 700;
  color: #0F172A;
  letter-spacing: .02em;
}
.mt-field input,
.mt-field select,
.mt-field textarea {
  width: 100%;
  padding: .7rem .9rem;
  border: 1.5px solid #CBD5E1;
  border-radius: 6px;
  font-size: .9rem;
  color: #0F172A;
  background: #fff;
  transition: border-color .18s;
  font-family: inherit;
}
.mt-field input:focus,
.mt-field select:focus,
.mt-field textarea:focus {
  outline: none;
  border-color: #3466aa;
  box-shadow: 0 0 0 3px rgba(52,102,170,.15);
}
.mt-field textarea { min-height: 90px; resize: vertical; }
.mt-field-row { display: grid; gap: .75rem; }
@media (min-width: 500px) { .mt-field-row { grid-template-columns: 1fr 1fr; } }
.mt-req { color: #EF4444; margin-left: .15rem; }
.mt-field__opt { font-size: .74rem; font-weight: 400; color: #94A3B8; }
.mt-form-error {
  display: none;
  font-size: .82rem;
  color: #EF4444;
  margin: .25rem 0 .5rem;
}
.mt-form-consent {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  color: #94A3B8;
  margin-top: .75rem;
}
.mt-form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.mt-form-success.is-visible { display: block; }
.mt-form-success__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #DCFCE7;
  color: #16A34A;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .75rem;
}
.mt-form-success__title { font-size: 1.05rem; font-weight: 700; color: #0F172A; margin: 0 0 .35rem; }
.mt-form-success__text  { font-size: .88rem; color: #475569; margin: 0; }

/* Quote request box wrapper */
.mt-quote-request-box {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 2rem;
}
.mt-quote-request-box__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 .3rem;
}
.mt-quote-request-box__text {
  font-size: .85rem;
  color: #64748B;
  margin: 0 0 1.5rem;
}

/* Pricing note */
.mt-pricing-note-title {
  font-size: .9rem;
  font-weight: 700;
  color: #0F172A;
  margin: 1.25rem 0 .4rem;
}
