/* =====================================================
   MRJ Consultants | Genesis Software
   Custom CSS — Bootstrap 5.3 base
   ===================================================== */

:root {
  --primary:       #1e1e1e;
  --primary-light: #2e2e2e;
  --accent:        #E56717;
  --accent-dark:   #c85a10;
  --dark:          #111111;
  --light:         #f4f6f9;
  --white:         #ffffff;
  --text:          #2d3748;
  --text-muted:    #4a5568;
  --border:        #e2e8f0;
  --radius:        12px;
  --shadow:        0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:     0 16px 48px rgba(0,0,0,0.14);
}

/* -------------------------------------------------- Base ---- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }

a { transition: color .25s ease; }

/* -------------------------------------------------- Scrollbar ---- */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }

/* -------------------------------------------------- Navbar ---- */
#mainNav {
  background: rgba(17,17,17,0.97) !important;
  backdrop-filter: blur(12px);
  padding: 10px 0;
  transition: padding .3s ease, box-shadow .3s ease;
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}
#mainNav.scrolled { padding: 6px 0; }

#mainNav .navbar-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
#mainNav .brand-mrj  { color: var(--accent); font-weight: 900; font-size: 1.35rem; letter-spacing: -0.5px; line-height:1; }
#mainNav .brand-name { color: #fff; font-weight: 400; font-size: .95rem; line-height:1; }

#mainNav .navbar-toggler {
  border: none;
  padding: 4px 6px;
  outline: none;
  box-shadow: none;
}
#mainNav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.85%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

#mainNav .nav-link {
  color: rgba(255,255,255,.82) !important;
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 14px !important;
  letter-spacing: .3px;
  position: relative;
  transition: color .25s ease;
}
#mainNav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .25s ease;
}
#mainNav .nav-link:hover,
#mainNav .nav-link.active {
  color: var(--accent) !important;
}
#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after { transform: scaleX(1); }

#mainNav .btn-nav-cta {
  background: var(--accent);
  color: var(--dark) !important;
  font-weight: 700;
  font-size: .85rem;
  padding: 8px 20px !important;
  border-radius: 25px;
  letter-spacing: .3px;
}
#mainNav .btn-nav-cta:hover {
  background: var(--accent-dark);
  color: var(--dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(229,103,23,.4);
}
#mainNav .btn-nav-cta::after { display: none; }

/* -------------------------------------------------- Page Header ---- */
.page-header {
  background: var(--dark);
  padding: 130px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--dark) 40%, var(--primary) 100%);
}
.page-header::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E56717' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 {
  color: var(--white);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 0;
}
.page-header .breadcrumb { margin: 12px 0 0; }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.3); }
.page-header .breadcrumb-item a  { color: rgba(255,255,255,.6); text-decoration: none; }
.page-header .breadcrumb-item a:hover { color: var(--accent); }
.page-header .breadcrumb-item.active { color: var(--accent); }

/* -------------------------------------------------- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(17,17,17,.97) 0%, rgba(30,30,30,.75) 60%, rgba(17,17,17,.6) 100%);
}
.hero .container { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229,103,23,.15);
  color: var(--accent);
  border: 1px solid rgba(229,103,23,.35);
  border-radius: 25px;
  padding: 6px 16px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 22px;
}
.hero-title .accent { color: var(--accent); }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.72);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 52px; }

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat .number {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.hero-stat .label {
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .7px;
  margin-top: 4px;
}

/* -------------------------------------------------- Buttons ---- */
.btn-gold {
  background: var(--accent);
  color: var(--dark);
  border: none;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: .92rem;
  transition: all .25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-gold:hover {
  background: var(--accent-dark);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(229,103,23,.4);
}
.btn-gold-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  font-weight: 700;
  padding: 10px 26px;
  border-radius: 6px;
  font-size: .92rem;
  transition: all .25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-gold-outline:hover {
  background: var(--accent);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(229,103,23,.3);
}
.btn-navy {
  background: var(--primary);
  color: var(--white);
  border: none;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: .92rem;
  transition: all .25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-navy:hover {
  background: var(--primary-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* -------------------------------------------------- Sections ---- */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.bg-dark-custom { background: var(--dark); }
.bg-navy { background: var(--primary); }
.bg-light-custom { background: var(--light); }

.section-eyebrow {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-title.light { color: var(--white); }
.section-body {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 620px;
}
.section-body.center { margin: 0 auto; text-align: center; }
.divider {
  width: 52px; height: 4px;
  background: var(--accent);
  border-radius: 3px;
  margin: 14px 0 30px;
}
.divider.center { margin-left: auto; margin-right: auto; }

/* -------------------------------------------------- Product Cards ---- */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
}
.product-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-card:hover::before { transform: scaleX(1); }

.product-card .card-icon {
  width: 60px; height: 60px;
  background: rgba(229,103,23,.12);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 20px;
}
.product-card h4 { font-weight: 700; color: var(--dark); font-size: 1.2rem; margin-bottom: 10px; }
.product-card p { color: var(--text); font-size: .95rem; line-height: 1.75; }

/* --------- Feature / Check List ---- */
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 6px 0;
  font-size: .93rem;
  color: var(--text);
}
.feature-list li i { color: var(--accent); font-size: .95rem; margin-top: 3px; flex-shrink: 0; }

/* -------------------------------------------------- Stats ---- */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  padding: 80px 0;
}
.stat-box { text-align: center; padding: 20px; }
.stat-box .num {
  display: block;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.stat-box .lbl {
  color: rgba(255,255,255,.72);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-top: 8px;
  display: block;
}

/* -------------------------------------------------- Services ---- */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  height: 100%;
  border: 1px solid var(--border);
  transition: all .3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card .svc-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(229,103,23,.18);
  line-height: 1;
  margin-bottom: 12px;
}
.service-card h5 { font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: .9rem; line-height: 1.7; margin: 0; }

/* -------------------------------------------------- Client Logos Marquee ---- */
.clients-wrap {
  background: var(--white);
  padding: 50px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.marquee-outer {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image:         linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: marqueeScroll 50s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  flex-shrink: 0;
}
.logo-item img {
  max-height: 80px;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(100%) opacity(.55);
  transition: filter .3s ease;
}
.logo-item img:hover { filter: grayscale(0%) opacity(1); }

/* -------------------------------------------------- Product Detail Page ---- */
.product-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  padding: 80px 0;
  color: var(--white);
}
.product-section { padding: 80px 0; }
.product-section:nth-child(even) { background: var(--light); }

.product-logo {
  max-height: 70px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(229,103,23,.1);
  border: 1px solid rgba(229,103,23,.25);
  color: var(--text);
  border-radius: 25px;
  padding: 5px 14px;
  font-size: .82rem;
  font-weight: 600;
}
.feature-pill i { color: var(--accent); font-size: .8rem; }

/* Dark section text overrides */
.bg-dark-custom .section-title { color: var(--white); }
.bg-dark-custom .section-body  { color: rgba(255,255,255,.72); }
.bg-dark-custom .feature-list li { color: rgba(255,255,255,.82); }
.bg-dark-custom .feature-pill  { background: rgba(229,103,23,.18); border-color: rgba(229,103,23,.35); color: rgba(255,255,255,.85); }

.tab-nav .nav-link {
  color: var(--text-muted);
  font-weight: 600;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  padding: 12px 20px;
}
.tab-nav .nav-link.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
  background: transparent;
}

/* -------------------------------------------------- Manuals ---- */
.manual-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all .3s ease;
}
.manual-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: var(--dark);
  cursor: pointer;
}
.video-wrap iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--dark));
  flex-direction: column;
  gap: 10px;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
}
.video-placeholder .play-btn {
  width: 54px; height: 54px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform .2s;
}
.video-placeholder .play-btn:hover { transform: scale(1.1); }

.manual-body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; }
.manual-category {
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.2px;
  color: var(--accent);
  margin-bottom: 7px;
}
.manual-body h5 { font-weight: 700; color: var(--dark); font-size: 1rem; margin-bottom: 7px; }
.manual-body p { color: var(--text-muted); font-size: .875rem; line-height: 1.65; flex: 1; margin-bottom: 16px; }
.manual-meta { font-size: .75rem; color: var(--text-muted); display: flex; align-items: center; gap: 14px; }

.search-bar .form-control,
.search-bar .form-select {
  border-color: var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: .92rem;
}
.search-bar .form-control:focus,
.search-bar .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(229,103,23,.15);
}

/* -------------------------------------------------- About ---- */
.team-img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.value-card {
  text-align: center;
  padding: 32px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 100%;
  transition: all .3s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.value-card .icon {
  width: 64px; height: 64px;
  background: rgba(229,103,23,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 1.5rem;
  margin: 0 auto 18px;
}
.value-card h5 { font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.value-card p { color: var(--text-muted); font-size: .9rem; line-height: 1.7; margin: 0; }

.timeline { position: relative; padding-left: 36px; }
.timeline::before {
  content: '';
  position: absolute; left: 12px; top: 8px; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), rgba(229,103,23,.1));
}
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-item::before {
  content: '';
  position: absolute; left: -29px; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(229,103,23,.2);
}
.timeline-item .year { font-weight: 800; color: var(--accent); font-size: 1rem; }
.timeline-item h6 { font-weight: 700; color: var(--dark); margin: 3px 0 5px; }
.timeline-item p { color: var(--text-muted); font-size: .88rem; line-height: 1.65; margin: 0; }

/* -------------------------------------------------- Contact ---- */
.contact-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-info-row {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 28px;
}
.ci-icon {
  width: 46px; height: 46px;
  background: rgba(229,103,23,.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}
.ci-text h6 { font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.ci-text p, .ci-text a { color: var(--text-muted); font-size: .9rem; margin: 0; text-decoration: none; }
.ci-text a:hover { color: var(--accent); }

.form-control, .form-select {
  border-color: var(--border);
  border-radius: 8px;
  padding: 11px 15px;
  font-size: .92rem;
  color: var(--text);
}
.form-control:focus, .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(229,103,23,.15);
}
.form-label { font-weight: 600; font-size: .88rem; color: var(--text); margin-bottom: 6px; }

/* -------------------------------------------------- Shop ---- */
.shop-placeholder {
  min-height: 65vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--light);
}
.shop-card {
  background: var(--white);
  border-radius: 16px;
  padding: 60px 50px;
  text-align: center;
  max-width: 520px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.shop-icon {
  width: 90px; height: 90px;
  background: rgba(229,103,23,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 2.5rem;
  margin: 0 auto 24px;
}

/* -------------------------------------------------- CTA ---- */
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  padding: 90px 0;
}
.cta-section h2 { color: var(--dark); font-weight: 800; margin-bottom: 14px; font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
.cta-section p { color: rgba(0,0,0,.65); font-size: 1.05rem; max-width: 500px; margin: 0 auto 36px; }

/* -------------------------------------------------- Footer ---- */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.65);
  padding: 72px 0 32px;
}
.footer-brand-name .f-mrj  { color: var(--accent); font-weight: 900; font-size: 1.6rem; }
.footer-brand-name .f-name { color: var(--white); font-weight: 300; font-size: 1rem; margin-left: 5px; }
.site-footer p { font-size: .88rem; line-height: 1.75; }

.site-footer h6 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 18px;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: .88rem;
  transition: color .25s ease;
}
.footer-links a:hover { color: var(--accent); }

.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-socials a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65);
  font-size: .85rem;
  transition: all .25s ease;
  text-decoration: none;
}
.footer-socials a:hover { background: var(--accent); color: var(--dark); transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 26px;
  margin-top: 52px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.4); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.4); text-decoration: none; }
.footer-bottom a:hover { color: var(--accent); }

/* -------------------------------------------------- Animations ---- */
[data-aos] { opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
[data-aos].aos-in { opacity: 1; transform: translateY(0); }
[data-aos-delay="100"] { transition-delay: .1s; }
[data-aos-delay="150"] { transition-delay: .15s; }
[data-aos-delay="200"] { transition-delay: .2s; }
[data-aos-delay="300"] { transition-delay: .3s; }
[data-aos-delay="400"] { transition-delay: .4s; }

/* ------------------------------------ Alert / Toast ---- */
.toast-custom {
  position: fixed; top: 90px; right: 20px; z-index: 9999;
  min-width: 300px;
  background: var(--dark);
  color: var(--white);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: none;
}

/* ---------------------------------------- Responsive ---- */
@media (max-width: 991.98px) {
  #mainNav .nav-link::after { display: none; }
  .hero-stats { gap: 24px; }
  .contact-box { padding: 28px 22px; }
}
@media (max-width: 767.98px) {
  .section { padding: 60px 0; }
  .hero-stats { gap: 16px; }
  .hero-stat .number { font-size: 1.6rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-section { padding: 60px 0; }
}
@media (max-width: 575.98px) {
  .hero-title { font-size: 1.9rem; }
  .page-header { padding-top: 110px; }
  .shop-card { padding: 40px 24px; }
}
