:root {
  /* Maroon Family */
  --maroon:          #800020;
  --maroon-deep:     #5a0016;
  --maroon-dark:     #3d0010;
  --maroon-rich:     #9b0028;
  --maroon-light:    #b8003a;
  --maroon-muted:    rgba(128,0,32,0.15);

  /* Golden Family */
  --gold:            #C9952A;
  --gold-light:      #E0B84A;
  --gold-bright:     #F0CB5C;
  --gold-dark:       #A87820;
  --gold-pale:       rgba(201,149,42,0.12);
  --gold-border:     rgba(201,149,42,0.25);

  /* Dark Yellow */
  --dyellow:         #B8860B;
  --dyellow-light:   #D4A017;
  --dyellow-pale:    rgba(184,134,11,0.12);

  /* Black Family */
  --black:           #0A0A0A;
  --black-deep:      #050505;
  --black-card:      #111111;
  --black-card2:     #181818;
  --black-border:    rgba(255,255,255,0.07);
  --black-soft:      #1a1a1a;

  /* Off-white / Text */
  --off-white:       #F5F0E8;
  --text-muted:      rgba(245,240,232,0.55);
  --text-faint:      rgba(245,240,232,0.3);
  --text-gold-muted: rgba(201,149,42,0.6);

  /* Fonts */
  --font-body:      'Poppins', sans-serif;
  --font-display:   'Playfair Display', serif;
}

/* ═══════════════════════════════════════
   BASE RESET & GLOBAL
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--off-white);
  overflow-x: hidden;
  font-size: 14px;
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; height: auto; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--maroon); border-radius: 3px; }

/* ─── SELECTION ─── */
::selection { background: var(--maroon); color: var(--gold-light); }

/* ═══════════════════════════════════════
   STICKY SIDE BUTTONS
═══════════════════════════════════════ */
.sticky-contact {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--maroon);
  color: var(--gold-light);
  font-size: 16px;
  border-radius: 4px 0 0 4px;
  transition: all 0.3s;
  border-right: 3px solid var(--gold);
}

.sticky-btn:hover { background: var(--maroon-light); color: #fff; transform: translateX(-4px); }
.sticky-btn.wa { background: #128C7E; border-color: #25D366; }
.sticky-btn.wa:hover { background: #25D366; }

/* ═══════════════════════════════════════
   TOP BAR
═══════════════════════════════════════ */
.top-bar {
  background: var(--maroon-dark);
  padding: 8px 0;
  font-size: 11.5px;
  color: rgba(245,240,232,0.75);
  border-bottom: 1px solid rgba(201,149,42,0.2);
  letter-spacing: 0.3px;
}

.top-bar i { color: var(--gold-dark); margin-right: 5px; }
.top-bar span { display: inline-flex; align-items: center; gap: 5px; }

/* ═══════════════════════════════════════
   MAIN NAVBAR
═══════════════════════════════════════ */
.main-navbar {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: rgba(10,5,2,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,149,42,0.18);
  transition: all 0.35s ease;
}

.main-navbar.scrolled {
  background: rgba(5,0,0,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.7);
  border-bottom-color: var(--gold-dark);
}

.navbar-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 12px;
  height: 72px;
}

/* Brand */
.navbar-brand-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.navbar-brand-wrap img { height: 60px; object-fit: contain; }

/* Desktop Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  margin: 0;
  padding: 0;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 26px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--off-white);
  transition: color 0.25s;
  white-space: nowrap;
}

.nav-menu > li > a:hover,
.nav-menu > li:hover > a { color: var(--gold-light); }

.nav-menu > li::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--maroon), var(--gold));
  transition: width 0.3s ease;
}
.nav-menu > li:hover::after { width: 100%; }

/* MEGA MENU */
.mega-menu-wrap {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 780px;
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  border-top: 3px solid var(--maroon);
  padding: 28px 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.85);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.nav-menu > li:hover .mega-menu-wrap {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.mega-menu-inner { padding: 0 28px; }
.mega-col-head {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--black-border);
}

.mega-cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.mega-cat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid transparent;
  transition: all 0.25s;
  cursor: pointer;
}

.mega-cat-item:hover,
.mega-cat-item.highlight {
  border-color: var(--gold-border);
  background: rgba(201,149,42,0.05);
}

.mega-cat-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--maroon-muted);
  border: 1px solid var(--maroon);
  overflow: hidden;
  flex-shrink: 0;
}
.mega-cat-img img { width: 100%; height: 100%; object-fit: cover; }

.mega-cat-name { font-size: 12px; font-weight: 600; color: var(--off-white); }
.mega-cat-count { font-size: 10px; color: var(--text-gold-muted); margin-top: 1px; }

/* Mega Promo */
.mega-promo {
  background: linear-gradient(135deg, var(--maroon-dark), var(--black-card2));
  border: 1px solid var(--gold-border);
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.mega-promo::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--gold));
}
.mega-promo-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.mega-promo-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.mega-promo-body { font-size: 11.5px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.mega-promo-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1px solid var(--gold-border);
  transition: all 0.3s;
}
.mega-promo-btn:hover { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--black); }

.mega-links li a {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  padding: 5px 0;
  border-bottom: 1px solid var(--black-border);
  transition: color 0.2s;
}
.mega-links li a:hover { color: var(--gold-light); padding-left: 6px; }

/* Simple Dropdown */
.simple-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  border-top: 3px solid var(--maroon);
  padding: 8px 0;
  box-shadow: 0 15px 40px rgba(0,0,0,0.7);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.nav-menu > li:hover .simple-dropdown {
  opacity: 1;
  visibility: visible;
}

.simple-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.2s;
}
.simple-dropdown a:hover { color: var(--gold-light); background: rgba(201,149,42,0.05); padding-left: 24px; }
.simple-dropdown a i { color: var(--maroon-light); width: 16px; }
.dropdown-div { height: 1px; background: var(--black-border); margin: 6px 18px; }

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-search-wrap {
  display: flex;
  border: 1px solid var(--gold-border);
  overflow: hidden;
}
.nav-search-wrap input {
  background: transparent;
  border: none;
  outline: none;
  padding: 7px 12px;
  font-size: 12px;
  font-family: var(--font-body);
  color: var(--off-white);
  width: 160px;
}
.nav-search-wrap input::placeholder { color: var(--text-faint); }
.nav-search-wrap button {
  background: var(--maroon);
  border: none;
  color: var(--gold-light);
  padding: 7px 12px;
  cursor: pointer;
  font-size: 12px;
  transition: background 0.25s;
}
.nav-search-wrap button:hover { background: var(--maroon-light); }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-light);
  white-space: nowrap;
}
.nav-phone i { color: var(--maroon-light); }

.btn-nav-quote {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 9px 18px;
  border: 1px solid var(--gold-border);
  transition: all 0.3s;
  white-space: nowrap;
}
.btn-nav-quote:hover { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--black); }

/* Burger */
.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: none;
  border: 1px solid var(--gold-border);
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.25s;
}
.burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--off-white);
  transition: all 0.3s;
  transform-origin: left;
}
.burger-btn.open span:nth-child(1) { transform: rotate(40deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; width: 0; }
.burger-btn.open span:nth-child(3) { transform: rotate(-40deg); }

/* ═══════════════════════════════════════
   MOBILE DRAWER
═══════════════════════════════════════ */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--black-card);
  border-left: 1px solid var(--gold-border);
  z-index: 1100;
  overflow-y: auto;
  transition: right 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}

.mobile-drawer.open { right: 0; }

.mobile-nav-list { padding: 80px 0 20px; }

.mobile-nav-section { border-bottom: 1px solid var(--black-border); }

.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 22px;
  background: none;
  border: none;
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-nav-toggle:hover { color: var(--gold-light); }
.mobile-nav-toggle .chevron { transition: transform 0.3s; }
.mobile-nav-toggle.open .chevron { transform: rotate(180deg); }
.mobile-nav-toggle.open { color: var(--gold-light); }

.mobile-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(0,0,0,0.3);
}
.mobile-sub.open { max-height: 500px; }

.mobile-sub-head {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--maroon-light);
  padding: 12px 22px 6px;
}

.mobile-sub a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  font-size: 12px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  transition: all 0.2s;
}
.mobile-sub a:hover { color: var(--gold-light); padding-left: 28px; }
.mobile-sub a i { color: var(--maroon-light); width: 14px; font-size: 11px; }

.mobile-bottom-links {
  margin-top: auto;
  padding: 20px 22px;
  border-top: 1px solid var(--gold-border);
  background: var(--black);
}
.mobile-bottom-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  padding: 6px 0;
}
.mobile-bottom-links a i { color: var(--gold-dark); }

.mobile-cta-row {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

/* ═══════════════════════════════════════
   CTA BUTTONS (global)
═══════════════════════════════════════ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 26px;
  border: none;
  border-radius: 1px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,149,42,0.35);
  color: var(--black);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 11px 24px;
  border: 1px solid var(--gold);
  border-radius: 1px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-outline-gold:hover {
  background: rgba(201,149,42,0.08);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  color: var(--gold-light);
}

.btn-maroon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--maroon-deep), var(--maroon));
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 26px;
  border: 1px solid var(--gold-border);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-maroon:hover { background: linear-gradient(135deg, var(--maroon), var(--maroon-light)); color: #fff; }

/* ═══════════════════════════════════════
   HERO SLIDER
═══════════════════════════════════════ */
.hero-slider {
  position: relative;
  height: 92vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.slide.active { opacity: 1; z-index: 2; }

.slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Slide backgrounds */
.slide-0-bg { background: linear-gradient(145deg, #2a0010 0%, #1a000a 40%, #0d0005 100%); }
.slide-1-bg { background: linear-gradient(145deg, #1a0a00 0%, #0d0500 40%, #050300 100%); }
.slide-2-bg { background: linear-gradient(145deg, #05000d 0%, #0a0010 40%, #02000a 100%); }

.slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 40%, rgba(128,0,32,0.18), transparent 65%),
    radial-gradient(ellipse 40% 50% at 20% 60%, rgba(201,149,42,0.08), transparent 60%);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,0,2,0.7) 0%, rgba(5,0,2,0.35) 60%, transparent 100%);
  z-index: 1;
}

.slide-content-wrap {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
}

.slide-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  padding: 5px 12px;
  border: 1px solid var(--gold-border);
  background: rgba(201,149,42,0.06);
}

.slide-subheading {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.slide-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--off-white);
  margin-bottom: 20px;
}
.slide-heading em {
  font-style: italic;
  color: var(--gold-light);
  text-shadow: 0 0 40px rgba(201,149,42,0.25);
}

.slide-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 28px;
}

.slide-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.slide-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--gold-border);
  border-top: 2px solid var(--maroon);
  min-width: 70px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-lbl {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 5px;
}

/* Hero Frame */
.hero-frame {
  position: relative;
  width: 320px;
}

.hero-frame-inner {
  border: 1px solid var(--gold-border);
  border-top: 3px solid var(--maroon);
  background: var(--black-card);
  overflow: hidden;
  position: relative;
}

.hf-emoji {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.hf-emoji img { width: 100%; height: 100%; object-fit: cover; }

.hf-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--off-white);
  padding: 16px 20px 10px;
  line-height: 1.3;
}

.hf-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--maroon), var(--gold), transparent);
  margin: 0 20px 10px;
}

.hf-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-gold-muted);
  padding: 0 20px 18px;
}

.hero-badge-float {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--maroon-deep), var(--maroon));
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.hbf-num { font-size: 18px; font-weight: 800; color: var(--gold-light); line-height: 1; }
.hbf-lbl { font-size: 8px; font-weight: 600; color: var(--text-muted); letter-spacing: 0.5px; margin-top: 3px; text-align: center; }

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px;
  height: 46px;
  background: rgba(128,0,32,0.7);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-arrow:hover { background: var(--maroon); border-color: var(--gold); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

.slider-controls {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 28px;
  height: 3px;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s;
}
.slider-dot.active { background: var(--gold); width: 44px; }

.hero-bottom-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--maroon-deep), var(--maroon), var(--gold-dark), var(--gold), var(--dyellow), var(--gold), var(--maroon));
  z-index: 10;
}

/* ═══════════════════════════════════════
   CATEGORY CIRCLES STRIP
═══════════════════════════════════════ */
.cat-circles-section {
  background: var(--black-card);
  border-bottom: 1px solid var(--gold-border);
  padding: 24px 0;
  position: sticky;
  top: 72px;
  z-index: 900;
}

.cat-circles-inner {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--maroon) transparent;
}

.cat-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.25s;
}

.cat-circle-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--black-border);
  overflow: hidden;
  background: var(--black-soft);
  transition: all 0.25s;
}
.cat-circle-img img { width: 100%; height: 100%; object-fit: cover; }

.cat-circle-item:hover .cat-circle-img,
.cat-circle-item.active .cat-circle-img {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,149,42,0.2), 0 0 0 5px var(--maroon-muted);
}

.cat-circle-name {
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  color: var(--text-muted);
  transition: color 0.25s;
  max-width: 70px;
  line-height: 1.3;
}
.cat-circle-item:hover .cat-circle-name,
.cat-circle-item.active .cat-circle-name { color: var(--gold-light); }

/* ═══════════════════════════════════════
   SECTION SHARED STYLES
═══════════════════════════════════════ */
section { padding: 80px 0; }

.section-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--maroon-light);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 14px;
  line-height: 1.25;
}
.section-title span { color: var(--gold-light); }

.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--gold));
  margin-bottom: 20px;
  display: block;
}

/* ═══════════════════════════════════════
   FEATURED / PRODUCTS SECTION
═══════════════════════════════════════ */
.featured-section { background: var(--black); }

.products-section {
  background: var(--black-card);
  padding-top: 60px;
  padding-bottom: 80px;
}

/* Category section header */
.cat-section { margin-bottom: 60px; }
.cat-section:last-child { margin-bottom: 0; }

.cat-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold-border);
}

.cat-section-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--off-white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.cat-section-title i { color: var(--maroon-light); font-size: 16px; }

.view-all-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-dark);
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: 2px;
  transition: all 0.2s;
}
.view-all-link:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* Product Card */
.product-card {
  background: var(--black-card2);
  border: 1px solid var(--black-border);
  overflow: hidden;
  transition: all 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px var(--maroon-muted);
}

.product-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--black-soft);
}

.product-img-placeholder {
  width: 100%;
  height: 100%;
}
.product-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-placeholder img { transform: scale(1.06); }

.product-badge {
  position: absolute;
  top: 12px;
  left: 0;
  background: linear-gradient(135deg, var(--maroon-deep), var(--maroon));
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-right: 2px solid var(--gold);
}

.product-badge.new { background: linear-gradient(135deg, var(--dyellow), var(--gold-dark)); color: var(--black); }

.product-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.product-price span { font-size: 11px; color: var(--text-muted); font-weight: 400; }

.product-specs {
  margin-bottom: 14px;
  flex: 1;
}
.product-specs li {
  font-size: 11px;
  color: var(--text-muted);
  padding: 3px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  gap: 5px;
}
.product-specs li::before {
  content: '▸';
  color: var(--maroon-light);
  font-size: 9px;
}

.btn-quote {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--maroon-deep), var(--maroon));
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 16px;
  border: 1px solid var(--gold-border);
  transition: all 0.3s;
}
.btn-quote:hover { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--black); }

/* ═══════════════════════════════════════
   ABOUT / INFO SECTION
═══════════════════════════════════════ */
.about-section { background: var(--black); }

.info-item {
  display: flex;
  gap: 18px;
  padding: 18px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-left: 3px solid var(--maroon);
  margin-bottom: 16px;
  transition: all 0.3s;
}
.info-item:hover { border-left-color: var(--gold); background: var(--black-card2); }

.info-icon {
  width: 44px;
  height: 44px;
  background: var(--maroon-muted);
  border: 1px solid var(--maroon);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon-light);
  font-size: 16px;
  flex-shrink: 0;
}

.info-item h6 {
  font-size: 13px;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 4px;
}
.info-item p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* About visual */
.about-visual {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border: 1px solid var(--gold-border);
  border-top: 3px solid var(--maroon);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: linear-gradient(135deg, var(--maroon-deep), var(--maroon));
  border: 2px solid var(--gold);
  padding: 16px 22px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}
.about-badge-num { font-family: var(--font-display); font-size: 30px; font-weight: 800; color: var(--gold-light); line-height: 1; }
.about-badge-lbl { font-size: 10px; font-weight: 600; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }

/* ═══════════════════════════════════════
   QUALITY SECTION
═══════════════════════════════════════ */
.quality-section {
  background: var(--black-card);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.quality-bar { margin-bottom: 18px; }
.quality-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 6px;
}
.quality-bar-label span:last-child { color: var(--gold-light); }

.quality-bar-track {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 0;
  overflow: hidden;
  position: relative;
}

.quality-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--maroon), var(--gold));
  position: relative;
  animation: barFill 1.5s ease forwards;
  transform-origin: left;
}

@keyframes barFill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* ═══════════════════════════════════════
   WHY US SECTION
═══════════════════════════════════════ */
.why-section { background: var(--black); }

.why-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  padding: 28px 22px;
  transition: all 0.35s;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: linear-gradient(180deg, var(--maroon), var(--gold));
  transition: height 0.4s ease;
}
.why-card:hover::before { height: 100%; }
.why-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.4);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: var(--maroon-muted);
  border: 1px solid var(--maroon);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon-light);
  font-size: 20px;
  margin-bottom: 16px;
  transition: all 0.3s;
}
.why-card:hover .why-icon { background: var(--maroon); color: var(--gold-light); }

.why-card h5 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 10px;
}
.why-card p { font-size: 12.5px; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonials-section {
  background: var(--black-card);
  border-top: 1px solid var(--gold-border);
}

.testimonial-card {
  background: var(--black);
  border: 1px solid var(--black-border);
  padding: 26px 22px;
  height: 100%;
  transition: all 0.35s;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 14px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--maroon-muted);
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover {
  border-color: var(--gold-border);
  border-top: 2px solid var(--maroon);
  transform: translateY(-4px);
}

.stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }

.testimonial-text {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.author-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--maroon-deep), var(--maroon));
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-light);
  font-family: var(--font-display);
  flex-shrink: 0;
}

.author-info .name { font-size: 13px; font-weight: 700; color: var(--off-white); }
.author-info .location { font-size: 11px; color: var(--text-gold-muted); margin-top: 1px; }

/* ═══════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════ */
.contact-section { background: var(--black); }

.contact-form-wrap {
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  border-top: 3px solid var(--maroon);
  padding: 32px;
}

.form-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-gold-muted);
  margin-bottom: 6px;
}

.form-control, .form-select {
  background: var(--black);
  border: 1px solid var(--black-border);
  border-radius: 0;
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 10px 14px;
  transition: border-color 0.2s;
}
.form-control:focus, .form-select:focus {
  background: var(--black);
  border-color: var(--maroon);
  box-shadow: 0 0 0 2px rgba(128,0,32,0.15);
  color: var(--off-white);
}
.form-control::placeholder { color: var(--text-faint); }
.form-select option { background: var(--black-card); }

.contact-info { padding: 0; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--black-border);
}

.contact-icon {
  width: 38px;
  height: 38px;
  background: var(--maroon-muted);
  border: 1px solid var(--maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon-light);
  font-size: 14px;
  flex-shrink: 0;
}

.contact-item .clabel { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-gold-muted); margin-bottom: 3px; }
.contact-item .cval { font-size: 13px; color: var(--off-white); font-weight: 500; }

.response-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(20,100,20,0.1);
  border: 1px solid rgba(20,180,20,0.2);
}
.response-badge .dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.response-badge span { font-size: 12px; color: #22c55e; font-weight: 600; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--black-deep);
  border-top: 1px solid var(--gold-border);
  padding: 70px 0 0;
}

.footer-brand .name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social { display: flex; gap: 8px; }

.social-icon {
  width: 36px;
  height: 36px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
  transition: all 0.25s;
  border-radius: 2px;
}
.social-icon:hover { background: var(--maroon); color: var(--gold-light); border-color: var(--maroon); }

.footer-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gold-border);
}

footer ul li a {
  display: block;
  font-size: 12.5px;
  color: var(--text-muted);
  padding: 5px 0;
  transition: all 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
footer ul li a:hover { color: var(--gold-light); padding-left: 8px; }

.footer-bottom {
  margin-top: 50px;
  padding: 18px 0;
  border-top: 1px solid rgba(201,149,42,0.1);
  background: var(--black);
}
.footer-bottom p {
  font-size: 11.5px;
  color: var(--text-faint);
  margin: 0;
}

/* ═══════════════════════════════════════
   MARQUEE / TRUST BAR
═══════════════════════════════════════ */
.trust-bar {
  background: linear-gradient(90deg, var(--maroon-dark), var(--maroon-deep));
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.trust-bar-inner {
  display: flex;
  gap: 60px;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}

.trust-bar-inner:hover { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.trust-item i { color: var(--gold); font-size: 14px; }
.trust-sep { color: var(--maroon-light); font-size: 18px; }

/* ═══════════════════════════════════════
   STATS BAND
═══════════════════════════════════════ */
.stats-band {
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--black-card) 50%, var(--maroon-dark) 100%);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 50px 0;
}

.stat-item { text-align: center; padding: 10px; }
.stat-big-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-big-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.stat-item .stat-sep {
  display: block;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--maroon), var(--gold));
  margin: 8px auto;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 991px) {
  .nav-menu, .nav-right { display: none; }
  .burger-btn { display: flex; }
  .hero-slider { height: 80vh; }
  .cat-circles-section { top: 0; }
  .mega-menu-wrap { width: 96vw; left: 0; transform: none; }
}

@media (max-width: 767px) {
  section { padding: 55px 0; }
  .slide-ctas { flex-direction: column; align-items: flex-start; }
  .contact-form-wrap { padding: 22px 16px; }
  .hero-slider { height: 70vh; }
}

@media (max-width: 575px) {
  .top-bar .col-md-8 { flex-direction: column; gap: 4px !important; }
  .top-bar .col-md-4 { display: none; }
  .sticky-contact { display: none; }
}

/* ═══════════════════════════════════════
   SCROLL REVEAL (applied via JS)
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delay helpers */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }