/* =========================================================
   Mistertech Technology — Modern Tech Corporate Theme
   Bootstrap 5 compatible · Performance & SEO optimized
   ========================================================= */

:root {
  /* Brand Colors */
  --mt-primary: #0a4da2;          /* Deep corporate blue */
  --mt-primary-dark: #073a7d;
  --mt-primary-light: #1f6dc7;
  --mt-accent: #ff7a18;           /* Warm orange accent */
  --mt-accent-soft: #ffb84d;
  --neon: #0fd7e7;
  --mt-blue-bg: #031126;
  --mt-blue-panel: rgba(3, 17, 38, 0.74);
  --mt-blue-panel-solid: #061a3a;
  --mt-neon-border: rgba(15, 215, 231, 0.72);
  --mt-success: #1aa179;
  --mt-dark: #0c1b35;
  --mt-darker: #07112a;
  --mt-gray-100: #f7f9fc;
  --mt-gray-200: #eef2f7;
  --mt-gray-300: #dde4ee;
  --mt-gray-500: #6b7a90;
  --mt-gray-700: #364356;
  --mt-text: #1c2942;
  --mt-muted: #5b6a82;
  --mt-white: #ffffff;

  /* Gradients */
  --mt-gradient-hero: linear-gradient(135deg, #073a7d 0%, #0a4da2 50%, #1f6dc7 100%);
  --mt-gradient-cta: linear-gradient(135deg, #ff7a18 0%, #ff9747 100%);
  --mt-gradient-soft: linear-gradient(180deg, #041633 0%, #06224b 100%);

  /* Typography */
  --mt-font-sans: 'Prompt', 'Inter', 'Sarabun', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --mt-font-display: 'Prompt', 'Sarabun', system-ui, sans-serif;

  /* Spacing & Sizing */
  --mt-radius-sm: 8px;
  --mt-radius: 14px;
  --mt-radius-lg: 22px;

  /* Shadows */
  --mt-shadow-sm: 0 0 14px rgba(15, 215, 231, 0.12);
  --mt-shadow: 0 0 24px rgba(15, 215, 231, 0.16);
  --mt-shadow-lg: 0 0 44px rgba(15, 215, 231, 0.22);

  /* Transitions */
  --mt-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--mt-font-sans);
  color: rgba(255, 255, 255, 0.88);
  background: #05183e;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

#animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--mt-font-display);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.94);
  letter-spacing: 0;
  line-height: 1.25;
}

h1,
h2 {
  color: var(--neon);
  text-shadow: 0 0 18px rgba(15, 215, 231, 0.42);
}
h1 { font-size: clamp(2rem, 4vw + 1rem, 3.5rem); }
h2 { font-size: clamp(0.6rem, 2vw + 1rem, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(0.25rem, 1vw + 1rem, 1.75rem); }

p { color: rgba(255, 255, 255, 0.74); }

a { color: var(--neon); text-decoration: none; transition: var(--mt-transition); }
a:hover { color: #b9fbff; }

img { max-width: 100%; height: auto; }

.card,
.list-group-item,
.modal-content,
.accordion-item,
.table,
.dropdown-menu {
  background-color: var(--mt-blue-panel-solid);
  color: rgba(255, 255, 255, 0.86);
  border-color: var(--mt-neon-border);
}
.card,
.modal-content,
.accordion-item,
.dropdown-menu {
  border: 1px solid var(--mt-neon-border);
  box-shadow: var(--mt-shadow-sm);
}
.table > :not(caption) > * > * {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.86);
  border-color: rgba(15, 215, 231, 0.28);
}
.dropdown-item { color: rgba(255, 255, 255, 0.86); }
.dropdown-item:hover,
.dropdown-item:focus {
  color: var(--neon);
  background: rgba(15, 215, 231, 0.12);
}

/* ---------- Top Bar ---------- */
.mt-topbar {
  background: var(--mt-darker);
  border-bottom: 1px solid var(--mt-neon-border);
  /* color: rgba(255, 255, 255, 0.85); */
  color: var(--neon);
  font-size: 0.85rem;
  padding: 0.5rem 0;
}
/* .mt-topbar a { color: rgba(255, 255, 255, 0.85); } */
.mt-topbar a { color: var(--neon); }
.mt-topbar a:hover { color: var(--mt-accent-soft); }
.mt-topbar i { color: var(--mt-accent-soft); margin-right: 0.35rem; }

/* ---------- Navbar ---------- */
.mt-navbar {
  background: rgba(3, 17, 38, 0.92);
  border-bottom: 1px solid var(--mt-neon-border);
  box-shadow: var(--mt-shadow-sm);
  padding: 0.75rem 0;
  transition: var(--mt-transition);
  position: sticky;
  top: 0;
  z-index: 1030;
}
.mt-navbar.scrolled {
  box-shadow: var(--mt-shadow);
  padding: 0.5rem 0;
}
.mt-navbar .navbar-brand img {
  max-height: 85px;
  height: auto;
  width: auto;
}
.mt-navbar .nav-link {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86) !important;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: var(--mt-transition);
}
.mt-navbar .nav-link:hover,
.mt-navbar .nav-link.active {
  color: var(--neon) !important;
}
.mt-navbar .nav-link:not(.dropdown-toggle)::after {
  content: '';
  position: absolute;
  bottom: 0.25rem;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--mt-accent);
  transition: var(--mt-transition);
  transform: translateX(-50%);
}
.mt-navbar .nav-link:not(.dropdown-toggle):hover::after,
.mt-navbar .nav-link.active:not(.dropdown-toggle)::after {
  width: 60%;
}
/* Make Bootstrap dropdown caret more visible on Solutions menu */
.mt-navbar .nav-link.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.45em;
  vertical-align: 0.15em;
  border-top: 0.45em solid var(--mt-accent);
  border-right: 0.35em solid transparent;
  border-bottom: 0;
  border-left: 0.35em solid transparent;
  transition: transform 0.2s ease;
}
.mt-navbar .nav-link.dropdown-toggle:hover::after,
.mt-navbar .nav-item.dropdown.show > .nav-link.dropdown-toggle::after {
  border-top-color: var(--mt-primary);
  transform: translateY(2px) scale(1.15);
}
.mt-navbar .dropdown-menu {
  background: var(--mt-blue-panel-solid);
  border: 1px solid var(--mt-neon-border);
  border-radius: var(--mt-radius);
  box-shadow: var(--mt-shadow);
  padding: 0.75rem;
  margin-top: 0.5rem;
}
.mt-navbar .dropdown-item {
  border-radius: var(--mt-radius-sm);
  padding: 0.6rem 0.85rem;
  font-weight: 500;
  transition: var(--mt-transition);
}
.mt-navbar .dropdown-item:hover {
  background: rgba(15, 215, 231, 0.12);
  color: var(--neon);
}
.mt-navbar .dropdown-item i {
  width: 24px;
  color: var(--neon);
  margin-right: 0.5rem;
}

/* ---------- Buttons ---------- */
.btn {
  border-radius: var(--mt-radius-sm);
  font-weight: 600;
  padding: 0.65rem 1.5rem;
  letter-spacing: 0.01em;
  transition: var(--mt-transition);
  border: 0;
}
.btn-primary {
  background: var(--mt-primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--mt-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 77, 162, 0.3);
  color: #fff;
}
.btn-accent {
  background: var(--mt-gradient-cta);
  color: #fff;
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 122, 24, 0.35);
  color: #fff;
}
.btn-outline-light-mt {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-outline-light-mt:hover {
  background: rgba(15, 215, 231, 0.12);
  color: var(--neon);
}
.btn-ghost {
  background: rgba(15, 215, 231, 0.1);
  color: var(--neon);
  border: 1px solid var(--mt-neon-border);
}
.btn-ghost:hover {
  background: rgba(15, 215, 231, 0.18);
  color: #fff;
}
.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1.05rem;
}

/* ---------- Hero ---------- */
.mt-hero {
  position: relative;
  background: transparent;
  color: #fff;
  padding: 6rem 0 5rem;
  overflow: hidden;
}
.mt-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(15, 215, 231, 0.12) 0, transparent 42%),
    radial-gradient(circle at 85% 75%, rgba(255, 122, 24, 0.14) 0, transparent 45%);
  pointer-events: none;
}
.mt-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 215, 231, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 215, 231, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  mask-image: radial-gradient(circle at center, #000 30%, transparent 80%);
}
.mt-hero > * { position: relative; z-index: 1; }
.mt-hero h1 {
  color: var(--neon);
  font-weight: 800;
  margin-bottom: 1.25rem;
  text-shadow: 0 0 20px rgba(15, 215, 231, 0.48);
}
.mt-hero h1 .accent {
  background: linear-gradient(90deg, var(--neon), #b9fbff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mt-hero p.lead {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.15rem;
  max-width: 640px;
  margin-bottom: 2rem;
}
.mt-hero .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.mt-hero .hero-tag i { color: var(--mt-accent-soft); }

.mt-hero-visual {
  position: relative;
  border-radius: var(--mt-radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
}
.mt-hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.mt-hero-visual:hover img { transform: scale(1.03); }
@media (min-width: 992px) {
  /* Pull left text content closer to viewport's left edge */
  .mt-hero .row > .col-lg-6:first-child {
    margin-left: calc(50% - 50vw + 4rem);
    padding-left: 1rem;
  }
  /* Extend image frame to the right viewport edge with breathing room */
  .mt-hero-visual {
    margin-right: calc(50% - 50vw + 2rem);
    max-width: none;
  }
}
@media (min-width: 1400px) {
  .mt-hero .row > .col-lg-6:first-child {
    margin-left: calc(50% - 50vw + 6rem);
  }
  .mt-hero-visual {
    margin-right: calc(50% - 40vw + 2rem);
  }
}

/* Section header */
.mt-section {
  padding: 5rem 0;
  background: transparent;
}
.mt-section-alt {
  background: rgba(4, 22, 51, 0.52);
  border-block: 1px solid rgba(15, 215, 231, 0.18);
  backdrop-filter: blur(2px);
}
.mt-section-dark {
  background: rgba(3, 17, 38, 0.65);
  color: #fff;
  border-block: 1px solid var(--mt-neon-border);
  backdrop-filter: blur(2px);
}
.mt-section-dark h1, .mt-section-dark h2 {
  color: var(--neon);
  text-shadow: 0 0 18px rgba(15, 215, 231, 0.42);
}
.mt-section-dark h3 { color: #fff; }
.mt-section-dark p { color: rgba(255, 255, 255, 0.78); }

.mt-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mt-accent);
  margin-bottom: 0.75rem;
}
.mt-section-title {
  margin-bottom: 1rem;
}
.mt-section-title-name h3{
  font-size: 0.5rem
}
.mt-section-subtitle {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto 3rem;
}

/* ---------- Cards ---------- */
.mt-card {
  background: var(--mt-blue-panel);
  border-radius: var(--mt-radius);
  box-shadow: var(--mt-shadow-sm);
  padding: 2rem;
  height: 100%;
  border: 1px solid var(--mt-neon-border);
  transition: var(--mt-transition);
  position: relative;
  overflow: hidden;
}
.mt-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--mt-shadow-lg);
  border-color: var(--neon);
}
.mt-card .icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--mt-radius-sm);
  background: linear-gradient(135deg, rgba(10, 77, 162, 0.1), rgba(31, 109, 199, 0.1));
  /* color: var(--mt-primary); */
  color: var(--neon);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.mt-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.94);
}
.mt-card p {
  font-size: 0.95rem;
  line-height: 1.7;
   color: var(--neon);
   }

.mt-card-product {
  background: var(--mt-blue-panel);
  border-radius: var(--mt-radius);
  border: 1px solid var(--mt-neon-border);
  overflow: hidden;
  height: 100%;
  transition: var(--mt-transition);
  display: flex;
  flex-direction: column;
}
.mt-card-product:hover {
  transform: translateY(-6px);
  box-shadow: var(--mt-shadow-lg);
  border-color: var(--neon);
}
.mt-card-product .pc-image {
  background: rgba(255, 255, 255, 0.08);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.mt-card-product .pc-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.45s ease;
}
.mt-card-product:hover .pc-image img { transform: scale(1.06); }
.mt-card-product .pc-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.mt-card-product .pc-body .badge {
  align-self: flex-start;
  background: rgba(15, 215, 231, 0.12);
  color: var(--neon);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.mt-card-product .pc-body h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.94);
}
.mt-card-product .pc-body p {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  flex: 1;
}

/* Solution / feature list */
.mt-feature-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem 1rem;
  align-items: start;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(15, 215, 231, 0.28);
}

/* Solution background with dark overlay */
.solution-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 1;
  overflow: hidden;
}
.solution-overlay {
  display: none;
}
.solution-bg > * {
  position: relative;
  z-index: 3;
}
.solution-bg .icon-wrap {
  z-index: 4;
  margin-bottom: 0.5rem;
  background: rgba(15, 215, 231, 0.15);
  border: 2px solid rgb(15, 215, 231);
}
.solution-bg h3 {
  color: rgb(15, 215, 231);
  text-shadow:
    0 0 10px rgba(15, 215, 231, 0.8),
    0 0 20px rgba(15, 215, 231, 0.6),
    0 2px 4px rgba(0, 0, 0, 0.9),
    0 4px 8px rgba(0, 0, 0, 0.7);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.solution-bg p {
  color: rgb(185, 251, 255);
  text-shadow:
    0 0 8px rgba(15, 215, 231, 0.5),
    0 1px 3px rgba(0, 0, 0, 0.9),
    0 2px 6px rgba(0, 0, 0, 0.8);
  font-size: 0.88rem;
  line-height: 1.5;
}
.solution-bg span {
  color: rgb(15, 215, 231);
  text-shadow:
    0 0 6px rgba(15, 215, 231, 0.6),
    0 1px 2px rgba(0, 0, 0, 0.9),
    0 2px 4px rgba(0, 0, 0, 0.7);
  font-size: 0.9rem;
  font-weight: 600;
}

@media (max-width: 575.98px) {
  .solution-bg { min-height: 280px; }
}
.mt-feature-row .feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(15, 215, 231, 0.14);
  color: var(--neon);
  border: 1px solid var(--mt-neon-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Stats */
.mt-stat-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--mt-blue-panel);
  border: 1px solid var(--mt-neon-border);
  border-radius: var(--mt-radius);
  box-shadow: var(--mt-shadow-sm);
}
.mt-stat-card .stat-num {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--neon);
  line-height: 1;
  font-family: var(--mt-font-display);
}
.mt-stat-card .stat-label {
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  font-weight: 500;
}

/* CTA Banner */
.mt-cta {
  background: var(--mt-blue-panel);
  color: #fff;
  border-radius: var(--mt-radius-lg);
  border: 1px solid var(--mt-neon-border);
  box-shadow: var(--mt-shadow);
  width: min(100%, 640px);
  margin-inline: auto;
  padding: 1.5rem 1.25rem;
  position: relative;
  overflow: hidden;
}
.mt-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(255, 122, 24, 0.25), transparent 50%);
}
.mt-cta > * { position: relative; }
.mt-cta h2 {
  color: var(--neon);
  font-size: clamp(1.3rem, 1.2vw + 0.9rem, 1.85rem);
  text-shadow: 0 0 18px rgba(15, 215, 231, 0.42);
}
.mt-cta p { color: rgba(255, 255, 255, 0.86); }

/* Footer */
.mt-footer {
  background: var(--mt-darker);
  color: rgba(255, 255, 255, 0.78);
  padding: 4rem 0 1.5rem;
  border-top: 1px solid var(--mt-neon-border);
}
.mt-footer h5 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mt-footer a {
  color: rgba(255, 255, 255, 0.78);
  display: block;
  padding: 0.25rem 0;
}
.mt-footer a:hover { color: var(--mt-accent-soft); }
.mt-footer .social-icons a {
  display: inline-flex;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  align-items: center; justify-content: center;
  margin-right: 0.5rem;
}
.mt-footer .social-icons a:hover {
  background: var(--mt-accent);
  color: #fff;
}
.mt-footer-bottom {
  border-top: 1px solid var(--mt-neon-border);
  padding-top: 1.5rem;
  margin-top: 3rem;
  font-size: 0.85rem;
}

/* Breadcrumb hero */
.mt-page-hero {
  background: var(--mt-gradient-hero);
  color: #fff;
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--mt-neon-border);
}
.mt-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, #000, transparent 80%);
}
.mt-page-hero h1 {
  color: var(--neon);
  text-shadow: 0 0 18px rgba(15, 215, 231, 0.42);
}
.mt-page-hero .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}
.mt-page-hero .breadcrumb-item, .mt-page-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.85);
}
.mt-page-hero .breadcrumb-item.active { color: var(--mt-accent-soft); }
.mt-page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255, 255, 255, 0.45); }

/* Floating contact */
.mt-floating {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1040;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.mt-floating a {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: var(--mt-transition);
}
.mt-floating a:hover { transform: translateY(-3px) scale(1.05); }
.mt-floating .fab-line { background: #06c755; }
.mt-floating .fab-fb { background: #1877f2; }
.mt-floating .fab-call { background: var(--mt-accent); }

/* Scroll up button */
#mt-scroll-top {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--mt-primary);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1040;
  box-shadow: var(--mt-shadow);
  transition: var(--mt-transition);
}
#mt-scroll-top:hover { background: var(--mt-primary-dark); transform: translateY(-2px); }

/* Logo cloud */
.mt-logos {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 2rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.mt-logo-slider {
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.mt-logo-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  padding: 0.25rem 0 1rem;
  animation: mt-logo-slide 34s linear infinite;
}
.mt-logos img {
  width: 190px;
  height: 112px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: var(--mt-radius-sm);
  box-shadow: var(--mt-shadow-sm);
  filter: none;
  transition: var(--mt-transition);
}
.mt-logos img:hover {
  transform: translateY(-4px);
  box-shadow: var(--mt-shadow);
}
.mt-logo-slider:hover .mt-logo-track,
.mt-logo-slider:focus-within .mt-logo-track {
  animation-play-state: paused;
}
@keyframes mt-logo-slide {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 0.5rem)); }
}

/* Form */
.mt-form .form-control,
.mt-form .form-select {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--mt-neon-border);
  border-radius: var(--mt-radius-sm);
  background: rgba(243, 245, 247, 0.993);
  color: var(--neon);
  font-size: 0.95rem;
  transition: var(--mt-transition);
}
.mt-form .form-control:focus,
.mt-form .form-select:focus {
  border-color: var(--neon);
  box-shadow: 0 0 0 3px rgba(15, 215, 231, 0.16);
  background: #fff;
  color: #0a0a0a;
}
.mt-form label {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0.4rem;
}

/* Utilities */
.bg-soft {
  background: var(--mt-gradient-soft) !important;
  border-block: 1px solid var(--mt-neon-border);
}
.bg-dark-mt { background: var(--mt-darker); }
.text-mt-primary { color: var(--mt-primary); }
.text-mt-accent { color: var(--mt-accent); }
.text-muted { color: rgba(255, 255, 255, 0.9) !important; }
.shadow-mt { box-shadow: var(--mt-shadow); }
.shadow-mt-lg { box-shadow: var(--mt-shadow-lg); }
.rounded-mt { border-radius: var(--mt-radius); }

/* AOS-like reveal */
[data-mt-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-mt-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991.98px) {
  .mt-hero { padding: 4rem 0 3rem; }
  .mt-section { padding: 3.5rem 0; }
  .mt-cta { padding: 1.25rem 1rem; }
}
@media (max-width: 575.98px) {
  .mt-floating a { width: 46px; height: 46px; font-size: 1.2rem; }
  .mt-card { padding: 1.5rem; }
  .mt-logos img { width: 155px; height: 94px; }
}

/* Print friendly */
@media print {
  .mt-navbar, .mt-floating, #mt-scroll-top, .mt-footer { display: none !important; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
