/* =============================================
   GEARPROS — Premium Lubricants
   Custom CSS (used alongside Bootstrap 5 + Tailwind)
   ============================================= */

/* --- Variables --- */
:root {
  --primary: #0072B5;
  --primary-dark: #005C94;
  --accent: #FE000C;
  --accent-dark: #c4000a;
  --white: #FFFFFF;
  --off-white: #111b16;
  --black: #060f0a;
  --text-dark: #FFFFFF;
  --text-muted: #aaaaaa;
  --border: rgba(0,114,181,0.3);
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

/* --- Base --- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--black); }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); color: var(--white); }
a { text-decoration: none; transition: 0.3s; }
a:hover:not(.btn) { text-decoration: underline; text-underline-offset: 4px; }

/* =============================================
   1. MARQUEE BAR
   ============================================= */
.marquee-bar {
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 0;
  overflow: hidden;
}

/* =============================================
   2. NAVBAR
   ============================================= */
#mainNav {
  transition: all 0.4s ease;
  padding: 12px 0;
  z-index: 1050;
  background: transparent;
  position: absolute;
  width: 100%;
  top: 36px; /* Align with marquee */
}
#mainNav.scrolled {
  position: fixed;
  top: 0;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 8px 0;
}
.brand-text {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 1px;
}
.brand-gear { color: var(--black); }
.brand-pros { color: var(--accent); }

.nav-link {
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 0.5px !important;
  text-transform: capitalize !important;
  color: var(--white) !important;
  padding: 8px 14px !important;
  transition: all 0.3s ease !important;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background-color: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: center;
}
.nav-link:hover, .nav-link.active { 
  color: var(--white) !important; 
  text-decoration: underline !important;
  text-underline-offset: 6px;
}
.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
}

/* Scrolled State Nav Links */
#mainNav.scrolled .nav-link {
  color: var(--black) !important;
}
#mainNav.scrolled .nav-link:hover, #mainNav.scrolled .nav-link.active {
  color: var(--primary) !important;
}

/* Toggler Styles */
#mainNav .navbar-toggler {
  border-color: rgba(255,255,255,0.5) !important;
}
#mainNav .navbar-toggler-icon {
  filter: invert(1) brightness(2);
}
#mainNav.scrolled .navbar-toggler {
  border-color: rgba(0,0,0,0.1) !important;
}
#mainNav.scrolled .navbar-toggler-icon {
  filter: none;
}
.dropdown-item {
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--black) !important;
  padding: 8px 20px !important;
  transition: background 0.2s, color 0.2s !important;
}
.dropdown-item:hover {
  background: var(--primary) !important;
  color: var(--white) !important;
}

.cart-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
}
.cart-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.btn-quote {
  background: var(--accent);
  color: var(--white) !important;
  font-family: var(--font-head) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  border: none !important;
  transition: all 0.3s ease !important;
}
.btn-quote:hover { background: var(--white) !important; color: var(--accent) !important; transform: translateY(-2px); }
#mainNav.scrolled .btn-quote:hover { background: var(--accent-dark) !important; color: var(--white) !important; }

/* =============================================
   3. HERO SLIDER
   ============================================= */
.hero-section { background: var(--primary); }
.hero-carousel { height: 100vh; min-height: 560px; }
.carousel-inner, .carousel-item { height: 100%; }

.hero-slide {
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-overlay {
  display: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 160px;
}
.hero-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  text-transform: uppercase;
  padding-top: 10px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  border-left: 3px solid var(--accent);
  padding-left: 14px;
}
.btn-hero {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 0;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.btn-hero:hover {
  background: var(--accent-dark);
  color: var(--white);
  border-color: var(--accent-dark);
}
.carousel-indicators [data-bs-target] {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  opacity: 0.5;
  background: var(--white);
  border: none;
}
.carousel-indicators .active { opacity: 1; background: var(--accent); }

/* =============================================
   4. STATS BAR
   ============================================= */
.stats-bar {
  background: var(--accent);
  color: var(--white);
  padding: 56px 0;
}
.stat-number {
  font-family: var(--font-head);
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--white);
}
.stat-label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

/* =============================================
   SECTION HELPERS
   ============================================= */
/* Section Colors Update */
.section-white  { background: var(--white); color: var(--black); }
.section-dark   { background: var(--black); color: var(--white); }
.section-green  { background: var(--accent); }
.bg-light       { background: #f8f9fa !important; color: var(--black) !important; }

.section-white .section-title { color: var(--black); }
.section-white .section-title span:not([style]) { color: var(--black); }
.section-white .text-muted { color: #666 !important; }
.section-white p { color: #444; }

.section-eyebrow {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}
.section-eyebrow--light { color: var(--primary); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}
/* Replaces text-dark-green with White for Dark Mode */
.text-dark-green { color: var(--white) !important; }

.section-line {
  width: 64px;
  height: 5px;
  background: var(--primary);
  margin: 18px auto 0;
  border-radius: 2px;
}
.section-line--light { background: var(--primary); }

/* =============================================
   5. PRODUCT CATEGORIES
   ============================================= */
.cat-card {
  border: 1px solid rgba(0, 114, 181, 0.08);
  padding: 40px 32px;
  position: relative;
  height: 100%;
  border-radius: 16px;
  background: #ffffff;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: default;
  display: flex;
  flex-direction: column;
}
.cat-card--white { background: #ffffff; border: 1px solid #f0f0f0; box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
.cat-card--alt   { background: #fafafa; border: 1px solid #f0f0f0; box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
.cat-card:hover  { transform: translateY(-12px); box-shadow: 0 24px 60px rgba(0, 114, 181, 0.15); border-color: var(--primary); }

.cat-card__top-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--primary);
}
.cat-card__icon   { 
  font-size: 32px; 
  margin-bottom: 20px; 
  color: white; 
  background: var(--primary);
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
  transition: background 0.3s ease;
}
.cat-card:hover .cat-card__icon {
  background: var(--accent);
}
.cat-card__name   { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: #000000 !important; margin-bottom: 8px; }
.cat-card__desc   { font-size: 14px; color: #555; margin-bottom: 20px; }
.cat-card__link   { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--primary); letter-spacing: 0.5px; transition: color 0.2s; }
.cat-card__link:hover { color: var(--accent); }
.cat-card__link:hover { color: var(--accent); }

/* =============================================
   6. PRODUCT CARDS
   ============================================= */.product-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.04);
  color: var(--black);
  overflow: hidden;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 20px rgba(0,0,0,0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.product-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(0, 58, 92, 0.15); border-color: rgba(0, 114, 181, 0.3); }

.product-img-wrap { 
  position: relative; 
  background: #fcfcfc; 
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img {
  max-width: 90%;
  max-height: 85%;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img { transform: scale(1.08); }

.product-badge {
  position: absolute;
  top: 15px; right: 15px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(254, 0, 12, 0.3);
}
.product-body { padding: 24px; text-align: center; }
.product-cat  { font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--primary); margin-bottom: 10px; }
.product-name { font-family: var(--font-head); font-size: 19px; font-weight: 700; margin-bottom: 8px; color: #1a1a1a; min-height: 50px; display: flex; align-items: center; justify-content: center; }
.product-specs{ font-size: 13px; color: #777; margin-bottom: 20px; line-height: 1.6; }
.product-price { font-family: var(--font-head); font-size: 26px; font-weight: 800; color: var(--primary); margin-bottom: 20px; }
.btn-cart {
  background: var(--primary);
  color: var(--white);
  border: none;
  width: 100%;
  padding: 14px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.3s, transform 0.2s;
}
.btn-cart:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* =============================================
   7. CART SIDEBAR
   ============================================= */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1060;
  backdrop-filter: blur(3px);
}
.cart-overlay.open { display: block; }

.cart-sidebar {
  position: fixed;
  top: 0; right: 0;
  width: 420px;
  max-width: 95vw;
  height: 100vh;
  background: var(--white);
  z-index: 1070;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25,0.8,0.25,1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.25);
}
.cart-sidebar.open { transform: translateX(0); }

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  background: var(--white);
}
.cart-header h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.cart-close {
  background: none;
  border: none;
  font-size: 20px;
  color: #999;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.cart-close:hover { background: #f0f0f0; color: var(--black); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}
.cart-empty {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #bbb;
  gap: 12px;
}
.cart-empty p { font-size: 16px; }

.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px;
  border: 1px solid #f0f0f0;
  margin-bottom: 12px;
  position: relative;
  background: #fafafa;
}
.cart-item img {
  width: 72px; height: 72px;
  object-fit: cover;
  border-radius: 2px;
  background: #eee;
}
.cart-item-info { flex: 1; }
.cart-item-cat  { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--primary); }
.cart-item-name { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--black); margin: 2px 0 8px; }
.cart-item-price { font-family: var(--font-head); font-weight: 700; color: var(--primary); font-size: 18px; }
.qty-controls { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.qty-btn {
  width: 28px; height: 28px;
  border: 1px solid var(--primary);
  background: var(--white);
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.qty-btn:hover { background: #f0f0f0; }
.qty-count { font-weight: 700; font-size: 15px; min-width: 20px; text-align: center; }
.cart-item-remove {
  position: absolute;
  top: 10px; right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  color: #bbb;
  font-size: 16px;
  transition: color 0.2s;
  padding: 2px 5px;
}
.cart-item-remove:hover { color: var(--accent); }

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid #eee;
  background: #f9f9f9;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-family: var(--font-head);
}
.cart-total span:first-child { font-size: 16px; color: #666; }
.cart-total span:last-child  { font-size: 32px; font-weight: 800; color: var(--black); }
.btn-checkout {
  background: var(--accent);
  color: var(--white);
  border: none;
  width: 100%;
  padding: 16px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.2s;
}
.btn-checkout:hover { background: var(--accent-dark); }

/* =============================================
   8. WHY GEARPROS
   ============================================= */
.why-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 36px 28px;
  height: 100%;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(0, 114, 181, 0.15); }
.why-icon  { 
  font-size: 32px; 
  margin-bottom: 20px; 
  color: var(--white);
  background: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px; 
  height: 70px; 
  border-radius: 8px;
  transition: background 0.3s ease;
}
.why-card:hover .why-icon {
  background: var(--accent);
}
/* If they previously didn't have width/height or border radius, let's keep it minimal */
.why-title { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.why-desc  { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.7; }

/* =============================================
   9. INDUSTRIES
   ============================================= */
.industry-tile {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 30px 16px;
  text-align: center;
  cursor: default;
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
}
.industry-tile:hover {
  transform: scale(1.06);
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.3);
}
.industry-icon { font-size: 40px; margin-bottom: 12px; }
.industry-name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* =============================================
   TRUSTED PARTNERS
   ============================================= */
.partner-track-wrap {
  overflow: hidden;
  white-space: nowrap;
}
.partner-track {
  display: inline-flex;
  gap: 16px;
  animation: scroll-left 35s linear infinite;
}
.partner-track--reverse {
  animation: scroll-right 40s linear infinite;
}
.partner-track-wrap:hover .partner-track { animation-play-state: paused; }

@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scroll-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.partner-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 200px;
  min-width: 200px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  padding: 18px 16px;
  text-align: center;
  transition: background 0.25s, border-color 0.25s;
  cursor: default;
}
.partner-card:hover {
  background: #f4f6fa;
  border-color: rgba(0, 114, 181, 0.5); /* using primary */
}
.partner-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--primary);
  margin-bottom: 10px;
}
.partner-name   { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--black); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.partner-sector { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

.trust-badge {
  border: 1px solid rgba(0, 114, 181, 0.3);
  background: rgba(0, 114, 181, 0.06);
  padding: 20px;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
}
.trust-badge:hover {
  border-color: rgba(0, 114, 181, 0.7);
  background: rgba(0, 114, 181, 0.12);
}
.trust-label { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.trust-desc  { font-size: 12px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; }

/* =============================================
   10. TESTIMONIALS
   ============================================= */
.testimonial-wrap {
  overflow: hidden;
  white-space: nowrap;
}
.testimonial-track {
  display: inline-flex;
  gap: 24px;
  padding: 8px 24px;
  animation: scroll-left 40s linear infinite;
}
.testimonial-wrap:hover .testimonial-track { animation-play-state: paused; }

/* Review Submit Form Styling */
.review-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 114, 181, 0.05);
  position: relative;
  overflow: hidden;
}
.review-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.review-input {
  border: 1px solid #e0e0e0 !important;
  border-radius: 0 !important;
  padding: 12px 16px !important;
  font-family: var(--font-body) !important;
  transition: all 0.3s ease !important;
}
.review-input:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(0, 114, 181, 0.1) !important;
  outline: none !important;
}
.btn-review {
  background: var(--primary);
  color: var(--white);
  border: none;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px;
  border-radius: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-review:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.testimonial-card {
  display: inline-block;
  width: 340px;
  min-width: 340px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px;
  white-space: normal;
  vertical-align: top;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 114, 181, 0.1);
  border-color: var(--primary);
}
.testimonial-card::after {
  content: '"';
  position: absolute;
  top: 10px; right: 20px;
  font-size: 80px;
  color: rgba(0, 114, 181, 0.05);
  font-family: serif;
  line-height: 1;
}
.testimonial-stars  { font-size: 18px; color: var(--accent); margin-bottom: 12px; }
.testimonial-quote  { font-size: 15px; color: #333333; font-style: italic; line-height: 1.7; margin-bottom: 18px; }
.testimonial-author { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--black); }
.testimonial-company{ font-size: 13px; color: #999; }

/* =============================================
   11. CONTACT FORM
   ============================================= */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-icon {
  background: var(--primary);
  border-radius: 8px;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  color: var(--white);
  transition: background 0.3s ease;
}
.contact-info-item:hover .contact-icon {
  background: var(--accent);
}
.contact-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 4px;
}
.contact-value {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
}
.contact-input {
  background: var(--white) !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
  border-radius: 0 !important;
  color: var(--black) !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  padding: 14px 16px !important;
  box-shadow: none !important;
}
.contact-input:focus {
  outline: none !important;
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 2px var(--primary) !important;
}
.contact-input::placeholder { color: #aaa !important; }
.btn-submit {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 16px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-submit:hover { background: #333; }

/* =============================================
   12. FOOTER
   ============================================= */
.footer {
  background: var(--black);
  color: var(--white);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
}
.footer-gear { color: var(--white); }
.footer-pros { color: var(--accent); }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.social-icon {
  width: auto; height: auto;
  background: transparent !important;
  border: none !important;
  color: var(--white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, color 0.2s;
  padding: 0 5px;
}
.social-icon:hover { transform: scale(1.2); }
.social-facebook:hover  { color: #1877F2 !important; }
.social-twitter:hover   { color: var(--white) !important; }
.social-instagram:hover { color: #E4405F !important; }
.social-whatsapp:hover  { color: #25D366 !important; }

.footer-heading {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; font-size: 14px; color: var(--white); line-height: 1.5; }
.footer-links a { color: rgba(255,255,255,0.9); text-decoration: none; transition: color 0.3s ease, transform 0.3s ease; display: inline-block; }
.footer-links a:hover { color: var(--accent); transform: translateX(8px); text-decoration: underline !important; text-underline-offset: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  font-size: 13px;
  color: var(--white);
}
.footer-tagline-bottom {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* =============================================
   TOAST NOTIFICATIONS
   ============================================= */
.toast-container {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/* User requested Success Toast: #0072B5 background and Cart Add: #FE000C background. Since only .toast-msg exists without logic distinction, we map the base message to #0072B5, and if there is another class, it applies. */
.toast-msg {
  background: var(--primary);
  color: var(--white);
  padding: 14px 20px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  border-left: 4px solid var(--accent);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  animation: toast-in 0.3s ease, toast-out 0.3s ease 2.3s forwards;
  max-width: 340px;
}
@keyframes toast-in  { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
@keyframes toast-out { from { opacity:1; } to { opacity:0; transform:translateY(12px); } }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
  #mainNav {
    z-index: 1080 !important; /* Ensure navbar and its menu are above the overlay */
  }
  #navMenu {
    position: fixed;
    top: 0;
    right: 0;
    width: 290px;
    height: 100vh;
    background: #ffffff !important;
    padding: 80px 25px 40px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    display: block !important;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    visibility: hidden;
    overflow-y: auto;
  }
  #navMenu.show {
    transform: translateX(0);
    visibility: visible;
  }
  #navMenu .navbar-nav {
    align-items: flex-start !important;
    width: 100%;
  }
  #navMenu .nav-link {
    color: var(--black) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 12px 0 !important;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }
  #navMenu .nav-link::after {
    display: none !important;
  }
  #navMenu .nav-link:hover {
    color: var(--primary) !important;
    padding-left: 5px !important;
  }
  #navMenu .dropdown-menu {
    position: static;
    float: none;
    width: 100%;
    background: #fcfcfc;
    border: none;
    box-shadow: none;
    padding-left: 15px;
    margin-bottom: 10px;
  }
  #navMenu .dropdown-item {
    padding: 10px 0 !important;
    font-size: 14px !important;
    border-bottom: 1px dashed #eee;
  }
  #navMenu .btn-quote {
    width: 100% !important;
    margin-top: 25px;
  }
  
  /* Mobile Overlay */
  .nav-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); /* Just a simple dark overlay */
    z-index: 1065;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  /* Hide marquee on mobile if needed or adjust */
  .marquee-bar { font-size: 11px; }
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #FFF !important;
  border-radius: 50px;
  text-align: center;
  font-size: 35px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  transition: all 0.3s ease;
  animation: wa-pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* =============================================
   FEATURE ICONS
   ============================================= */
.feature-card {
  transition: all 0.3s ease;
  border: 1px solid #eee !important;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
  border-color: var(--primary) !important;
}
.feature-icon-box {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 20px;
  color: white;
  transition: all 0.3s ease;
}
.feature-card:hover .feature-icon-box {
  background: var(--accent);
  transform: rotateY(360deg);
}
