/* ============================================================
   MARCO MOTORS — DESIGN SYSTEM v2
   Dark Premium Theme: Deep Navy + Electric Red + Chrome White
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --bg-0: #06070d;
  --bg-1: #0b0d17;
  --bg-2: #0f1120;
  --bg-3: #141829;
  --surface-1: #1a1e30;
  --surface-2: #1f243a;
  --surface-3: #252b42;
  --border-subtle: rgba(255,255,255,0.06);
  --border-light: rgba(255,255,255,0.10);
  --border-mid: rgba(255,255,255,0.16);

  /* Brand: Electric Red */
  --red-400: #ff4d4d;
  --red-500: #e63030;
  --red-600: #cc1f1f;
  --red-700: #991515;
  --red-glow: rgba(230, 48, 48, 0.25);
  --red-glow-strong: rgba(230, 48, 48, 0.45);

  /* Text */
  --text-primary: #f0f2ff;
  --text-secondary: #9ba3c0;
  --text-muted: #5c6480;
  --text-faint: #363d57;

  /* Chrome/Silver accent */
  --chrome-400: #c8cfe8;
  --chrome-500: #a8b4d4;

  /* Fonts */
  --font-display: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 28px;
  --r-full: 9999px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.15s var(--ease);
  --t-mid: 0.25s var(--ease);
  --t-slow: 0.4s var(--ease);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  position: relative;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg-0);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color var(--t-mid); }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   LAYOUT
   ============================================================ */
.mm-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .mm-container { padding: 0 2rem; }
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.display-text {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.mm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--t-mid);
  cursor: pointer;
  white-space: nowrap;
}

.mm-btn-primary {
  background: linear-gradient(135deg, var(--red-400), var(--red-500));
  color: #fff;
  box-shadow: 0 0 24px var(--red-glow), 0 2px 8px rgba(0,0,0,0.4);
}

.mm-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px var(--red-glow-strong), 0 6px 20px rgba(0,0,0,0.4);
  color: #fff;
}

.mm-btn-outline {
  border: 1.5px solid var(--border-mid);
  color: var(--text-primary);
  background: rgba(255,255,255,0.03);
}

.mm-btn-outline:hover {
  border-color: var(--red-400);
  color: var(--red-400);
  background: var(--red-glow);
}

.mm-btn-ghost {
  color: var(--text-secondary);
  background: transparent;
}

.mm-btn-ghost:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}

.mm-btn-lg {
  padding: 0.9rem 2.2rem;
  font-size: 1rem;
}

/* ============================================================
   HEADER / NAVIGATION — NEW DESIGN
   ============================================================ */
.mm-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 7, 13, 0.80);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--t-slow), border-color var(--t-slow), box-shadow var(--t-slow);
}

.mm-header.scrolled {
  background: rgba(6, 7, 13, 0.96);
  border-bottom-color: var(--border-light);
  box-shadow: 0 1px 40px rgba(0,0,0,0.6);
}

.mm-nav-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .mm-nav-inner { padding: 0 2rem; }
}

/* Logo */
.mm-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  transition: opacity var(--t-mid);
}
.mm-logo:hover { opacity: 0.85; }
.mm-logo img { height: 80px; width: auto; }

/* Desktop Nav Links */
.mm-nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

@media (min-width: 1024px) {
  .mm-nav-links { display: flex; }
}

.mm-nav-link {
  position: relative;
  padding: 0.45rem 0.9rem;
  border-radius: var(--r-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--t-mid), background var(--t-mid);
}

.mm-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--red-400);
  border-radius: 2px;
  transition: width var(--t-mid);
}

.mm-nav-link:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}

.mm-nav-link:hover::after { width: 60%; }

.mm-nav-link.active {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}

.mm-nav-link.active::after { width: 60%; }

/* Header Right Actions */
.mm-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.mm-header-phone {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.4rem 0.8rem;
  border-radius: var(--r-md);
  transition: color var(--t-mid), background var(--t-mid);
}

@media (min-width: 1024px) { .mm-header-phone { display: flex; } }

.mm-header-phone i { color: var(--red-400); }
.mm-header-phone:hover { color: var(--red-400); background: var(--red-glow); }

.mm-header-cta {
  padding: 0.5rem 1.2rem;
  border-radius: var(--r-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--red-400), var(--red-600));
  box-shadow: 0 0 20px var(--red-glow);
  transition: all var(--t-mid);
}

.mm-header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 32px var(--red-glow-strong);
  color: #fff;
}

/* Hamburger */
.mm-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--r-md);
  transition: background var(--t-fast);
  margin-left: auto;
}

@media (min-width: 1024px) { .mm-hamburger { display: none; } }

.mm-hamburger:hover { background: rgba(255,255,255,0.07); }

.mm-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--t-mid);
}

.mm-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mm-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mm-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mm-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(6, 7, 13, 0.99);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 6rem 2rem 2rem;
  gap: 0.5rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s;
  overflow-y: auto;
  visibility: hidden;
}

.mm-mobile-menu.open { 
  transform: translateX(0); 
  visibility: visible;
}

@media (min-width: 1024px) { .mm-mobile-menu { display: none !important; } }

.mm-mobile-link {
  padding: 1.1rem 1.2rem;
  border-radius: var(--r-lg);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-secondary);
  border: 1px solid transparent;
  transition: all var(--t-mid);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mm-mobile-link i { color: var(--red-400); font-size: 1.3rem; }

.mm-mobile-link:hover {
  color: var(--text-primary);
  background: var(--surface-1);
  border-color: var(--border-subtle);
}

.mm-mobile-cta {
  margin-top: 1.5rem;
  padding: 1.1rem 1.5rem;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--red-400), var(--red-600));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 0 30px var(--red-glow);
}

.mm-mobile-cta:hover { color: #fff; filter: brightness(1.1); }

.mm-mobile-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 0.75rem 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.mm-footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.mm-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red-500), transparent);
}

.mm-footer-body {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .mm-footer-body { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
}

@media (min-width: 1024px) {
  .mm-footer-body { padding: 5rem 2rem 4rem; }
}

.mm-footer-brand { max-width: 300px; }
.mm-footer-brand img { height: 50px; width: auto; margin-bottom: 1rem; }
.mm-footer-brand p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

.mm-footer-socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.mm-footer-social {
  width: 38px;
  height: 38px;
  border-radius: var(--r-md);
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: all var(--t-mid);
}

.mm-footer-social:hover {
  background: var(--red-glow);
  border-color: var(--red-500);
  color: var(--red-400);
  transform: translateY(-2px);
}

.mm-footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--chrome-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}

.mm-footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }

.mm-footer-col a {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--t-mid);
}

.mm-footer-col a::before {
  content: '›';
  color: var(--text-faint);
  transition: color var(--t-mid);
}

.mm-footer-col a:hover { color: var(--text-primary); }
.mm-footer-col a:hover::before { color: var(--red-400); }

.mm-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--t-mid);
}

.mm-footer-contact-item a { color: var(--text-muted); }
.mm-footer-contact-item a:hover { color: var(--red-400); }

.mm-footer-contact-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: var(--r-md);
  background: var(--surface-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-400);
  font-size: 0.9rem;
}

.mm-footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 1.5rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-faint);
}

@media (min-width: 640px) {
  .mm-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 1.5rem 2rem;
  }
}

.mm-footer-bottom a { color: var(--text-muted); }
.mm-footer-bottom a:hover { color: var(--red-400); }



/* ============================================================
   HERO — NEW LAYOUT
   ============================================================ */
.mm-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-0);
  isolation: isolate;
  z-index: 0;
}

/* Hero BG: grid pattern */
.mm-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 100%);
}

.mm-hero-glow-1 {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,48,48,0.12) 0%, transparent 65%);
  animation: glowPulse 6s ease-in-out infinite;
}

.mm-hero-glow-2 {
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90, 100, 230, 0.08) 0%, transparent 65%);
  animation: glowPulse 8s ease-in-out infinite reverse;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
}

.mm-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 6rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .mm-hero-inner {
    grid-template-columns: 1.3fr 0.7fr;
    padding: 0 2rem;
    min-height: 100vh;
  }
}

.mm-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--r-full);
  background: rgba(230, 48, 48, 0.1);
  border: 1px solid rgba(230, 48, 48, 0.25);
  color: var(--red-400);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 1.2rem;
  animation: fadeInUp 0.6s var(--ease) both;
}

.mm-hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-400);
  animation: blink 1.8s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.mm-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  animation: fadeInUp 0.7s var(--ease) 0.1s both;
}

.mm-hero-title .accent {
  color: var(--red-400);
  text-shadow: 0 0 60px rgba(230, 48, 48, 0.5);
}

.mm-hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 100%;
  overflow-wrap: break-word;
  animation: fadeInUp 0.7s var(--ease) 0.2s both;
}

.mm-hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  width: 100%;
  animation: fadeInUp 0.7s var(--ease) 0.3s both;
}

.mm-hero-actions .mm-btn {
  flex: 1 1 auto;
  min-width: 140px;
  justify-content: center;
  text-align: center;
}

/* Hero Stats */
.mm-hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--surface-1);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: 1.1rem 1.5rem;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  animation: fadeInUp 0.7s var(--ease) 0.4s both;
}

.mm-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  padding: 0 1.25rem;
}

.mm-hero-stat:not(:last-child) {
  border-right: 1px solid var(--border-subtle);
}

.mm-hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--red-400);
  line-height: 1;
  text-shadow: 0 0 20px var(--red-glow);
}

.mm-hero-stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Right: Image/Form Panel */
.mm-hero-panel {
  background: var(--surface-1);
  border: 1px solid var(--border-light);
  border-radius: var(--r-2xl);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s var(--ease) 0.2s both;
}

.mm-hero-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red-500), var(--red-400), #ff8080);
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
}

.mm-hero-panel-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.mm-hero-panel-sub {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* Form elements in hero */
.mm-form-group { margin-bottom: 1.2rem; }

.mm-form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.mm-form-select,
.mm-form-input {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  font-size: 0.9375rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--t-mid), box-shadow var(--t-mid), background var(--t-mid);
  appearance: none;
  -webkit-appearance: none;
}

.mm-form-select:focus,
.mm-form-input:focus {
  border-color: var(--red-400);
  box-shadow: 0 0 0 3px var(--red-glow);
  background: var(--bg-1);
}

.mm-form-select option { background: var(--bg-2); color: var(--text-primary); }

.mm-form-select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.mm-hero-panel-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.mm-perk {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.mm-perk i { color: var(--red-400); font-size: 1rem; }

/* Hero Slide Images (background) */
.mm-hero-slides {
  display: none;
}

@media (min-width: 1024px) {
  .mm-hero-slides {
    display: block;
    position: absolute;
    top: 0; right: 0;
    width: 55%;
    height: 100%;
    z-index: 0;
  }

  .mm-hero-slides::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--bg-0) 0%, rgba(6,7,13,0.5) 40%, transparent 100%);
    z-index: 1;
  }
}

.mm-hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.mm-hero-slide-img.active { opacity: 1; filter: brightness(0.4) saturate(0.7); }

/* ============================================================
   SECTION HELPERS
   ============================================================ */
.mm-section {
  padding: 5rem 0;
}

@media (min-width: 1024px) { .mm-section { padding: 7rem 0; } }

.mm-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.mm-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--r-full);
  background: rgba(230, 48, 48, 0.08);
  border: 1px solid rgba(230, 48, 48, 0.2);
  color: var(--red-400);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.mm-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.mm-section-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0.8rem auto 0;
  line-height: 1.7;
}

/* ============================================================
   VEHICLE CARDS
   ============================================================ */
.mm-card {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all var(--t-mid);
  cursor: pointer;
}

.mm-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-mid);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(230,48,48,0.15);
}

.mm-card-image {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg-2);
  overflow: hidden;
}

.mm-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.mm-card:hover .mm-card-image img { transform: scale(1.05); }

.mm-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: var(--r-full);
  background: var(--red-500);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mm-card-body { padding: 1.2rem; }

.mm-card-title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mm-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.mm-card-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.55rem;
  border-radius: var(--r-full);
  background: var(--bg-2);
  border: 1px solid var(--border-subtle);
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.mm-card-chip i { font-size: 0.8rem; color: var(--text-muted); }

.mm-card-price {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--red-400);
}

.mm-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.2rem;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-2);
}

.mm-card-location {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.mm-card-location i { color: var(--text-faint); }

.mm-card-arrow {
  width: 30px;
  height: 30px;
  border-radius: var(--r-full);
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: all var(--t-mid);
}

.mm-card:hover .mm-card-arrow {
  background: var(--red-500);
  border-color: var(--red-500);
  color: #fff;
}

/* ============================================================
   FEATURE CARDS (WHY US)
   ============================================================ */
.mm-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) { .mm-feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .mm-feature-grid { grid-template-columns: repeat(3, 1fr); } }

.mm-feature {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: 1.8rem;
  transition: all var(--t-mid);
  position: relative;
  overflow: hidden;
}

.mm-feature::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red-500), var(--red-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow);
}

.mm-feature:hover::before { transform: scaleX(1); }

.mm-feature:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.mm-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.mm-feature-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.mm-feature-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   FILTERS SIDEBAR
   ============================================================ */
.mm-filter-card {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  position: sticky;
  top: 88px;
}

.mm-filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.mm-filter-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mm-filter-title i { color: var(--red-400); }

.mm-filter-count {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.mm-filter-count span {
  color: var(--text-primary);
  font-weight: 700;
}

.mm-filter-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 1rem 0;
}

.mm-filter-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.5rem;
}

.mm-filter-select {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: 0.65rem 0.9rem;
  color: var(--text-primary);
  font-size: 0.875rem;
  font-family: var(--font-body);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color var(--t-mid), box-shadow var(--t-mid);
}

.mm-filter-select:focus {
  border-color: var(--red-400);
  box-shadow: 0 0 0 3px var(--red-glow);
}

.mm-filter-select option { background: var(--bg-2); }

.mm-filter-input {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: 0.65rem 0.9rem;
  color: var(--text-primary);
  font-size: 0.875rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--t-mid), box-shadow var(--t-mid);
}

.mm-filter-input:focus {
  border-color: var(--red-400);
  box-shadow: 0 0 0 3px var(--red-glow);
}

.mm-filter-input::placeholder { color: var(--text-faint); }

.mm-filter-reset {
  width: 100%;
  padding: 0.7rem;
  border-radius: var(--r-md);
  border: 1px solid var(--border-light);
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: all var(--t-mid);
}

.mm-filter-reset:hover {
  border-color: var(--red-400);
  color: var(--red-400);
  background: var(--red-glow);
}

/* ============================================================
   PAGE HEADER BANNER
   ============================================================ */
.mm-page-banner {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border-subtle);
  padding: 3rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}

.mm-page-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--red-500) 30%, var(--red-400) 70%, transparent 100%);
}

.mm-page-banner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,48,48,0.08) 0%, transparent 70%);
}

.mm-page-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) { .mm-page-banner-inner { padding: 0 2rem; } }

.mm-page-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.mm-page-banner p { font-size: 0.975rem; color: var(--text-secondary); margin-top: 0.5rem; }

.mm-page-banner-bar {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--red-500), var(--red-400));
  border-radius: var(--r-full);
  margin: 1rem auto 0;
}

/* ============================================================
   DETAIL PAGE
   ============================================================ */
.mm-breadcrumb {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.75rem 0;
}

.mm-breadcrumb-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

@media (min-width: 1024px) { .mm-breadcrumb-inner { padding: 0 2rem; } }

.mm-breadcrumb a { color: var(--text-muted); }
.mm-breadcrumb a:hover { color: var(--red-400); }
.mm-breadcrumb i { font-size: 0.65rem; color: var(--text-faint); }

/* Detail Gallery */
.mm-gallery-card {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.mm-gallery-main {
  position: relative;
  background: var(--bg-2);
  aspect-ratio: 16/10;
  overflow: hidden;
}

.mm-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--bg-2);
}

.mm-gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: var(--r-full);
  background: rgba(6, 7, 13, 0.7);
  border: 1px solid var(--border-mid);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--t-mid);
  z-index: 10;
}

.mm-gallery-nav-btn:hover {
  background: var(--red-500);
  border-color: var(--red-500);
}

.mm-gallery-nav-btn.prev { left: 0.5rem; }
.mm-gallery-nav-btn.next { right: 0.5rem; }

.mm-gallery-thumbs {
  padding: 0.75rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
}

.mm-gallery-thumbs::-webkit-scrollbar { height: 4px; }
.mm-gallery-thumbs::-webkit-scrollbar-track { background: transparent; }
.mm-gallery-thumbs::-webkit-scrollbar-thumb { background: var(--border-mid); border-radius: 4px; }

.mm-gallery-thumb {
  flex-shrink: 0;
  width: 70px;
  height: 52px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--t-mid);
}

.mm-gallery-thumb.active { border-color: var(--red-400); }
.mm-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Detail Info Card */
.mm-detail-info {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.mm-detail-info::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red-500), var(--red-400));
}

.mm-detail-price-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.25rem;
}

.mm-detail-price {
  font-family: var(--font-body);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--red-400);
  text-shadow: 0 0 30px var(--red-glow);
  line-height: 1;
}

.mm-detail-title {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.mm-detail-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.mm-detail-location i { color: var(--text-faint); }

/* Specs Grid */
.mm-specs-card {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: 1.5rem;
}

.mm-specs-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mm-specs-title i { color: var(--red-400); }

.mm-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.mm-spec-item {
  background: var(--bg-2);
  border-radius: var(--r-md);
  padding: 0.75rem;
  border: 1px solid var(--border-subtle);
}

.mm-spec-key {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.mm-spec-val {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Contact Card */
.mm-contact-card {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: 1.5rem;
}

.mm-contact-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mm-contact-title i { color: var(--red-400); }

.mm-btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem;
  border-radius: var(--r-lg);
  background: var(--surface-2);
  border: 1px solid var(--border-mid);
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: all var(--t-mid);
  margin-bottom: 0.75rem;
}

.mm-btn-call:hover {
  background: var(--red-500);
  border-color: var(--red-500);
  color: #fff;
  box-shadow: 0 0 24px var(--red-glow);
}

.mm-btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem;
  border-radius: var(--r-lg);
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  transition: all var(--t-mid);
}

.mm-btn-wa:hover {
  background: #1ebe5c;
  color: #fff;
  box-shadow: 0 0 24px rgba(37, 211, 102, 0.4);
}

/* Share card */
.mm-share-card {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: 1.25rem;
}

.mm-share-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.mm-share-title i { color: var(--red-400); }

.mm-share-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }

.mm-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--r-md);
  background: var(--bg-2);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all var(--t-mid);
}

.mm-share-btn:hover { border-color: var(--red-400); color: var(--red-400); background: var(--red-glow); }

/* ============================================================
   LOADING / ERROR STATES
   ============================================================ */
.mm-loading-skeleton {
  background: linear-gradient(90deg, var(--surface-1) 0%, var(--surface-2) 50%, var(--surface-1) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: var(--r-lg);
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.mm-error-box {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-2xl);
  padding: 2.5rem;
  text-align: center;
  max-width: 400px;
  width: 100%;
}

.mm-error-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(230, 48, 48, 0.1);
  border: 1px solid rgba(230, 48, 48, 0.2);
  color: var(--red-400);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}

/* ============================================================
   SWIPER CUSTOMIZATION
   ============================================================ */
.mm-swiper-btn {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: var(--r-full);
  background: var(--surface-2);
  border: 1px solid var(--border-mid);
  color: var(--text-primary);
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--t-mid);
}

@media (min-width: 768px) { .mm-swiper-btn { display: flex; } }

.mm-swiper-btn:hover { background: var(--red-500); border-color: var(--red-500); }
.mm-swiper-btn.prev-btn { left: -52px; }
.mm-swiper-btn.next-btn { right: -52px; }

/* ============================================================
   FAQ
   ============================================================ */
.mm-faq-item {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: border-color var(--t-mid);
}

.mm-faq-item.open {
  border-color: var(--red-500);
  box-shadow: 0 0 20px rgba(230, 48, 48, 0.1);
}

.mm-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1rem;
  user-select: none;
}

.mm-faq-question i {
  color: var(--red-400);
  font-size: 1.1rem;
  transition: transform var(--t-mid);
  flex-shrink: 0;
}

.mm-faq-item.open .mm-faq-question i { transform: rotate(180deg); }

.mm-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow), padding var(--t-slow);
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.mm-faq-item.open .mm-faq-answer {
  max-height: 600px;
  padding: 0 1.5rem 1.3rem;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.mm-contact-info-card {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: 1.8rem;
}

.mm-contact-form-card {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: 2rem;
}

.mm-contact-form-card h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.mm-about-hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  padding: 5rem 0;
}

.mm-about-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: saturate(0.4);
}

.mm-about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-2) 20%, transparent 100%);
  z-index: 1;
}

.mm-about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

@media (min-width: 1024px) { .mm-about-hero-inner { padding: 0 2rem; } }

.mm-stat-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) { .mm-stat-boxes { grid-template-columns: repeat(4, 1fr); } }

.mm-stat-box {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: 1.5rem 1rem;
  text-align: center;
}

.mm-stat-box-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--red-400);
  text-shadow: 0 0 20px var(--red-glow);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.mm-stat-box-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

@media (max-width: 480px) {
  .mm-stat-boxes { gap: 0.6rem; }
  .mm-stat-box { padding: 1rem 0.5rem; }
  .mm-stat-box-num { font-size: 1.5rem; }
  .mm-stat-box-label { font-size: 0.68rem; }
}

/* ============================================================
   SELECT2 OVERRIDES — DARK THEME
   ============================================================ */
.select2-container .select2-selection--single {
  background: var(--bg-2) !important;
  border: 1px solid var(--border-light) !important;
  border-radius: var(--r-lg) !important;
  height: 3rem !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 1rem !important;
  outline: none !important;
  transition: all var(--t-mid) !important;
}

.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single {
  border-color: var(--red-400) !important;
  box-shadow: 0 0 0 3px var(--red-glow) !important;
}

.select2-dropdown {
  background: var(--surface-2) !important;
  border: 1px solid var(--border-mid) !important;
  border-radius: var(--r-lg) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7) !important;
  overflow: hidden !important;
  margin-top: 6px !important;
  z-index: 9999 !important;
}

.select2-search--dropdown { padding: 10px !important; background: var(--surface-2) !important; }

.select2-search__field {
  background: var(--bg-2) !important;
  border: 1px solid var(--border-light) !important;
  border-radius: var(--r-md) !important;
  padding: 0.6rem 1rem !important;
  color: var(--text-primary) !important;
  font-size: 0.875rem !important;
  outline: none !important;
  font-family: var(--font-body) !important;
}

.select2-search__field:focus {
  border-color: var(--red-400) !important;
}

.select2-results__option {
  padding: 0.7rem 1rem !important;
  font-size: 0.9rem !important;
  color: var(--text-secondary) !important;
  background: var(--surface-2) !important;
  transition: all var(--t-fast) !important;
  border-bottom: 1px solid var(--border-subtle) !important;
  display: flex !important;
  align-items: center !important;
}

.select2-results__option:last-child { border-bottom: none !important; }

.select2-results__option--highlighted[aria-selected],
.select2-results__option:hover {
  background: var(--red-glow) !important;
  color: var(--red-400) !important;
}

.select2-results__options { max-height: 300px !important; }

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100% !important;
  right: 12px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: var(--text-muted) transparent transparent transparent !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: normal !important;
  padding-left: 0 !important;
  color: var(--text-primary) !important;
  font-weight: 500 !important;
  font-size: 0.9375rem !important;
}

.select2-selection__rendered > span {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s var(--ease) both;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-red { color: var(--red-400); }
.bg-surface { background: var(--surface-1); }
.border-subtle { border: 1px solid var(--border-subtle); }

/* content/prose (for policy pages) */
.content-html h1, .content-html h2, .content-html h3, .content-html h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.content-html h1 { font-size: 1.75rem; }
.content-html h2 { font-size: 1.4rem; }
.content-html h3 { font-size: 1.15rem; }
.content-html h1:not(:first-child), .content-html h2:not(:first-child),
.content-html h3:not(:first-child) { margin-top: 2.5rem; }
.content-html p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 1rem; }
.content-html ul { list-style: disc; padding-left: 1.5rem; }
.content-html ol { list-style: decimal; padding-left: 1.5rem; }
.content-html ul li, .content-html ol li { color: var(--text-secondary); margin-bottom: 0.5rem; }

/* Mobile text mode */
@media only screen and (max-width: 40rem) {
  .text-mode { writing-mode: sideways-lr; white-space: nowrap; }
}

/* ============================================================
   HAKKIMIZDA PAGE COMPONENTS
   ============================================================ */
.mm-about-hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
}
.mm-about-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: grayscale(40%);
}
.mm-about-hero-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Stats bar */
.mm-stat-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) {
  .mm-stat-boxes { grid-template-columns: repeat(4, 1fr); }
}
.mm-stat-box {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: border-color var(--t-mid), transform var(--t-mid);
}
.mm-stat-box:hover {
  border-color: var(--border-mid);
  transform: translateY(-3px);
}
.mm-stat-box-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--red-400);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.mm-stat-box-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Feature cards (hakkimizda grid) */
.mm-feature {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  transition: border-color var(--t-mid), transform var(--t-mid);
}
.mm-feature:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}
.mm-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}
.mm-feature-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}
.mm-feature-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   PAGE BANNER (İletişim, SSS, etc.)
   ============================================================ */
.mm-page-banner {
  background: var(--bg-1);
  border-bottom: 1px solid var(--border-subtle);
  padding: 3.5rem 0 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mm-page-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 150px;
  background: radial-gradient(ellipse at top, rgba(230,48,48,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.mm-page-banner-inner {
  position: relative;
  max-width: 650px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.mm-page-banner-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.mm-page-banner-inner p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.mm-page-banner-bar {
  display: none;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--red-500), var(--red-400));
  border-radius: 99px;
  margin: 1.25rem auto 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.mm-contact-info-card {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.mm-contact-info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red-500), var(--red-400));
}

/* ============================================================
   FILTER PANEL DARK OVERRIDES (ilanlar)
   ============================================================ */
.mm-filter-panel input[type="number"],
.mm-filter-panel select {
  background: var(--surface-2) !important;
  border-color: var(--border-subtle) !important;
  color: var(--text-primary) !important;
}
.mm-filter-panel input[type="number"]::placeholder { color: var(--text-faint); }
.mm-filter-panel label { color: var(--text-secondary); }

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.mm-wa-fab {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 9999;
  width: 40px;
  height: 40px;
  background: #25D366;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
  transition: transform var(--t-mid), box-shadow var(--t-mid);
  color: #fff;
  flex-shrink: 0;
  opacity: 0.85;
}
.mm-wa-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  opacity: 1;
}
.mm-wa-fab svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: block;
}

@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.3); }
  70%  { box-shadow: 0 0 0 7px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.mm-wa-fab { animation: waPulse 2.5s infinite; }
.mm-wa-fab:hover { animation: none; }

/* ============================================================
   DARK FORM OVERRIDES (degerleme/ multi-step forms)
   ============================================================ */
body select,
body input[type="text"],
body input[type="number"],
body input[type="email"],
body input[type="tel"],
body input[type="date"],
body textarea {
  background: var(--surface-2) !important;
  border: 1px solid var(--border-light) !important;
  color: var(--text-primary) !important;
  border-radius: var(--r-md) !important;
}
body select option { background: var(--bg-2); color: var(--text-primary); }
body input::placeholder,
body textarea::placeholder { color: var(--text-faint); }
body input:focus,
body select:focus,
body textarea:focus {
  outline: none !important;
  border-color: var(--red-500) !important;
  box-shadow: 0 0 0 3px var(--red-glow) !important;
}

/* Degerleme step labels & headings */
body label { color: var(--text-secondary); }
body .step-indicator,
body [class*="step-"] { color: var(--text-secondary); }

/* ============================================================
   İLAN DETAIL — SPECS GRID
   ============================================================ */
.mm-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  overflow: hidden;
}

.mm-spec-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  transition: border-color var(--t-mid), background var(--t-mid);
  min-width: 0;
  overflow: hidden;
}

.mm-spec-item:hover {
  border-color: var(--border-light);
  background: var(--surface-1);
}

.mm-spec-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: var(--r-md);
  background: rgba(230, 48, 48, 0.08);
  border: 1px solid rgba(230, 48, 48, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-400);
  font-size: 1rem;
  flex-shrink: 0;
}

.mm-spec-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  overflow: hidden;
}

.mm-spec-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mm-spec-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Full-width for odd last item */
.mm-specs-grid .mm-spec-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

@media (max-width: 480px) {
  .mm-specs-grid .mm-spec-item:last-child:nth-child(odd) {
    grid-column: 1;
  }
}

/* ============================================================
   DEĞERLEMİ / MOTOSIKLET SAT — DARK THEME OVERRIDES
   ============================================================ */

/* ---- Page layout ---- */
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-7xl { max-width: 80rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.pt-3 { padding-top: 0.75rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-1 { margin-top: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-grow { flex-grow: 1; }
.flex-wrap { flex-wrap: wrap; }
.hidden { display: none; }
.block { display: block; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.w-full { width: 100%; }
.h-12 { height: 3rem; }
.h-7 { height: 1.75rem; }
.w-7 { width: 1.75rem; }
.h-0\.5 { height: 2px; }
.w-6 { width: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.overflow-hidden { overflow: hidden; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.text-right { text-align: right; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-xl { font-size: 1.25rem; }
.text-3xl { font-size: 1.875rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.leading-none { line-height: 1; }
.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.05em; }

/* ---- Step indicator bar ---- */
.border-b { border-bottom: 1px solid var(--border-subtle); }
.bg-gray-50,
.bg-white {
  background: var(--bg-1) !important;
}
.sticky { position: sticky; }
.top-0 { top: 0; }
.z-20 { z-index: 20; }

/* Step pills */
.border-brand-500 {
  border-color: var(--red-500) !important;
}
.bg-brand-50 {
  background: rgba(230, 48, 48, 0.08) !important;
}
.bg-brand-500 {
  background: var(--red-500) !important;
}
.text-white { color: #fff !important; }
.text-gray-900 { color: var(--text-primary) !important; }
.text-gray-700 { color: var(--text-secondary) !important; }
.text-gray-500 { color: var(--text-muted) !important; }
.text-gray-400 { color: var(--text-faint) !important; }
.text-brand-600 { color: var(--red-400) !important; }
.text-red-600 { color: #f87171 !important; }
.border-gray-200,
.border-gray-100 {
  border-color: var(--border-subtle) !important;
}
.bg-gray-100 {
  background: var(--surface-2) !important;
}

/* Active step */
.flex.items-center.gap-2.rounded-full.border.px-2.py-2.border-brand-500.bg-brand-50.text-gray-900 {
  background: rgba(230, 48, 48, 0.12) !important;
  border-color: var(--red-500) !important;
  box-shadow: 0 0 0 4px rgba(230, 48, 48, 0.08);
}

/* Inactive steps */
.flex.items-center.gap-2.rounded-full.border.px-2.py-2.border-gray-200.bg-white.text-gray-400 {
  background: var(--surface-1) !important;
  border-color: var(--border-subtle) !important;
  color: var(--text-faint) !important;
}

/* Step connector line */
.bg-gray-200 {
  background: var(--border-subtle) !important;
}

/* ---- Main form card ---- */
#degerlemeForm,
[data-offer-summary] {
  background: var(--surface-1) !important;
  border-color: var(--border-subtle) !important;
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
  animation: dFormSlide 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes dFormSlide {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Form header */
.text-xl.font-bold.text-gray-900.flex.items-center.gap-2.mb-2,
.text-xl.font-bold.text-gray-900.flex.items-center.gap-2 {
  color: var(--text-primary) !important;
  font-family: 'Syne', sans-serif !important;
  font-size: 1.3rem !important;
}

/* Form footer bar */
.p-6.bg-gray-50.border-t {
  background: var(--bg-0) !important;
  border-top-color: var(--border-subtle) !important;
}

/* Submit / next button */
button[data-vehicle-info-submit],
button[data-ekspertiz-submit],
button[data-kisi-submit],
.inline-flex.h-12.items-center.justify-center.gap-2.rounded-xl.bg-brand-500 {
  background: linear-gradient(135deg, var(--red-500), #c0392b) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.02em !important;
  border-radius: var(--r-lg) !important;
  padding: 0 2rem !important;
  transition: transform 0.18s, box-shadow 0.18s !important;
  box-shadow: 0 4px 16px rgba(230, 48, 48, 0.35) !important;
}

button[data-vehicle-info-submit]:hover,
button[data-ekspertiz-submit]:hover,
button[data-kisi-submit]:hover,
.inline-flex.h-12.items-center.justify-center.gap-2.rounded-xl.bg-brand-500:hover {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 8px 24px rgba(230, 48, 48, 0.45) !important;
}

/* ---- Inputs & Selects ---- */
.h-12.w-full.rounded-xl.border,
input[type="month"],
input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"] {
  background: var(--surface-2) !important;
  border-color: var(--border-light) !important;
  color: var(--text-primary) !important;
  border-radius: var(--r-md) !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
}

.h-12.w-full.rounded-xl.border:focus,
input[type="month"]:focus,
input[type="text"]:focus,
input[type="number"]:focus {
  border-color: var(--red-500) !important;
  box-shadow: 0 0 0 3px rgba(230,48,48,0.12) !important;
  outline: none !important;
}

/* ---- Summary sidebar ---- */
[data-offer-summary] {
  background: var(--surface-1) !important;
  border-color: var(--border-subtle) !important;
}

.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* Summary inner boxes */
.bg-gray-50.rounded-xl.p-4.space-y-2.border,
.bg-gray-50.rounded-xl.p-4.border {
  background: var(--bg-0) !important;
  border-color: var(--border-subtle) !important;
  border-radius: var(--r-lg) !important;
}

/* Section headers in summary */
.text-xs.font-bold.text-gray-400.uppercase.tracking-wider {
  color: var(--text-faint) !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.08em !important;
}

/* Separator lines in summary */
.border-t { border-top: 1px solid var(--border-subtle) !important; }

/* Section heading icons */
.text-brand-600 { color: var(--red-400) !important; }

/* ---- Grid helpers ---- */
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:col-span-2 { grid-column: span 2 / span 2; }
  .md\:block { display: block !important; }
  .md\:gap-4 { gap: 1rem; }
}
@media (min-width: 1024px) {
  .lg\:flex-row { flex-direction: row; }
  .lg\:w-2\/3 { width: 66.666667%; }
  .lg\:w-1\/3 { width: 33.333333%; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .sm\:flex { display: flex !important; }
}
@media (min-width: 640px) {
  .sm\:flex { display: flex !important; }
}

/* Sticky sidebar */
.sticky.top-28 { position: sticky; top: 7rem; }

/* ---- Animate-fadeIn ---- */
.animate-fadeIn {
  animation: dFormSlide 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Spinner */
@keyframes spin { to { transform: rotate(360deg); } }
.animate-spin { animation: spin 1s linear infinite; }

/* ---- min-h helpers ---- */
.min-h-\[600px\] { min-height: 600px; }
.max-w-\[150px\] { max-width: 150px; }

/* Disabled state */
select:disabled,
input:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}

/* ---- Select2 dark overrides ---- */
.select2-container--default .select2-selection--single {
  background: var(--surface-2) !important;
  border: 1px solid var(--border-light) !important;
  border-radius: var(--r-md) !important;
  height: 3rem !important;
  display: flex !important;
  align-items: center !important;
  color: var(--text-primary) !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--text-primary) !important;
  line-height: 3rem !important;
  padding: 0 1rem !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 3rem !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: var(--text-faint) transparent transparent transparent !important;
}
.select2-dropdown {
  background: var(--surface-2) !important;
  border: 1px solid var(--border-subtle) !important;
  border-radius: var(--r-md) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4) !important;
}
.select2-container--default .select2-results__option {
  color: var(--text-primary) !important;
  padding: 0.6rem 1rem !important;
  font-size: 0.875rem !important;
}
.select2-container--default .select2-results__option--highlighted {
  background: rgba(230, 48, 48, 0.12) !important;
  color: var(--red-400) !important;
}
.select2-search--dropdown .select2-search__field {
  background: var(--bg-0) !important;
  border: 1px solid var(--border-subtle) !important;
  color: var(--text-primary) !important;
  border-radius: var(--r-sm) !important;
  padding: 0.5rem !important;
}
.select2-container--default.select2-container--open .select2-selection--single {
  border-color: var(--red-500) !important;
  box-shadow: 0 0 0 3px rgba(230,48,48,0.12) !important;
}

/* Native selects fallback (when select2 hasn't wrapped) */
select.w-full,
select {
  background: var(--surface-2) !important;
  border: 1px solid var(--border-light) !important;
  color: var(--text-primary) !important;
  border-radius: var(--r-md) !important;
  height: 3rem !important;
  padding: 0 1rem !important;
  font-size: 0.875rem !important;
  appearance: auto !important;
}
select option {
  background: var(--bg-1) !important;
  color: var(--text-primary) !important;
}
/* ============================================================
   CUSTOM EXSPERTIZ INPUTS
   ============================================================ */

/* Toggle Button */
.mm-toggle-label {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}
.mm-toggle-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.mm-toggle-track {
    width: 44px;
    height: 24px;
    background-color: var(--surface-3);
    border-radius: 999px;
    position: relative;
    transition: background-color 0.3s ease;
    border: 1px solid var(--border-subtle);
}
.mm-toggle-track::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    background-color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.mm-toggle-input:checked + .mm-toggle-track {
    width: 44px;
    height: 24px;
    background-color: var(--surface-3);
    border-radius: 999px;
    position: relative;
    transition: background-color 0.3s ease;
    border: 1px solid var(--border-subtle);
}
.mm-toggle-track::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    background-color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.mm-toggle-input:checked + .mm-toggle-track::after {
    transform: translateX(20px);
}

/* Premium Checkbox */
.mm-checkbox-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-xl);
    cursor: pointer;
    background: var(--surface-2);
    transition: all 0.2s ease;
}
.mm-checkbox-card:hover {
    border-color: var(--border-light);
    background: var(--surface-3);
}
.mm-checkbox-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.mm-checkbox-box {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    border: 2px solid var(--border-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    background: var(--bg-1);
    color: transparent;
}
.mm-checkbox-box i {
    font-size: 16px;
    font-weight: bold;
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.mm-checkbox-input:checked + .mm-checkbox-box {
    background: var(--red-500, #ef4444);
    border-color: var(--red-500, #ef4444);
    color: white;
}
.mm-checkbox-input:checked + .mm-checkbox-box i {
    transform: scale(1);
}
.mm-checkbox-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* Premium File Upload */
.mm-file-area {
    border: 2px dashed var(--border-mid);
    border-radius: var(--r-xl);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--surface-1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.mm-file-area:hover {
    border-color: var(--red-500, #ef4444);
    background: var(--surface-2);
}
.mm-file-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}
.mm-file-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-2);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border: 1px solid var(--border-subtle);
    transition: transform 0.3s ease;
}
.mm-file-area:hover .mm-file-icon {
    transform: translateY(-5px);
}
.mm-file-icon i {
    color: var(--red-500, #ef4444);
    font-size: 24px;
}
.mm-file-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.mm-file-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 250px;
}

/* Premium Radio for Damage Table */
.mm-radio-label {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 24px;
    height: 24px;
}
.mm-radio-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.mm-radio-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border-mid);
    position: relative;
    transition: all 0.2s ease;
    background: var(--bg-1);
}
.mm-radio-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.mm-radio-input:checked + .mm-radio-circle {
    border-color: currentColor;
}
.mm-radio-input:checked + .mm-radio-circle .mm-radio-inner {
    background-color: currentColor;
    transform: translate(-50%, -50%) scale(1);
}
.mm-radio-green { color: #22c55e; }
.mm-radio-yellow { color: #eab308; }
.mm-radio-orange { color: #f97316; }
.mm-radio-red { color: #ef4444; }

/* ============================================================
   MOBILE RESPONSIVE — Small screens (≤640px / S25 vb.)
   ============================================================ */
@media (max-width: 640px) {
  /* Hero inner — tighter padding */
  .mm-hero-inner {
    padding: 5rem 1rem 3rem;
    box-sizing: border-box;
    max-width: 100vw;
  }

  /* Badge — küçük ekranda wrap olsun */
  .mm-hero-badge {
    font-size: 0.68rem;
    letter-spacing: 0.02em;
    padding: 0.3rem 0.7rem;
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
  }

  /* Hero title — daha küçük, kesinlikle wrap */
  .mm-hero-title {
    font-size: 1.75rem !important;
    line-height: 1.15;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  /* Hero desc — tam genişlik */
  .mm-hero-desc {
    font-size: 0.92rem;
    max-width: 100%;
  }

  /* Hero butonları — alt alta */
  .mm-hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .mm-hero-actions .mm-btn {
    width: 100%;
    justify-content: center;
  }

  /* Hero stats — yatayda kaymayı engelle */
  .mm-hero-stats {
    padding: 0.8rem 0.75rem;
    width: 100%;
    overflow: hidden;
  }
  .mm-hero-stat {
    padding: 0 0.6rem;
    flex: 1;
  }
  .mm-hero-stat-num {
    font-size: 1.2rem;
  }
  .mm-hero-stat-label {
    font-size: 0.6rem;
  }

  /* Hero panel — tam genişlik */
  .mm-hero-panel {
    margin: 0;
    padding: 1.5rem 1rem;
  }

  /* Section headers */
  .mm-section-title {
    font-size: 1.6rem !important;
  }

  /* Global — kesinlikle yatay scroll olmasın */
  body, html {
    overflow-x: hidden !important;
    max-width: 100vw;
  }

  /* Tüm direkt çocuklar viewport'u aşmasın */
  body > * {
    max-width: 100vw;
    overflow-x: hidden;
  }
}
