
:root {
  --mmt-navy: #0b2d4d;
  --mmt-blue: #123b63;
  --mmt-cyan: #2aa5d6;
  --mmt-gold: #f1c232;
  --mmt-ink: #17212b;
  --mmt-muted: #5b6b7a;
  --mmt-soft: #f4f9fc;
  --mmt-line: #d9e8f2;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(11, 45, 77, .14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Calibri, Arial, sans-serif;
  color: var(--mmt-ink);
  background: #fff;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.top-strip {
  height: 8px;
  background: linear-gradient(90deg, var(--mmt-gold) 0 24%, var(--mmt-cyan) 24% 58%, var(--mmt-navy) 58%);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--mmt-line);
}
.container {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img { width: 214px; height: auto; }
.brand-text {
  display: none;
  font-weight: 800;
  color: var(--mmt-blue);
  letter-spacing: .02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 11px 14px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  color: var(--mmt-blue);
  transition: .2s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: var(--mmt-blue);
}
.menu-toggle {
  display: none;
  border: 1px solid var(--mmt-line);
  background: var(--white);
  color: var(--mmt-blue);
  border-radius: 12px;
  padding: 9px 12px;
  font-weight: 800;
}
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 22%, rgba(42,165,214,.22), transparent 28%),
    linear-gradient(135deg, #f7fbfe 0%, #ffffff 45%, #eef7fc 100%);
  padding: 78px 0 48px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto -140px -200px auto;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: rgba(241,194,50,.18);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 40px;
  align-items: center;
  position: relative;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mmt-blue);
  background: #eaf6fc;
  border: 1px solid #cceaf7;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
}
.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mmt-gold);
}
h1 {
  margin: 18px 0 18px;
  color: var(--mmt-navy);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}
.lead {
  font-size: 18px;
  color: #425568;
  max-width: 720px;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 14px;
  font-weight: 900;
  border: 1px solid transparent;
}
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--mmt-blue), var(--mmt-navy));
  box-shadow: 0 16px 32px rgba(11,45,77,.22);
}
.btn-secondary {
  color: var(--mmt-blue);
  background: var(--white);
  border-color: var(--mmt-line);
}
.hero-card {
  background: var(--white);
  border: 1px solid var(--mmt-line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card-head {
  background: var(--mmt-navy);
  color: var(--white);
  padding: 22px 24px;
  border-bottom: 5px solid var(--mmt-gold);
}
.hero-card-head strong {
  display: block;
  font-size: 22px;
}
.route-list {
  display: grid;
  gap: 12px;
  padding: 22px 24px 26px;
}
.route-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px;
  border-radius: 16px;
  background: var(--mmt-soft);
}
.route-icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--mmt-cyan), var(--mmt-blue));
  font-weight: 900;
}
.route-item b { color: var(--mmt-navy); }
.route-item span { color: var(--mmt-muted); font-size: 14px; }
.section {
  padding: 72px 0;
}
.section.alt {
  background: var(--mmt-soft);
}
.section-title {
  max-width: 830px;
  margin-bottom: 34px;
}
.section-title .kicker {
  color: var(--mmt-cyan);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 13px;
}
h2 {
  margin: 8px 0 12px;
  color: var(--mmt-navy);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.14;
  letter-spacing: -0.025em;
}
.section-title p {
  color: var(--mmt-muted);
  font-size: 17px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  padding: 24px;
  border: 1px solid var(--mmt-line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(11,45,77,.06);
}
.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #eaf6fc;
  color: var(--mmt-blue);
  font-weight: 900;
  margin-bottom: 14px;
}
h3 {
  margin: 0 0 8px;
  color: var(--mmt-blue);
  font-size: 21px;
}
.card p, .card li { color: #45596c; }
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 22px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--mmt-line);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--mmt-gold);
  color: var(--mmt-navy);
  font-weight: 900;
  margin-bottom: 16px;
}
.gallery {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 16px;
}
.gallery-tile {
  min-height: 220px;
  border-radius: 26px;
  padding: 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--mmt-blue), var(--mmt-navy));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
}
.gallery-tile::before {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(42,165,214,.28);
}
.gallery-tile.gold {
  background: linear-gradient(135deg, #c99a12, var(--mmt-gold));
  color: var(--mmt-navy);
}
.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.city-link {
  padding: 13px 14px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--mmt-line);
  color: var(--mmt-blue);
  font-weight: 800;
}
.city-link:hover {
  background: var(--mmt-blue);
  color: var(--white);
}
.faq {
  display: grid;
  gap: 12px;
}
details {
  background: var(--white);
  border: 1px solid var(--mmt-line);
  border-radius: 18px;
  padding: 18px 20px;
}
summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--mmt-blue);
}
details p { color: var(--mmt-muted); }
.contact-panel {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 20px;
  align-items: stretch;
}
.contact-box {
  background: var(--mmt-navy);
  color: var(--white);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.contact-box p { color: rgba(255,255,255,.82); }
.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.contact-list a {
  display: block;
  padding: 13px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.09);
  color: var(--white);
}
.seo-box {
  background: var(--white);
  border: 1px solid var(--mmt-line);
  border-radius: 28px;
  padding: 28px;
}
.seo-box ul {
  margin: 0;
  padding-left: 18px;
}
.site-footer {
  color: rgba(255,255,255,.78);
  background: var(--mmt-navy);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.breadcrumb {
  color: var(--mmt-muted);
  font-size: 14px;
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--mmt-blue); font-weight: 800; }
.city-hero {
  padding: 58px 0 38px;
  background: linear-gradient(135deg, #f7fbfe, #eef7fc);
}
.city-content {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}
.toc {
  position: sticky;
  top: 104px;
  background: var(--white);
  border: 1px solid var(--mmt-line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 14px 36px rgba(11,45,77,.06);
}
.toc a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--mmt-line);
  color: var(--mmt-blue);
  font-weight: 800;
}
.notice {
  border-left: 5px solid var(--mmt-gold);
  background: #fff9df;
  padding: 16px 18px;
  border-radius: 16px;
  color: #614b00;
}
@media (max-width: 940px) {
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    left: 17px;
    right: 17px;
    top: 86px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--mmt-line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .hero-grid,
  .contact-panel,
  .city-content {
    grid-template-columns: 1fr;
  }
  .cards,
  .process,
  .city-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .brand img { width: 170px; }
  .hero { padding-top: 46px; }
  .cards,
  .process,
  .city-grid {
    grid-template-columns: 1fr;
  }
  .section { padding: 50px 0; }
  .footer-inner { display: block; }
}


/* MMT visual enhancement */
.visual-shell {
  position: relative;
  min-height: 540px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--mmt-navy);
}
.visual-shell img,
.trust-visual img,
.media-card img,
.gallery-card img,
.city-photo-card img,
.city-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.visual-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,45,77,.08), rgba(11,45,77,.78));
}
.visual-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  color: #fff;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 22px;
  background: rgba(11,45,77,.64);
  backdrop-filter: blur(12px);
}
.visual-caption strong {
  display: block;
  font-size: 24px;
  line-height: 1.15;
}
.visual-caption span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.82);
}
.trust-strip {
  margin-top: -26px;
  position: relative;
  z-index: 3;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.trust-item {
  min-height: 126px;
  border-radius: 22px;
  padding: 18px;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--mmt-line);
  box-shadow: 0 18px 44px rgba(11,45,77,.12);
}
.trust-item b {
  display: block;
  color: var(--mmt-navy);
  font-size: 24px;
  line-height: 1;
}
.trust-item span {
  display: block;
  margin-top: 8px;
  color: var(--mmt-muted);
  font-weight: 700;
}
.service-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 30px;
}
.media-card {
  min-height: 360px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}
.media-card::after,
.gallery-card::after,
.city-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(11,45,77,.86));
}
.media-card .media-text,
.gallery-card .gallery-text,
.city-photo-card .gallery-text {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
}
.media-card h3,
.gallery-card h3,
.city-photo-card h3 {
  color: #fff;
}
.process-visual {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}
.gallery-pro {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr;
  grid-auto-rows: 250px;
  gap: 16px;
}
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: var(--mmt-navy);
}
.gallery-card.large {
  grid-row: span 2;
}
.gallery-note {
  margin-top: 24px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--mmt-navy), var(--mmt-blue));
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}
.gallery-note p {
  margin: 0;
  color: rgba(255,255,255,.82);
}
.city-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 34px;
}
.city-hero-media {
  min-height: 360px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}
.city-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,45,77,.02), rgba(11,45,77,.42));
}
.city-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 26px 0;
}
.city-photo-card {
  min-height: 230px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: var(--mmt-navy);
}
.card.photo-card {
  padding: 0;
  overflow: hidden;
}
.card.photo-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.card.photo-card .card-body {
  padding: 22px;
}
@media (max-width: 940px) {
  .trust-grid,
  .city-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-media-grid,
  .process-visual,
  .city-hero-grid {
    grid-template-columns: 1fr;
  }
  .gallery-pro {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .visual-shell { min-height: 420px; }
  .trust-grid,
  .city-photo-grid,
  .gallery-pro {
    grid-template-columns: 1fr;
  }
  .gallery-card.large {
    grid-row: span 1;
  }
  .gallery-note {
    grid-template-columns: 1fr;
  }
}


/* Corporate update */
.phone-pill {
  color: var(--mmt-navy) !important;
  background: linear-gradient(135deg, #fff7d1, #eaf6fc) !important;
  border: 1px solid rgba(241,194,50,.55);
  box-shadow: 0 10px 24px rgba(11,45,77,.08);
}
.phone-pill span { display:block; font-size:11px; font-weight:800; opacity:.82; line-height:1.1; }
.hero-corporate { padding-top: 64px; }
.hero-showcase { display:grid; grid-template-columns:1.45fr .85fr; gap:14px; align-items:stretch; }
.hero-showcase img { width:100%; height:100%; min-height:180px; object-fit:cover; border-radius:26px; box-shadow: var(--shadow); }
.showcase-main { min-height:430px !important; }
.showcase-stack { display:grid; gap:14px; }
.callback-grid, .contact-grid { display:grid; grid-template-columns: .95fr 1.05fr; gap:34px; align-items:start; }
.callback-form, .contact-panel { background:#fff; border:1px solid var(--mmt-line); border-radius:28px; box-shadow:var(--shadow); padding:26px; }
.callback-form { display:grid; gap:14px; }
.callback-form label { display:grid; gap:7px; color:var(--mmt-blue); font-weight:900; }
.callback-form input, .callback-form select, .callback-form textarea { width:100%; border:1px solid var(--mmt-line); border-radius:14px; padding:13px 14px; font:inherit; color:var(--mmt-ink); background:#f8fbfd; }
.long-article { background:#fff; border:1px solid var(--mmt-line); border-radius:28px; padding:32px; margin-bottom:24px; box-shadow:0 14px 36px rgba(11,45,77,.06); }
.long-article h2 { margin-top:0; }
.long-article p { color:#31465a; font-size:17px; text-align:justify; }
.contact-panel { display:grid; gap:12px; }
.contact-panel a, .address-box { display:flex; justify-content:space-between; gap:16px; align-items:center; padding:16px; border-radius:18px; background:var(--mmt-soft); border:1px solid var(--mmt-line); }
.contact-panel b, .address-box b { color:var(--mmt-navy); font-size:18px; }
.contact-panel span, .address-box span { color:var(--mmt-muted); font-weight:700; text-align:right; }
.city-grid { grid-template-columns: repeat(auto-fit, minmax(245px, 1fr)); }
.city-link { font-size:15px; min-height:54px; display:flex; align-items:center; justify-content:center; text-align:center; font-weight:900; letter-spacing:0; }
@media (max-width: 900px) {
  .phone-pill span { display:inline; margin-left:4px; }
  .hero-showcase, .callback-grid, .contact-grid { grid-template-columns:1fr; }
  .showcase-main { min-height:260px !important; }
  .showcase-stack { grid-template-columns:1fr 1fr; }
  .contact-panel a, .address-box { align-items:flex-start; flex-direction:column; }
  .contact-panel span, .address-box span { text-align:left; }
}


/* Refinement update */
.nav-links { gap: 7px; }
.phone-pill {
  min-width: 142px;
  padding: 8px 13px !important;
  display: inline-flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.05;
  white-space: nowrap;
}
.phone-pill strong {
  display: block;
  color: var(--mmt-navy);
  font-size: 20px;
  letter-spacing: -0.02em;
}
.phone-pill span {
  display: block;
  font-size: 10px;
  line-height: 1.1;
  margin-top: 3px;
  color: var(--mmt-blue);
}
.trust-strip { margin-top: -18px; }
.trust-item {
  min-height: 178px;
  padding: 22px 20px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(42,165,214,.94), rgba(11,45,77,.98)),
    var(--mmt-blue);
  border-color: rgba(255,255,255,.18);
}
.trust-item b {
  color: #fff;
  font-size: 19px;
  line-height: 1.16;
}
.trust-item span {
  color: rgba(255,255,255,.88);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 650;
}
.section-title h2 { max-width: 760px; }
.card.photo-card .card-body { min-height: 238px; }
.card.photo-card h3 { color: var(--mmt-navy); margin-bottom: 8px; }
.card.photo-card p { color: #405568; }
.service-media-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; }
.media-card { min-height: 300px; max-height: 340px; }
.media-card img,
.gallery-card img,
.city-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-card .media-text { bottom: 16px; }
.callback-grid {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.callback-visual {
  min-height: 100%;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  background: var(--mmt-navy);
}
.callback-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,45,77,.08), rgba(11,45,77,.88));
}
.callback-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}
.callback-visual div {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 2;
  color: #fff;
}
.callback-visual span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--mmt-gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}
.callback-visual strong {
  display: block;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.05;
}
.callback-visual p {
  color: rgba(255,255,255,.86);
  font-size: 16px;
  margin-bottom: 0;
}
.callback-form { height: 100%; }
.compact-contact {
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}
.compact-contact a,
.compact-contact .address-box {
  justify-content: center;
  text-align: center;
  min-height: 76px;
  background: linear-gradient(145deg, #eaf6fc, #ffffff);
  border: 1px solid #cfe8f5;
}
.compact-contact a b,
.compact-contact .address-box b {
  font-size: 18px;
  line-height: 1.15;
}
.compact-contact .address-box {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--mmt-blue), var(--mmt-navy));
}
.compact-contact .address-box b { color: #fff; }
@media (max-width: 1120px) {
  .nav-wrap { gap: 12px; }
  .brand img { width: 180px; }
  .nav-links a { padding: 10px 10px; font-size: 14px; }
  .phone-pill { min-width: 128px; }
  .phone-pill strong { font-size: 18px; }
}
@media (max-width: 940px) {
  .trust-item { min-height: 150px; }
  .callback-grid,
  .service-media-grid,
  .compact-contact {
    grid-template-columns: 1fr;
  }
  .callback-visual img { min-height: 320px; }
}


/* Phone and testimonial refinement */
.phone-pill {
  min-width: 118px !important;
  max-width: 132px;
  padding: 9px 12px !important;
  border-radius: 16px !important;
  background: linear-gradient(135deg, #0b2d4d 0%, #123b63 48%, #2aa5d6 100%) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  box-shadow: 0 14px 30px rgba(11,45,77,.22) !important;
}
.phone-pill strong {
  color: #fff !important;
  font-size: 20px !important;
  line-height: 1 !important;
  letter-spacing: -.03em;
  white-space: nowrap;
}
.phone-pill span { display: none !important; }
.trust-item {
  background:
    radial-gradient(circle at 20% 12%, rgba(255,255,255,.22), transparent 24%),
    linear-gradient(145deg, #2aa5d6 0%, #17699b 38%, #123b63 72%, #071f38 100%) !important;
  border: 1px solid rgba(255,255,255,.20) !important;
  box-shadow: 0 22px 48px rgba(11,45,77,.20) !important;
}
.trust-item:nth-child(2) { background: linear-gradient(145deg, #32b4e3 0%, #1a78ad 42%, #123b63 100%) !important; }
.trust-item:nth-child(3) { background: linear-gradient(145deg, #1e96cc 0%, #12537f 48%, #092946 100%) !important; }
.trust-item:nth-child(4) { background: linear-gradient(145deg, #38bce8 0%, #17699b 36%, #0b2d4d 100%) !important; }
.testimonials-section { background: linear-gradient(180deg, #fff 0%, #f4f9fc 100%); }
.testimonial-shell {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 14px;
  align-items: center;
}
.testimonial-track {
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  border: 1px solid var(--mmt-line);
  box-shadow: var(--shadow);
}
.testimonial-card {
  display: none;
  grid-template-columns: 96px 1fr;
  gap: 22px;
  padding: 30px;
  min-height: 245px;
  align-items: center;
}
.testimonial-card.active { display: grid; }
.testimonial-avatar {
  width: 96px;
  height: 96px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  font-size: 22px;
  background: linear-gradient(145deg, var(--mmt-cyan), var(--mmt-blue));
  box-shadow: 0 16px 32px rgba(11,45,77,.18);
}
.testimonial-date {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--mmt-blue);
  background: #eaf6fc;
  border: 1px solid #cceaf7;
  padding: 7px 11px;
  border-radius: 999px;
  font-weight: 850;
  font-size: 13px;
}
.testimonial-content p {
  color: #30485e;
  font-size: 19px;
  line-height: 1.55;
  margin: 0 0 18px;
}
.testimonial-person strong { display:block; color: var(--mmt-navy); font-size: 18px; }
.testimonial-person span { color: var(--mmt-muted); font-weight: 750; }
.testimonial-nav {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--mmt-line);
  color: #fff;
  background: linear-gradient(135deg, var(--mmt-blue), var(--mmt-navy));
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 26px rgba(11,45,77,.18);
}
.testimonial-note {
  margin-top: 16px;
  color: var(--mmt-muted);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 760px) {
  .testimonial-shell { grid-template-columns: 1fr; }
  .testimonial-nav { display: none; }
  .testimonial-card { grid-template-columns: 1fr; text-align: center; }
  .testimonial-avatar { margin: 0 auto; }
}


/* Footer and article accordion update */
.article-accordion-wrap {
  display: grid;
  gap: 16px;
}
.article-accordion {
  background: #fff;
  border: 1px solid var(--mmt-line);
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(11,45,77,.06);
  overflow: hidden;
}
.article-accordion summary {
  cursor: pointer;
  padding: 22px 26px;
  color: var(--mmt-navy);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.article-accordion summary::-webkit-details-marker { display: none; }
.article-accordion summary::after {
  content: "+";
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: linear-gradient(135deg, var(--mmt-cyan), var(--mmt-blue));
}
.article-accordion[open] summary::after { content: "−"; }
.article-accordion-body {
  padding: 0 26px 26px;
}
.article-accordion-body p {
  color: #31465a;
  font-size: 17px;
  text-align: justify;
}
.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-service-link {
  color: #fff;
  background: linear-gradient(135deg, var(--mmt-cyan), var(--mmt-blue));
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
}
@media (max-width: 640px) {
  .site-footer .container { justify-content: center; text-align: center; }
}


/* SEO city page expansion */
.city-seo-hero .lead { max-width: 760px; }
.city-seo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 24px;
  align-items: start;
}
.seo-content-card,
.seo-summary-card,
.city-cta-box {
  background: #fff;
  border: 1px solid var(--mmt-line);
  border-radius: 28px;
  box-shadow: 0 14px 36px rgba(11,45,77,.07);
  padding: 28px;
}
.seo-content-card h2,
.seo-summary-card h3 {
  margin-top: 8px;
  color: var(--mmt-navy);
}
.seo-content-card p {
  color: #31465a;
  font-size: 17px;
  text-align: justify;
}
.seo-summary-card {
  position: sticky;
  top: 108px;
}
.seo-summary-card ul {
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}
.seo-summary-card li {
  padding: 11px 12px;
  border-radius: 14px;
  background: var(--mmt-soft);
  color: var(--mmt-blue);
  font-weight: 800;
}
.seo-summary-card.blue {
  background: linear-gradient(145deg, var(--mmt-blue), var(--mmt-navy));
  color: #fff;
}
.seo-summary-card.blue h3 { color: #fff; }
.seo-summary-card.blue li {
  background: rgba(255,255,255,.12);
  color: #fff;
}
.seo-process .step { min-height: 180px; }
.seo-faq details {
  background: #fff;
  border: 1px solid var(--mmt-line);
  border-radius: 18px;
  padding: 16px 18px;
  margin-bottom: 12px;
  box-shadow: 0 10px 28px rgba(11,45,77,.05);
}
.seo-faq summary {
  cursor: pointer;
  color: var(--mmt-navy);
  font-weight: 900;
}
.seo-faq p {
  color: var(--mmt-muted);
}
.city-cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  background:
    radial-gradient(circle at 12% 20%, rgba(42,165,214,.20), transparent 25%),
    linear-gradient(145deg, #fff, #eef7fc);
}
.city-cta-box h2 { margin-top: 8px; }
@media (max-width: 940px) {
  .city-seo-grid,
  .city-cta-box {
    grid-template-columns: 1fr;
  }
  .seo-summary-card { position: static; }
}


/* Premium Spain homepage redesign */
.hero-premium {
  position: relative;
  isolation: isolate;
  min-height: 740px;
  padding: 92px 0 72px;
  background:
    radial-gradient(circle at 84% 14%, rgba(42,165,214,.34), transparent 32%),
    radial-gradient(circle at 10% 76%, rgba(241,194,50,.18), transparent 28%),
    linear-gradient(135deg, #061a32 0%, #0b2d4d 48%, #123b63 100%);
  color: #fff;
}
.premium-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .38;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}
.premium-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(440px, 1.05fr);
  gap: 54px;
  align-items: center;
}
.premium-copy h1 {
  color: #fff;
  font-size: clamp(42px, 5.8vw, 78px);
  letter-spacing: -.06em;
  max-width: 840px;
}
.premium-copy .lead {
  color: #dcecff;
  font-size: 20px;
  line-height: 1.75;
}
.premium-eyebrow {
  color: #f7fbff;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
}
.premium-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.btn-glass,
.btn-outline-light {
  color: #fff;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.24);
  backdrop-filter: blur(12px);
}
.btn-outline-light:hover,
.btn-glass:hover {
  background: rgba(255,255,255,.2);
}
.premium-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}
.premium-metrics div {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  background: rgba(255,255,255,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}
.premium-metrics strong {
  display: block;
  color: #fff;
  font-size: 16px;
}
.premium-metrics span {
  display: block;
  color: #bdd8ec;
  font-size: 13px;
  margin-top: 5px;
}
.premium-visual {
  display: grid;
  gap: 16px;
}
.visual-frame {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  min-height: 455px;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 34px 90px rgba(0,0,0,.34);
  background: #0b2d4d;
}
.visual-main {
  width: 100%;
  height: 100%;
  min-height: 455px;
  object-fit: cover;
  transform: scale(1.01);
}
.visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(6,26,50,.78));
}
.visual-badge {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  color: var(--mmt-navy);
  box-shadow: 0 20px 50px rgba(0,0,0,.22);
}
.visual-badge b {
  font-size: 19px;
}
.visual-badge span {
  color: var(--mmt-muted);
  font-weight: 800;
  font-size: 13px;
}
.visual-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.visual-mini-grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 180px;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 22px 55px rgba(0,0,0,.22);
}
.visual-mini-grid img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.visual-mini-grid figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 16px;
  color: #fff;
  font-weight: 900;
  background: rgba(6,26,50,.72);
  backdrop-filter: blur(10px);
}
.premium-trust {
  position: relative;
  margin-top: -46px;
  z-index: 3;
}
.premium-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.premium-trust article {
  min-height: 190px;
  padding: 24px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--mmt-line);
  box-shadow: 0 24px 70px rgba(11,45,77,.14);
}
.premium-trust span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--mmt-cyan), var(--mmt-blue));
  color: #fff;
  font-weight: 900;
  margin-bottom: 16px;
}
.premium-trust b {
  display: block;
  color: var(--mmt-navy);
  font-size: 18px;
  margin-bottom: 8px;
}
.premium-trust p {
  margin: 0;
  color: var(--mmt-muted);
  font-size: 14px;
}
.premium-route-panel {
  padding: 86px 0 72px;
  background:
    linear-gradient(180deg, #fff 0%, #f4f9fc 100%);
}
.route-panel-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
}
.route-panel-grid p {
  color: var(--mmt-muted);
  font-size: 18px;
}
.route-cards {
  display: grid;
  gap: 16px;
}
.route-cards a {
  display: grid;
  gap: 7px;
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid var(--mmt-line);
  background: #fff;
  box-shadow: 0 16px 42px rgba(11,45,77,.08);
  transition: .22s ease;
}
.route-cards a:hover {
  transform: translateX(6px);
  border-color: rgba(42,165,214,.55);
  box-shadow: 0 22px 58px rgba(11,45,77,.13);
}
.route-cards b {
  color: var(--mmt-navy);
  font-size: 19px;
}
.route-cards span {
  color: var(--mmt-muted);
}
@media (max-width: 1050px) {
  .premium-hero-grid,
  .route-panel-grid {
    grid-template-columns: 1fr;
  }
  .premium-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .hero-premium {
    min-height: auto;
    padding: 58px 0 54px;
  }
  .premium-metrics,
  .premium-trust-grid,
  .visual-mini-grid {
    grid-template-columns: 1fr;
  }
  .visual-frame,
  .visual-main {
    min-height: 320px;
  }
  .visual-badge {
    display: grid;
  }
}


/* Atlas-inspired MMT corporate homepage */
.mmt-topbar {
  background: #061b34;
  color: #dff2ff;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mmt-topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.mmt-topbar a { color: #fff; font-weight: 800; }
.mmt-topbar div div { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.atlas-inspired-home .section-title.center-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.atlas-hero {
  position: relative;
  isolation: isolate;
  min-height: 690px;
  padding: 92px 0 82px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(6,27,52,.96) 0%, rgba(8,45,82,.9) 48%, rgba(8,45,82,.68) 100%),
    url("../img/operasyon/hero-mmt-lojistik-araclar.jpg") center/cover no-repeat;
}
.atlas-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 85% 16%, rgba(42,165,214,.42), transparent 28%),
    linear-gradient(135deg, rgba(241,194,50,.12), transparent 42%);
}
.atlas-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 46px;
  align-items: center;
}
.atlas-kicker {
  display: inline-flex;
  color: #fff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 900;
  letter-spacing: .04em;
  backdrop-filter: blur(10px);
}
.atlas-hero h1 {
  color: #fff;
  max-width: 820px;
  font-size: clamp(42px, 5.8vw, 76px);
  line-height: .98;
  letter-spacing: -.06em;
  margin: 22px 0;
}
.atlas-hero p {
  max-width: 760px;
  color: #e0efff;
  font-size: 20px;
  line-height: 1.75;
}
.atlas-hero-actions,
.atlas-route-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.atlas-white-btn {
  color: var(--mmt-navy);
  background: #fff;
}
.atlas-soft-btn {
  color: #fff;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.25);
}
.atlas-route-tags span {
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: #e9f7ff;
  font-weight: 800;
  font-size: 14px;
}
.atlas-quote-card {
  background: rgba(255,255,255,.96);
  color: var(--mmt-ink);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(0,0,0,.32);
  border: 1px solid rgba(255,255,255,.38);
}
.quote-card-head {
  padding: 24px 26px;
  background: linear-gradient(135deg, var(--mmt-blue), var(--mmt-navy));
  color: #fff;
  border-bottom: 5px solid var(--mmt-gold);
}
.quote-card-head span {
  color: #beeaff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}
.quote-card-head strong {
  display: block;
  font-size: 24px;
  line-height: 1.15;
  margin-top: 7px;
}
.atlas-mini-form {
  display: grid;
  gap: 12px;
  padding: 22px;
}
.atlas-mini-form label {
  display: grid;
  gap: 6px;
  color: var(--mmt-blue);
  font-weight: 900;
  font-size: 14px;
}
.atlas-mini-form input,
.atlas-mini-form select,
.atlas-mini-form textarea {
  width: 100%;
  border: 1px solid var(--mmt-line);
  border-radius: 14px;
  padding: 12px 13px;
  font: inherit;
  background: #f8fbfd;
  color: var(--mmt-ink);
}
.atlas-proof {
  margin-top: -42px;
  position: relative;
  z-index: 3;
}
.atlas-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.atlas-proof article {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--mmt-line);
  box-shadow: 0 24px 60px rgba(11,45,77,.14);
}
.atlas-proof img {
  width: 120px;
  height: 100px;
  object-fit: cover;
  border-radius: 20px;
}
.atlas-proof b {
  display: block;
  color: var(--mmt-navy);
  font-size: 18px;
  margin-bottom: 5px;
}
.atlas-proof span {
  color: var(--mmt-muted);
  font-size: 14px;
}
.atlas-stats {
  padding: 56px 0 34px;
  background: #fff;
}
.atlas-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.atlas-stats-grid div {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f8fcff, #fff);
  border: 1px solid var(--mmt-line);
}
.atlas-stats-grid strong {
  display: block;
  color: var(--mmt-navy);
  font-size: 20px;
}
.atlas-stats-grid span {
  display: block;
  color: var(--mmt-muted);
  margin-top: 7px;
}
.atlas-two-col {
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  gap: 54px;
  align-items: center;
}
.atlas-image-stack {
  position: relative;
  min-height: 470px;
}
.stack-main,
.stack-small {
  width: 100%;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow);
}
.stack-main {
  height: 430px;
}
.stack-small {
  position: absolute;
  width: 46%;
  height: 190px;
  right: -8px;
  bottom: -10px;
  border: 8px solid #fff;
}
.experience-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 18px 20px;
  border-radius: 24px;
  background: #fff;
  color: var(--mmt-navy);
  box-shadow: 0 18px 46px rgba(11,45,77,.16);
}
.experience-badge b { display:block; font-size: 30px; color: var(--mmt-cyan); }
.experience-badge span { font-weight: 900; }
.atlas-check-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.atlas-check-list span {
  padding: 14px 16px 14px 44px;
  border-radius: 16px;
  background: #f4f9fc;
  border: 1px solid var(--mmt-line);
  color: var(--mmt-blue);
  font-weight: 800;
  position: relative;
}
.atlas-check-list span::before {
  content: "✓";
  position: absolute;
  left: 16px;
  color: var(--mmt-cyan);
  font-weight: 900;
}
.atlas-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.atlas-service-grid article {
  min-height: 280px;
  padding: 26px;
  border-radius: 28px;
  color: #fff;
  background:
    linear-gradient(150deg, rgba(11,45,77,.96), rgba(18,59,99,.92)),
    radial-gradient(circle at 80% 10%, rgba(42,165,214,.28), transparent 35%);
  box-shadow: 0 24px 60px rgba(11,45,77,.18);
}
.atlas-service-grid span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--mmt-gold);
  color: var(--mmt-navy);
  font-weight: 900;
  margin-bottom: 24px;
}
.atlas-service-grid h3 { color: #fff; }
.atlas-service-grid p { color: #d7e9f7; }
.atlas-process-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 42px;
  align-items: start;
}
.timeline {
  display: grid;
  gap: 14px;
}
.timeline div {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--mmt-line);
  background: #fff;
  box-shadow: 0 14px 38px rgba(11,45,77,.07);
}
.timeline b {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--mmt-cyan), var(--mmt-blue));
}
.timeline span {
  color: var(--mmt-blue);
  font-weight: 800;
}
.atlas-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.atlas-gallery-grid figure {
  margin: 0;
  min-height: 260px;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 55px rgba(11,45,77,.12);
}
.atlas-gallery-grid figure.wide {
  grid-column: span 2;
  grid-row: span 2;
}
.atlas-gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}
.atlas-gallery-grid figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  color: #fff;
  background: rgba(6,27,52,.72);
  backdrop-filter: blur(10px);
  font-weight: 900;
}
@media (max-width: 1100px) {
  .atlas-hero-grid,
  .atlas-two-col,
  .atlas-process-grid {
    grid-template-columns: 1fr;
  }
  .atlas-service-grid,
  .atlas-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .atlas-proof-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .mmt-topbar-inner,
  .mmt-topbar div div {
    display: grid;
    justify-content: start;
  }
  .atlas-hero {
    padding: 58px 0 56px;
  }
  .atlas-hero-grid {
    grid-template-columns: 1fr;
  }
  .atlas-service-grid,
  .atlas-stats-grid,
  .atlas-gallery-grid {
    grid-template-columns: 1fr;
  }
  .atlas-gallery-grid figure.wide {
    grid-column: auto;
    grid-row: auto;
  }
  .atlas-proof article {
    grid-template-columns: 1fr;
  }
  .atlas-proof img {
    width: 100%;
    height: 180px;
  }
  .stack-small {
    position: static;
    width: 100%;
    margin-top: 16px;
  }
  .atlas-image-stack {
    min-height: auto;
  }
}


/* Services dropdown and detail pages */
.nav-dropdown {
  position: relative;
  display: inline-flex;
}
.dropdown-trigger {
  cursor: pointer;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 310px;
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid var(--mmt-line);
  border-radius: 22px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 24px 70px rgba(11,45,77,.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s ease;
  z-index: 40;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  border-radius: 14px;
  padding: 11px 12px;
  color: var(--mmt-blue) !important;
  background: transparent !important;
  white-space: nowrap;
}
.dropdown-menu a:hover {
  background: #eaf6fc !important;
  color: var(--mmt-navy) !important;
}
.service-hero {
  padding: 82px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(6,27,52,.96), rgba(18,59,99,.82)),
    url("../img/operasyon/hero-filo.jpg") center/cover no-repeat;
}
.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
  gap: 42px;
  align-items: center;
}
.service-hero h1 {
  color: #fff;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
}
.service-hero p {
  color: #e5f4ff;
  font-size: 20px;
  max-width: 760px;
}
.service-hero figure {
  margin: 0;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
}
.service-hero img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.service-detail-card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--mmt-line);
  background: #fff;
  box-shadow: 0 18px 48px rgba(11,45,77,.08);
}
.service-detail-card h2 {
  font-size: 25px;
}
.service-detail-card p {
  color: var(--mmt-muted);
}
.related-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.related-service-grid a {
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--mmt-line);
  color: var(--mmt-blue);
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(11,45,77,.06);
}
.related-service-grid a:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--mmt-blue), var(--mmt-navy));
}
@media (max-width: 940px) {
  .nav-dropdown {
    display: grid;
  }
  .dropdown-menu {
    position: static;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 16px;
    margin-top: 6px;
    background: #f7fbfe;
  }
  .service-hero-grid,
  .service-detail-grid,
  .related-service-grid {
    grid-template-columns: 1fr;
  }
  .service-hero img {
    height: 280px;
  }
}

/* Enriched service detail pages */
.service-long-article {
  background:
    radial-gradient(circle at top left, rgba(45, 166, 218, 0.10), transparent 34rem),
    #ffffff;
}

.service-article-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.36fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.article-side-card {
  position: sticky;
  top: 105px;
  border: 1px solid rgba(45, 166, 218, 0.18);
  border-radius: 28px;
  padding: 1.5rem;
  background: linear-gradient(145deg, rgba(255,255,255,.95), rgba(238,247,252,.95));
  box-shadow: 0 22px 55px rgba(8, 38, 72, 0.10);
}

.article-side-card h2 {
  margin: .45rem 0 .75rem;
  color: var(--navy);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.article-copy {
  border-radius: 30px;
  padding: clamp(1.35rem, 3vw, 2.4rem);
  background: #fff;
  box-shadow: 0 24px 70px rgba(8, 38, 72, 0.08);
  border: 1px solid rgba(15, 59, 106, 0.08);
}

.article-copy h2 {
  margin-top: 0;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.article-copy p {
  color: #40556d;
  line-height: 1.85;
  margin: 0 0 1.1rem;
  font-size: 1rem;
}

.price-table-wrap {
  overflow-x: auto;
  border-radius: 24px;
  box-shadow: 0 22px 62px rgba(8, 38, 72, 0.10);
  border: 1px solid rgba(45, 166, 218, 0.18);
  background: #fff;
}

.service-price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.service-price-table th {
  text-align: left;
  padding: 1.05rem 1rem;
  color: #fff;
  background: linear-gradient(135deg, #0f3b6a, #1c78b7 55%, #2da6da);
  font-size: .92rem;
}

.service-price-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(15, 59, 106, 0.09);
  color: #40556d;
  vertical-align: top;
}

.service-price-table tbody tr:nth-child(even) td {
  background: rgba(45, 166, 218, 0.055);
}

.service-price-table td:first-child,
.service-price-table td:nth-child(2) {
  color: var(--navy);
  font-weight: 800;
}

.price-note {
  margin: 1rem auto 0;
  color: #60748b;
  max-width: 920px;
  text-align: center;
  line-height: 1.7;
  font-size: .95rem;
}

.service-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-gallery-grid figure {
  margin: 0;
  min-height: 250px;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  background: var(--navy);
  box-shadow: 0 22px 55px rgba(8, 38, 72, 0.14);
}

.service-gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.service-gallery-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  font-weight: 800;
  font-size: .88rem;
  background: linear-gradient(180deg, transparent, rgba(8, 38, 72, .86));
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.faq-grid details {
  border: 1px solid rgba(45, 166, 218, .17);
  border-radius: 22px;
  padding: 1rem 1.05rem;
  background: #fff;
  box-shadow: 0 18px 44px rgba(8, 38, 72, .08);
}

.faq-grid summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
}

.faq-grid p {
  color: #52667e;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .service-article-layout,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .article-side-card {
    position: static;
  }

  .service-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .service-gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Homepage focused refinements */
@media (max-width: 760px) {
  .mmt-topbar {
    display: none !important;
  }
}

.refined-about-grid,
.refined-process-grid {
  align-items: stretch;
}

.refined-image-stack,
.refined-about-copy,
.refined-process-copy,
.refined-timeline {
  min-height: 100%;
}

.refined-image-stack {
  display: grid;
  align-content: stretch;
}

.refined-image-stack .stack-main {
  height: 520px;
  object-fit: cover;
}

.refined-about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 32px;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  background: linear-gradient(145deg, #ffffff, #f2f8fc);
  border: 1px solid rgba(45, 166, 218, .14);
  box-shadow: 0 22px 65px rgba(8, 38, 72, .08);
}

.refined-about-copy p,
.refined-process-copy p {
  line-height: 1.82;
  color: #465d76;
}

.refined-check-list {
  margin-top: 1rem;
}

.refined-process-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 30px;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  background: #fff;
  border: 1px solid rgba(15, 59, 106, .08);
  box-shadow: 0 22px 58px rgba(8, 38, 72, .08);
}

.refined-timeline {
  display: grid;
  align-content: stretch;
  gap: 1rem;
}

.refined-timeline div {
  min-height: 112px;
  align-items: center;
  background: linear-gradient(135deg, rgba(15,59,106,.98), rgba(28,120,183,.95) 55%, rgba(45,166,218,.94));
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
}

.refined-timeline div span {
  color: #eef8ff;
  line-height: 1.58;
}

.refined-testimonials {
  background:
    radial-gradient(circle at top left, rgba(45,166,218,.13), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, #eef6fb 100%);
}

.refined-testimonial-shell {
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  align-items: center;
  gap: 1.2rem;
}

.refined-testimonial-card {
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 1.5rem;
  padding: clamp(1.35rem, 3vw, 2.2rem);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(240,248,253,.96));
  border: 1px solid rgba(45,166,218,.18);
  box-shadow: 0 28px 75px rgba(8,38,72,.14);
  position: relative;
  overflow: hidden;
}

.refined-testimonial-card::before {
  content: "“";
  position: absolute;
  right: 26px;
  top: -24px;
  font-size: 150px;
  font-weight: 900;
  color: rgba(45,166,218,.11);
  line-height: 1;
}

.refined-testimonial-card .testimonial-avatar {
  width: 86px;
  height: 86px;
  background: linear-gradient(135deg, #0f3b6a, #2da6da);
  border: 5px solid #fff;
  box-shadow: 0 18px 42px rgba(15,59,106,.20);
}

.testimonial-stars {
  color: #d99a00;
  letter-spacing: .12em;
  font-weight: 900;
  margin-bottom: .7rem;
}

.testimonial-trust-row {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .8rem;
}

.testimonial-trust-row span {
  text-align: center;
  border-radius: 999px;
  padding: .75rem 1rem;
  background: #fff;
  color: var(--mmt-navy);
  font-weight: 850;
  box-shadow: 0 12px 32px rgba(8,38,72,.08);
  border: 1px solid rgba(45,166,218,.15);
}

.refined-faq-section {
  background: #fff;
}

.refined-faq-wrap {
  max-width: 980px;
}

.refined-faq summary {
  font-size: 1.03rem;
}

.site-footer .container {
  justify-content: center;
}

.footer-backlink {
  color: #ffffff;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 980px) {
  .refined-image-stack .stack-main {
    height: 380px;
  }

  .refined-testimonial-shell {
    grid-template-columns: 1fr;
  }

  .refined-testimonial-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .testimonial-trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .testimonial-trust-row {
    grid-template-columns: 1fr;
  }
}

/* Alignment correction after homepage review */
.balanced-about-grid {
  align-items: stretch;
}

.balanced-image-stack {
  min-height: 500px;
}

.balanced-image-stack .stack-main {
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.balanced-about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  border-radius: 30px;
}

.testimonial-shell,
.testimonial-trust-row {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-trust-row {
  align-items: stretch;
}

.testimonial-trust-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
}

.refined-faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, .42fr) minmax(0, .9fr);
  gap: 1.35rem;
  align-items: stretch;
  max-width: 1120px;
  margin: 0 auto;
}

.refined-faq-intro {
  border-radius: 30px;
  padding: clamp(1.35rem, 3vw, 2.2rem);
  background: linear-gradient(145deg, #0f3b6a, #1c78b7 58%, #2da6da);
  color: #fff;
  box-shadow: 0 24px 64px rgba(8, 38, 72, .15);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.refined-faq-intro .kicker,
.refined-faq-intro h2,
.refined-faq-intro p {
  color: #fff;
}

.refined-faq-intro p {
  line-height: 1.75;
}

.refined-faq-intro .btn {
  width: fit-content;
  margin-top: .6rem;
}

.refined-faq-wrap {
  max-width: none;
  margin: 0;
}

@media (max-width: 980px) {
  .balanced-image-stack,
  .balanced-image-stack .stack-main {
    min-height: 380px;
  }

  .refined-faq-layout {
    grid-template-columns: 1fr;
  }
}

/* Final publish-ready refinements */
.satisfaction-badge {
  gap: 8px;
  min-width: 190px;
  background: linear-gradient(135deg, #0f3b6a, #1c78b7 58%, #2da6da);
  color: #fff;
  border: 2px solid rgba(255,255,255,.78);
}

.satisfaction-badge .satisfaction-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  color: #1c78b7;
  font-weight: 1000;
  font-size: 22px;
  box-shadow: 0 10px 22px rgba(8,38,72,.18);
}

.satisfaction-badge b {
  font-size: 26px;
  line-height: 1;
}

.refined-testimonial-shell,
.testimonial-trust-row {
  width: min(100%, 1080px);
}

.refined-testimonial-track {
  width: 100%;
}

.refined-testimonial-card {
  width: 100%;
  min-height: 330px;
}

.testimonial-content {
  min-width: 0;
}

.testimonial-content p {
  max-width: 850px;
}

.contact-section .contact-grid {
  align-items: stretch;
}

.contact-section .contact-grid > div:first-child {
  border-radius: 30px;
  padding: clamp(1.35rem, 3vw, 2.2rem);
  background: linear-gradient(145deg, #ffffff, #f2f8fc);
  border: 1px solid rgba(45,166,218,.14);
  box-shadow: 0 22px 55px rgba(8,38,72,.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-section .contact-panel {
  height: 100%;
}

/* Final hero and testimonial cleanup */
.atlas-hero-grid {
  align-items: center;
}

.atlas-quote-card {
  max-width: 410px;
  margin-left: auto;
  padding: 1.25rem;
}

.quote-card-head {
  margin-bottom: .85rem;
}

.quote-card-head strong {
  font-size: 1.05rem;
}

.atlas-mini-form {
  gap: .65rem;
}

.atlas-mini-form label {
  gap: .32rem;
  font-size: .82rem;
}

.atlas-mini-form input,
.atlas-mini-form select,
.atlas-mini-form textarea {
  padding: .72rem .82rem;
  min-height: 42px;
}

.atlas-mini-form textarea {
  min-height: 72px;
}

.testimonial-person {
  margin-top: .9rem;
}

.testimonial-person strong {
  font-size: 19px;
}

@media (max-width: 980px) {
  .atlas-quote-card {
    max-width: 100%;
    margin-left: 0;
  }
}

/* Hero form restored and tighter top spacing */
.atlas-hero {
  padding-top: 68px;
  min-height: 660px;
}

.atlas-hero-grid {
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 40px;
}

.atlas-quote-card {
  max-width: 420px;
  width: 100%;
  padding: 0;
}

.quote-card-head {
  padding: 24px 26px;
}

.quote-card-head strong {
  font-size: 24px;
}

.atlas-mini-form {
  gap: 12px;
  padding: 22px;
}

.atlas-mini-form label {
  gap: 6px;
  font-size: 14px;
}

.atlas-mini-form input,
.atlas-mini-form select,
.atlas-mini-form textarea {
  padding: 12px 13px;
  min-height: auto;
}

.atlas-mini-form textarea {
  min-height: 96px;
}

@media (max-width: 980px) {
  .atlas-hero {
    padding-top: 54px;
  }

  .atlas-quote-card {
    max-width: 100%;
  }
}

/* Final menu, testimonial and speed polish */
.nav-tool-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(45,166,218,.12), rgba(15,59,106,.08));
  border: 1px solid rgba(45,166,218,.24);
  color: var(--mmt-navy) !important;
  font-weight: 900;
  font-size: 13px;
  white-space: nowrap;
}

.nav-tool-link:hover {
  color: #fff !important;
  background: linear-gradient(135deg, #0f3b6a, #2da6da);
  transform: translateY(-1px);
}

.refined-testimonial-shell {
  width: min(100%, 1010px);
}

.refined-testimonial-card {
  min-height: 292px;
  padding: clamp(1.1rem, 2.4vw, 1.75rem);
  border-radius: 28px;
  box-shadow: 0 20px 58px rgba(8,38,72,.12);
}

.refined-testimonial-card .testimonial-avatar {
  width: 76px;
  height: 76px;
}

.testimonial-content p {
  line-height: 1.72;
}

@media (max-width: 1180px) {
  .nav-links {
    gap: 8px;
  }

  .nav-tool-link {
    font-size: 12px;
    padding: 8px 10px;
  }
}

/* Calculation dropdown polish */
.nav-calc-dropdown .dropdown-trigger {
  color: #ffffff !important;
  background: linear-gradient(135deg, #0f3b6a, #2da6da);
  border: 1px solid rgba(45,166,218,.32);
  box-shadow: 0 10px 22px rgba(15,59,106,.16);
}
.nav-calc-dropdown .dropdown-trigger::after {
  content: "▾";
  font-size: 11px;
  margin-left: 7px;
  line-height: 1;
}
.compact-dropdown {
  min-width: 230px;
}
.compact-dropdown a {
  font-weight: 850;
}
@media (max-width: 940px) {
  .nav-calc-dropdown .dropdown-trigger {
    width: 100%;
  }
}

/* Emergency mobile hero and scroll-top polish */
@media (max-width: 980px) {
  .atlas-hero {
    min-height: auto !important;
    padding: 34px 0 38px !important;
    background-position: 42% center !important;
  }

  .atlas-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    align-items: start !important;
  }

  .atlas-hero-copy {
    max-width: 100%;
  }

  .atlas-kicker {
    font-size: 11px;
    line-height: 1.35;
    padding: 9px 12px;
  }

  .atlas-hero h1 {
    font-size: clamp(30px, 9vw, 46px) !important;
    line-height: 1.08 !important;
    letter-spacing: -.035em !important;
    margin: 16px 0 14px !important;
    max-width: 100% !important;
  }

  .atlas-hero p {
    font-size: 15.5px !important;
    line-height: 1.62 !important;
    max-width: 100% !important;
  }

  .atlas-route-tags {
    gap: 8px !important;
    margin-top: 18px !important;
  }

  .atlas-route-tags span {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    padding: 10px 12px;
  }

  .atlas-quote-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border-radius: 22px !important;
    box-shadow: 0 20px 55px rgba(0,0,0,.26) !important;
  }

  .quote-card-head {
    padding: 18px 18px !important;
  }

  .quote-card-head strong {
    font-size: 21px;
  }

  .quote-mini-form {
    padding: 16px 18px 18px !important;
    gap: 10px !important;
  }
}

@media (max-width: 520px) {
  .atlas-hero {
    padding-top: 24px !important;
    background:
      linear-gradient(180deg, rgba(6,27,52,.96) 0%, rgba(8,45,82,.90) 58%, rgba(8,45,82,.82) 100%),
      url("../img/operasyon/hero-mmt-lojistik-araclar.jpg") 43% center/cover no-repeat !important;
  }

  .atlas-hero-grid {
    gap: 18px !important;
  }

  .atlas-hero h1 {
    font-size: clamp(28px, 10vw, 38px) !important;
  }

  .atlas-hero p {
    font-size: 14.5px !important;
  }
}

.scroll-top-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #0f3b6a, #2da6da);
  box-shadow: 0 18px 45px rgba(15,59,106,.28);
  cursor: pointer;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 14px, 0) scale(.92);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease, box-shadow .22s ease;
}

.scroll-top-btn::before {
  content: "↑";
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
}

.scroll-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0) scale(1);
}

.scroll-top-btn:hover {
  box-shadow: 0 22px 55px rgba(45,166,218,.34);
  transform: translate3d(0, -3px, 0) scale(1.02);
}

@media (max-width: 640px) {
  .scroll-top-btn {
    width: 46px;
    height: 46px;
    right: 16px;
    bottom: 16px;
    border-radius: 16px;
  }
}

