/*
 * MEST OTOMOTİV — Modern Automotive Design System
 * 2025 | Clean, Professional, Performance-First
 */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --primary:       #c7081b;
  --primary-dark:  #a00616;
  --primary-light: #e50d22;
  --secondary:     #1a1a2e;
  --accent:        #f0a500;
  --text-dark:     #1c1c2e;
  --text-mid:      #4a4a6a;
  --text-light:    #8888a8;
  --bg-light:      #f8f9fc;
  --bg-section:    #f2f3f7;
  --white:         #ffffff;
  --border:        #e2e4ec;
  --shadow-sm:     0 2px 8px rgba(0,0,0,.08);
  --shadow-md:     0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:     0 20px 60px rgba(0,0,0,.16);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --transition:    all .3s cubic-bezier(.25,.8,.25,1);
  --font-sans:     'DM Sans', 'Inter', system-ui, sans-serif;
  --font-display:  'Bebas Neue', 'Impact', sans-serif;
}

/* ── Hero Subtitle (Aciklama kolonu) ────────────────────────── */
.hero-subtitle {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-top: 8px;
  margin-bottom: 0;
  max-width: 560px;
  font-weight: 400;
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

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

/* ── HEADER / TOOLBAR ──────────────────────────────────────── */
header.mo-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.mo-topbar {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: rgba(255,255,255,.85);
  padding: 10px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mo-topbar a { 
  color: rgba(255,255,255,.85); 
  text-decoration: none;
  transition: var(--transition);
}
.mo-topbar a:hover { color: var(--accent); }

.mo-topbar .topbar-info { 
  display: flex; 
  align-items: center; 
  gap: 24px;
  flex-wrap: wrap;
}
.mo-topbar .topbar-link { 
  display: inline-flex; 
  align-items: center; 
  gap: 8px;
  padding: 4px 0;
  font-size: 13px;
  transition: var(--transition);
}
.mo-topbar .topbar-link i {
  color: var(--accent);
  font-size: 12px;
  width: 16px;
  text-align: center;
}
.mo-topbar .topbar-link:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.mo-topbar .topbar-right { 
  display: flex; 
  align-items: center; 
  gap: 16px; 
  justify-content: flex-end; 
}

.topbar-langs {
  display: flex;
  gap: 6px;
  align-items: center;
}

.mo-lang-btn {
  display: inline-flex; 
  align-items: center; 
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  font-size: 16px;
  cursor: pointer; 
  transition: var(--transition);
  border: 2px solid transparent;
}
.mo-lang-btn:hover { 
  background: rgba(255,255,255,.15);
  transform: scale(1.1);
}
.mo-lang-btn.active {
  background: var(--primary);
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(199,8,27,.4);
}

.mo-search-bar {
  display: flex; 
  align-items: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 24px;
  padding: 6px 16px;
  gap: 10px;
  transition: var(--transition);
}
.mo-search-bar:focus-within {
  background: rgba(255,255,255,.18);
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(240,165,0,.2);
}
.mo-search-bar input {
  background: transparent; 
  border: none; 
  outline: none;
  color: white; 
  font-size: 13px; 
  width: 200px;
}
.mo-search-bar input::placeholder { 
  color: rgba(255,255,255,.5); 
}
.mo-search-bar i { 
  color: rgba(255,255,255,.6); 
  font-size: 14px;
  transition: var(--transition);
}
.mo-search-bar:focus-within i {
  color: var(--accent);
}

/* ── NAVBAR ────────────────────────────────────────────────── */
.mo-navbar {
  background: var(--white);
  border-bottom: 3px solid var(--primary);
  padding: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
}

.mo-navbar .navbar-brand {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 1.5px;
  color: var(--secondary) !important;
  display: flex; 
  align-items: center; 
  gap: 12px;
  padding: 12px 0;
  transition: var(--transition);
}
.mo-navbar .navbar-brand:hover {
  transform: scale(1.02);
}
.mo-navbar .navbar-brand img { 
  height: 48px; 
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.1));
}
.mo-navbar .navbar-brand .brand-accent { 
  color: var(--primary); 
}

.mo-navbar .navbar-toggler {
  border: 2px solid var(--primary);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}
.mo-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(199,8,27,.2);
}

.mo-navbar .navbar-nav {
  align-items: center;
  gap: 4px;
}

.mo-navbar .nav-item {
  position: relative;
}

.mo-navbar .nav-link {
  font-weight: 600; 
  font-size: 13px; 
  letter-spacing: .5px;
  color: var(--text-dark) !important;
  padding: 22px 14px !important;
  text-transform: uppercase;
  position: relative;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}

.mo-navbar .nav-link i {
  font-size: 14px;
  opacity: .7;
  transition: var(--transition);
}

.mo-navbar .nav-link::after {
  content: ''; 
  position: absolute; 
  bottom: 0; 
  left: 50%; 
  right: 50%;
  height: 3px; 
  background: var(--primary);
  transition: var(--transition);
}

.mo-navbar .nav-link:hover {
  color: var(--primary) !important;
}
.mo-navbar .nav-link:hover i {
  opacity: 1;
  transform: translateY(-2px);
}
.mo-navbar .nav-link:hover::after,
.mo-navbar .nav-item.active > .nav-link::after { 
  left: 0; 
  right: 0; 
}

/* ── DROPDOWN MENUS ────────────────────────────────────────── */
.mo-navbar .dropdown-menu {
  border: none;
  border-top: 3px solid var(--primary);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
  padding: 12px 0;
  min-width: 240px;
  margin-top: 0;
  animation: dropdownSlide .3s ease;
}

@keyframes dropdownSlide {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mo-navbar .dropdown-header {
  padding: 8px 20px 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.mo-navbar .dropdown-divider {
  margin: 8px 0;
  border-top: 1px solid var(--border);
}

.mo-navbar .dropdown-item {
  padding: 10px 20px; 
  font-size: 14px; 
  font-weight: 500;
  color: var(--text-dark);
  border-left: 3px solid transparent;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.mo-navbar .dropdown-item i {
  width: 18px;
  text-align: center;
  color: var(--text-light);
  font-size: 13px;
  transition: var(--transition);
}

.mo-navbar .dropdown-item:hover {
  background: var(--bg-light);
  border-left-color: var(--primary);
  color: var(--primary);
  padding-left: 26px;
}

.mo-navbar .dropdown-item:hover i {
  color: var(--primary);
  transform: translateX(3px);
}

/* ── MEGA MENU ─────────────────────────────────────────────── */
.mo-navbar .mega-dropdown .mega-menu {
  min-width: 500px;
  padding: 20px;
}

.mo-navbar .mega-menu .row {
  margin: 0;
}

.mo-navbar .mega-menu .col-md-6 {
  padding: 0 15px;
}

/* ── NAV BUTTON ────────────────────────────────────────────── */
.mo-navbar .nav-btn {
  margin-left: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white !important;
  padding: 10px 20px !important; 
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  box-shadow: 0 4px 12px rgba(199,8,27,.3);
  transition: var(--transition);
}
.mo-navbar .nav-btn:hover { 
  background: linear-gradient(135deg, var(--primary-dark) 0%, #800510 100%);
  box-shadow: 0 6px 20px rgba(199,8,27,.5);
  transform: translateY(-2px);
}
.mo-navbar .nav-btn::after { display: none !important; }
.mo-navbar .nav-btn i {
  opacity: 1;
}

/* ── MOBILE RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 991px) {
  .mo-navbar .navbar-collapse {
    background: var(--white);
    margin-top: 12px;
    padding: 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
  }

  .mo-navbar .nav-link {
    padding: 12px 16px !important;
    border-radius: var(--radius-sm);
  }

  .mo-navbar .nav-link::after {
    display: none;
  }

  .mo-navbar .nav-link:hover,
  .mo-navbar .nav-item.active > .nav-link {
    background: var(--bg-light);
    color: var(--primary) !important;
  }

  .mo-navbar .dropdown-menu {
    border: none;
    box-shadow: none;
    padding: 8px 0 8px 20px;
    animation: none;
  }

  .mo-navbar .dropdown-item {
    padding: 8px 16px;
    font-size: 13px;
  }

  .mo-navbar .nav-btn {
    margin: 12px 0 0 0;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .mo-navbar .mega-menu {
    min-width: auto;
    padding: 12px;
  }
}

/* ── HERO / SLIDER ─────────────────────────────────────────── */
.mo-hero {
  position: relative;
  background: var(--secondary);
  overflow: hidden;
  min-height: 580px;
}

.mo-hero-slide {
  position: relative;
  min-height: 580px;
  background-size: cover;
  background-position: center;
  display: flex; align-items: center;
}
.mo-hero-slide::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,10,30,.85) 40%, rgba(10,10,30,.3) 100%);
}

.mo-hero-content {
  position: relative; z-index: 2;
  max-width: 600px;
}
.mo-hero-content .hero-badge {
  display: inline-block;
  background: var(--primary);
  color: white; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 3px;
  margin-bottom: 20px;
}
.mo-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.1;
  color: white;
  margin: 0 0 20px;
  letter-spacing: 1px;
}
.mo-hero-content h1 span { color: var(--accent); }
.mo-hero-content p {
  font-size: 16px; color: rgba(255,255,255,.75);
  margin-bottom: 32px; line-height: 1.7;
}

.mo-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 14px; letter-spacing: .5px;
  text-transform: uppercase; transition: var(--transition);
  cursor: pointer; border: 2px solid transparent;
}
.mo-btn-primary { background: var(--primary); color: white; }
.mo-btn-primary:hover {
  background: var(--primary-dark); color: white;
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(199,8,27,.35);
}
.mo-btn-outline { background: transparent; color: white; border-color: rgba(255,255,255,.5); }
.mo-btn-outline:hover { border-color: white; background: rgba(255,255,255,.1); color: white; }
.mo-btn-dark { background: var(--secondary); color: white; }
.mo-btn-dark:hover { background: var(--text-dark); color: white; transform: translateY(-2px); }
.mo-btn-sm { padding: 10px 20px; font-size: 13px; }

/* ── STAT BAR ──────────────────────────────────────────────── */
.mo-stat-bar {
  background: var(--primary);
  padding: 20px 0;
}
.mo-stat-item {
  display: flex; align-items: center; gap: 14px;
  color: white; padding: 8px 0;
}
.mo-stat-item .stat-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.mo-stat-item .stat-num {
  font-family: var(--font-display);
  font-size: 32px; line-height: 1; color: white;
}
.mo-stat-item .stat-label { font-size: 12px; color: rgba(255,255,255,.75); letter-spacing: .5px; }

/* ── SECTIONS COMMON ───────────────────────────────────────── */
.mo-section { padding: 80px 0; }
.mo-section-sm { padding: 50px 0; }
.mo-section-dark { background: var(--secondary); color: white; }
.mo-section-gray { background: var(--bg-section); }

.mo-section-header { text-align: center; margin-bottom: 56px; }
.mo-section-header .section-tag {
  display: inline-block;
  color: var(--primary); font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  padding-bottom: 8px; margin-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}
.mo-section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  color: var(--text-dark); margin: 0 0 16px;
  letter-spacing: .5px;
}
.mo-section-dark .mo-section-header h2 { color: white; }
.mo-section-header p { color: var(--text-mid); max-width: 560px; margin: 0 auto; font-size: 16px; }

/* ── PRODUCT CARDS ─────────────────────────────────────────── */
.mo-product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}
.mo-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.mo-product-card .card-img {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-section);
}
.mo-product-card .card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.mo-product-card:hover .card-img img { transform: scale(1.06); }
.mo-product-card .card-img .card-overlay {
  position: absolute; inset: 0;
  background: rgba(199,8,27,.85);
  display: flex; align-items: center; justify-content: center;
  gap: 16px; opacity: 0; transition: var(--transition);
}
.mo-product-card:hover .card-img .card-overlay { opacity: 1; }
.mo-product-card .card-img .card-overlay a {
  width: 44px; height: 44px;
  background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 16px;
  transform: translateY(10px); transition: var(--transition);
}
.mo-product-card:hover .card-img .card-overlay a { transform: translateY(0); }
.mo-product-card .card-img .card-overlay a:hover { background: var(--secondary); color: white; }

.mo-product-card .card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--primary); color: white;
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  padding: 4px 10px; border-radius: 3px; text-transform: uppercase;
}
.mo-product-card .card-body {
  padding: 20px;
}
.mo-product-card .card-model {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  color: var(--primary); text-transform: uppercase; margin-bottom: 6px;
}
.mo-product-card .mo-card-title {
  font-size: 14px; font-weight: 600;
  color: var(--text-dark); margin-bottom: 10px; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.mo-product-card .card-oem {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg-section); border-radius: 4px;
  padding: 4px 10px; font-size: 12px; font-family: monospace;
  color: var(--text-mid);
}

/* ── PRODUCT LIST (Full Page) ──────────────────────────────── */
.mo-product-filters {
  background: white; border-radius: var(--radius-md);
  padding: 24px; box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}
.mo-filter-form { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.mo-filter-form input[type="text"],
.mo-filter-form select {
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  padding: 10px 16px; font-size: 14px;
  transition: var(--transition); outline: none;
}
.mo-filter-form input[type="text"]:focus,
.mo-filter-form select:focus { border-color: var(--primary); }

.mo-sidebar-groups {
  background: white; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.mo-sidebar-groups .sidebar-title {
  background: var(--secondary); color: white;
  padding: 16px 20px; font-weight: 700; font-size: 14px;
  letter-spacing: .5px; text-transform: uppercase;
}
.mo-group-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px; border-bottom: 1px solid var(--border);
  color: var(--text-dark); font-size: 14px; font-weight: 500;
  transition: var(--transition); cursor: pointer;
}
.mo-group-item:last-child { border-bottom: none; }
.mo-group-item:hover, .mo-group-item.active {
  background: var(--bg-section); color: var(--primary);
  padding-left: 26px;
}
.mo-group-item .group-arrow { color: var(--text-light); font-size: 11px; }

/* ── BRAND CAROUSEL ────────────────────────────────────────── */
.mo-brands { background: var(--bg-section); padding: 48px 0; }
.mo-brands-track {
  display: flex; align-items: center; gap: 32px;
  overflow: hidden;
}
.mo-brand-item {
  display: flex; align-items: center; justify-content: center;
  min-width: 140px;
  padding: 16px 24px;
  background: white; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  filter: grayscale(1); opacity: .6;
  transition: var(--transition);
}
.mo-brand-item:hover { filter: grayscale(0); opacity: 1; transform: scale(1.05); }
.mo-brand-item img { height: 40px; object-fit: contain; }

/* ── NEWS CARD ─────────────────────────────────────────────── */
.mo-news-card {
  display: flex; gap: 16px;
  padding: 20px; border-radius: var(--radius-md);
  background: white; box-shadow: var(--shadow-sm);
  transition: var(--transition); margin-bottom: 16px;
}
.mo-news-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.mo-news-card .news-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: var(--primary); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.mo-news-card .news-title {
  font-weight: 600; font-size: 14px; color: var(--text-dark);
  margin-bottom: 4px; line-height: 1.4;
}
.mo-news-card .news-meta { font-size: 12px; color: var(--text-light); }
.mo-news-card .news-link { color: var(--primary); font-size: 12px; font-weight: 600; }

/* ── SERVICES GRID ─────────────────────────────────────────── */
.mo-service-card {
  background: white; border-radius: var(--radius-md);
  padding: 32px 24px; text-align: center;
  box-shadow: var(--shadow-sm);
  border-bottom: 4px solid transparent;
  transition: var(--transition);
}
.mo-service-card:hover {
  border-bottom-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.mo-service-card .svc-icon {
  width: 68px; height: 68px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(199,8,27,.1), rgba(199,8,27,.2));
  color: var(--primary); font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.mo-service-card:hover .svc-icon {
  background: var(--primary); color: white;
}
.mo-service-card h4 {
  font-weight: 700; font-size: 16px; color: var(--text-dark);
  margin-bottom: 12px;
}
.mo-service-card p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* ── HOURS TABLE ───────────────────────────────────────────── */
.mo-hours-card {
  background: white; border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.mo-hours-card .hours-header {
  background: var(--secondary); color: white;
  padding: 16px 24px; font-weight: 700; font-size: 15px;
  display: flex; align-items: center; gap: 10px;
}
.mo-hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 24px; border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.mo-hours-row:last-child { border-bottom: none; }
.mo-hours-row .day { font-weight: 500; color: var(--text-dark); }
.mo-hours-row .time { color: var(--primary); font-weight: 600; }
.mo-hours-row.closed .time { color: var(--text-light); font-weight: 400; }

/* ── CONTACT ───────────────────────────────────────────────── */
.mo-contact-info-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; background: white;
  border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
  margin-bottom: 16px; transition: var(--transition);
}
.mo-contact-info-item:hover { transform: translateX(4px); }
.mo-contact-info-item .ci-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.mo-contact-info-item .ci-label { font-size: 11px; color: var(--text-light); letter-spacing: 1px; text-transform: uppercase; }
.mo-contact-info-item .ci-value { font-size: 15px; font-weight: 600; color: var(--text-dark); }

.mo-contact-form {
  background: white; border-radius: var(--radius-md);
  padding: 36px; box-shadow: var(--shadow-md);
}
.mo-form-group { margin-bottom: 20px; }
.mo-form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text-dark); margin-bottom: 6px;
}
.mo-form-control {
  width: 100%;
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  padding: 12px 16px; font-size: 14px; font-family: var(--font-sans);
  transition: var(--transition); outline: none;
  background: var(--bg-light);
}
.mo-form-control:focus { border-color: var(--primary); background: white; }
.mo-form-control.textarea { resize: vertical; min-height: 120px; }

/* ── BANNER / PAGE HEADER ──────────────────────────────────── */
.mo-page-banner {
  background: linear-gradient(135deg, var(--secondary) 0%, #2d1b2e 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.mo-page-banner::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 40%; height: 100%;
  background: linear-gradient(135deg, transparent, rgba(199,8,27,.2));
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.mo-page-banner::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.mo-page-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  color: white; margin: 0 0 12px;
  letter-spacing: 1px;
  position: relative; z-index: 1;
}
.mo-page-banner .breadcrumb-bar {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.6);
  position: relative; z-index: 1;
}
.mo-page-banner .breadcrumb-bar a { color: var(--accent); }
.mo-page-banner .breadcrumb-bar .sep { color: rgba(255,255,255,.3); }
.mo-page-banner .banner-random-num { 
  position: absolute; right: 10%; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-size: 120px;
  color: rgba(255,255,255,.04); z-index: 0; pointer-events: none;
}

/* ── NEWSLETTER ────────────────────────────────────────────── */
.mo-newsletter {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 60px 0;
}
.mo-newsletter h3 {
  font-family: var(--font-display); font-size: 36px;
  color: white; margin-bottom: 8px;
}
.mo-newsletter p { color: rgba(255,255,255,.8); font-size: 15px; }
.mo-newsletter-form {
  display: flex; gap: 0;
  background: white; border-radius: var(--radius-sm);
  overflow: hidden; max-width: 460px;
  box-shadow: var(--shadow-lg);
}
.mo-newsletter-form input {
  flex: 1; border: none; outline: none;
  padding: 14px 20px; font-size: 14px;
}
.mo-newsletter-form button {
  background: var(--secondary); color: white;
  border: none; padding: 14px 24px;
  font-weight: 700; font-size: 13px; letter-spacing: .5px;
  text-transform: uppercase; cursor: pointer; transition: var(--transition);
  white-space: nowrap;
}
.mo-newsletter-form button:hover { background: var(--text-dark); }

/* ── FOOTER ────────────────────────────────────────────────── */
.mo-footer {
  background: var(--secondary);
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}
.mo-footer h5 {
  font-family: var(--font-display); font-size: 18px;
  color: white; margin-bottom: 20px; letter-spacing: .5px;
  padding-bottom: 12px; border-bottom: 2px solid rgba(255,255,255,.1);
}
.mo-footer p { font-size: 14px; line-height: 1.7; }
.mo-footer a { color: rgba(255,255,255,.6); font-size: 14px; transition: var(--transition); }
.mo-footer a:hover { color: var(--accent); padding-left: 4px; }
.mo-footer ul { list-style: none; padding: 0; margin: 0; }
.mo-footer ul li { padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.mo-footer .footer-contact li { display: flex; gap: 10px; border: none; padding: 8px 0; }
.mo-footer .footer-contact li i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }

.mo-footer-social { display: flex; gap: 10px; margin-top: 16px; }
.mo-footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-size: 15px;
  transition: var(--transition);
}
.mo-footer-social a:hover { background: var(--primary); color: white; transform: translateY(-3px); padding-left: 0; }

.mo-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  margin-top: 48px;
}
.mo-footer-bottom p { margin: 0; font-size: 13px; }

/* ── BACK TO TOP ───────────────────────────────────────────── */
.mo-back-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 44px; height: 44px;
  background: var(--primary); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 18px; cursor: pointer;
  opacity: 0; pointer-events: none;
  transform: translateY(12px);
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(199,8,27,.4);
}
.mo-back-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.mo-back-top:hover { background: var(--primary-dark); transform: translateY(-3px) !important; }

/* ── PARALLAX ──────────────────────────────────────────────── */
.mo-parallax {
  position: relative; min-height: 380px;
  background-attachment: fixed;
  background-size: cover; background-position: center;
  display: flex; align-items: center;
}
.mo-parallax::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(10,10,30,.75);
}
.mo-parallax .parallax-content { position: relative; z-index: 2; }
.mo-parallax .parallax-stat {
  text-align: center; color: white;
  padding: 24px 16px;
}
.mo-parallax .parallax-stat i { font-size: 36px; color: var(--accent); margin-bottom: 12px; }
.mo-parallax .parallax-stat .pnum {
  font-family: var(--font-display);
  font-size: 52px; line-height: 1; color: white;
  display: block;
}
.mo-parallax .parallax-stat .plabel { font-size: 14px; color: rgba(255,255,255,.7); }

/* ── ABOUT / MISSION / VISION ──────────────────────────────── */
.mo-content-box {
  background: white; border-radius: var(--radius-lg);
  padding: 48px; box-shadow: var(--shadow-sm);
}
.mo-content-box h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  color: var(--text-dark); margin-bottom: 20px;
}
.mo-content-box h2 .accent { color: var(--primary); }
.mo-content-box p {
  font-size: 15px; color: var(--text-mid);
  line-height: 1.8; margin-bottom: 16px;
}

/* ── ALERT STYLES ──────────────────────────────────────────── */
.mo-alert {
  padding: 14px 20px; border-radius: var(--radius-sm);
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; margin-bottom: 20px;
  border-left: 4px solid;
}
.mo-alert-success { background: #f0fdf4; border-color: #22c55e; color: #15803d; }
.mo-alert-error   { background: #fff1f2; border-color: var(--primary); color: var(--primary-dark); }
.mo-alert-warning { background: #fffbeb; border-color: var(--accent); color: #92400e; }

/* ── PAGINATION ────────────────────────────────────────────── */
.mo-pagination { display: flex; gap: 8px; align-items: center; margin-top: 32px; }
.mo-page-btn {
  padding: 8px 16px; border-radius: var(--radius-sm);
  background: white; color: var(--text-dark);
  font-size: 14px; font-weight: 500;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  cursor: pointer;
}
.mo-page-btn:hover, .mo-page-btn.active {
  background: var(--primary); color: white;
  box-shadow: 0 4px 16px rgba(199,8,27,.3);
}

/* ── LOGIN ─────────────────────────────────────────────────── */
.mo-login-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--secondary) 0%, #2d1b2e 100%);
  display: flex; align-items: center; justify-content: center;
}
.mo-login-card {
  background: white; border-radius: var(--radius-lg);
  padding: 48px; width: 100%; max-width: 440px;
  box-shadow: var(--shadow-lg);
}
.mo-login-card .login-logo {
  font-family: var(--font-display);
  font-size: 28px; color: var(--primary);
  text-align: center; margin-bottom: 32px;
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 991px) {
  .mo-topbar .topbar-info { display: none; }
  .mo-hero-content { max-width: 100%; }
  .mo-content-box { padding: 28px 20px; }
  .mo-contact-form { padding: 24px; }
}

@media (max-width: 767px) {
  .mo-section { padding: 48px 0; }
  .mo-parallax { background-attachment: scroll; min-height: 280px; }
  .mo-parallax .parallax-stat .pnum { font-size: 36px; }
  .mo-newsletter-form { flex-direction: column; }
  .mo-newsletter-form button { width: 100%; }
}

/* ── ANIMATE NUMBERS ───────────────────────────────────────── */
.animate-counter { transition: all 1s; }

/* ── MAP CONTAINER ─────────────────────────────────────────── */
.mo-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 380px;
}
.mo-map iframe, .mo-map #map {
  width: 100%; height: 380px; display: block;
}

/* ── LOADING SKELETON ──────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--bg-section) 25%, var(--border) 50%, var(--bg-section) 75%);
  background-size: 200% 100%;
  animation: skeleton-load 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes skeleton-load {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── OVERRIDE: Legacy compat ───────────────────────────────── */
.container { max-width: 1200px; }
.primary_text { font-family: var(--font-display); color: var(--text-dark); }
