:root {
  /* Premium Dark/Light Tech Theme */
  --bg-color: #FAFAFC;
  --bg-light: #F1F4F9;
  --bg-dark: #0A0815; /* Deep cyber purple-black */
  --bg-indigo: #14112E; /* Dark purple-indigo cards */
  
  --primary: #1C183A; /* Velvet dark indigo */
  --primary-hover: #2E285C;
  --accent-cyan: #00F2FE; /* Neon Cyan */
  --accent-magenta: #FF007F; /* Cyber Pink/Magenta */
  --accent-green: #00FF87; /* Lime Green */
  --accent-blue: #0077B6;
  
  --text-main: #1C183A;
  --text-light: #61647D;
  --text-white: #FFFFFF;
  
  --border-color: rgba(28, 24, 58, 0.08);
  --border-light: rgba(255, 255, 255, 0.1);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow: 0 10px 30px -10px rgba(28, 24, 58, 0.08);
  --shadow-hover: 0 20px 40px -10px rgba(0, 242, 254, 0.15);
}

/* Reset & Base */
* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

/* Hide default cursor on desktop when custom cursor is active */
@media (min-width: 1024px) {
  body.custom-cursor-active {
    cursor: none;
  }
  body.custom-cursor-active a,
  body.custom-cursor-active button,
  body.custom-cursor-active .clickable,
  body.custom-cursor-active select {
    cursor: none;
  }
  body.custom-cursor-active input,
  body.custom-cursor-active textarea {
    cursor: text !important;
  }
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  
  /* Texture dot grid pattern */
  background-image: radial-gradient(rgba(28, 24, 58, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* Custom Cursor Elements */
.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-cyan);
  position: fixed;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  display: none;
}
.cursor-outline {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--accent-cyan);
  position: fixed;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  display: none;
}

@media (min-width: 1024px) {
  .cursor-dot, .cursor-outline {
    display: block;
  }
}

/* Interactive Cursor Hover States */
body.c-hover .cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-magenta);
}
body.c-hover .cursor-outline {
  width: 50px;
  height: 50px;
  border-color: var(--accent-magenta);
  background-color: rgba(255, 0, 127, 0.03);
}

h1, h2, h3, h4 { 
  font-family: 'Outfit', sans-serif; 
  color: var(--primary); 
  font-weight: 700;
  line-height: 1.15;
}

a { 
  text-decoration: none; 
  color: inherit; 
  transition: var(--transition); 
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

/* TOP BAR */
.top-bar {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-right {
  display: flex;
  gap: 20px;
}
.top-bar-right a {
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar-right a:hover {
  color: var(--accent-cyan);
}

/* MAIN HEADER */
.main-header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 998;
  padding: 0;
  transition: var(--transition);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  position: relative;
}
.nav-logo { 
  height: 55px; 
  transition: var(--transition);
}
.nav-logo:hover {
  transform: scale(1.03);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
}
.nav-item {
  height: 100%;
  display: flex;
  align-items: center;
}
.main-nav > a, .nav-item > a {
  color: var(--text-main);
  font-weight: 500;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
  height: 100%;
  position: relative;
}
.main-nav > a:hover, .nav-item:hover > a {
  color: var(--accent-blue);
}

/* Wipro Style Mega Menu */
.mega-menu {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100vw;
  background-color: #FFFFFF;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 999;
  border-top: 1px solid var(--border-color);
}
.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-menu-inner {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 380px;
}
.mega-menu-right {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
}
.mega-menu-title {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 25px;
  padding-left: 15px;
  font-weight: 700;
}
.title-yellow { border-left: 4px solid var(--accent-cyan); }
.title-green { border-left: 4px solid var(--accent-green); }
.title-blue { border-left: 4px solid var(--accent-blue); }

.mega-menu-columns {
  display: flex;
  width: 100%;
}
.wipro-vertical-layout {
  display: flex;
  position: relative;
  width: 100%;
}
.vertical-categories {
  flex: 0 0 300px;
  border-right: 1px solid var(--border-color);
  padding-right: 20px;
}
.vertical-categories ul {
  list-style: none;
}
.vertical-categories ul li {
  margin-bottom: 8px;
}
.vertical-categories ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
}
.vertical-categories ul li a:hover {
  background: var(--bg-light);
  color: var(--accent-blue);
}
.vertical-categories ul li.has-sub-panel > a::after {
  content: '\203A';
  font-size: 1.3rem;
  font-weight: 600;
}

.grey-sub-panel {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - 300px);
  height: 100%;
  background-color: #F8F9FB;
  padding: 30px 40px;
  z-index: 10;
  overflow-y: auto;
}
.vertical-categories ul li:hover > .grey-sub-panel {
  display: block;
}
.grey-sub-panel .sub-title {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--primary);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}
.grey-sub-panel ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  list-style: none;
}
.grey-sub-panel ul li a {
  display: block;
  font-size: 0.95rem;
  padding: 12px 20px;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-weight: 500;
}
.grey-sub-panel ul li a:hover {
  background: var(--primary);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.mega-column {
  flex: 1;
  padding: 0 30px;
}
.mega-column:first-child { padding-left: 0; }
.mega-column:not(:last-child) { border-right: 1px solid var(--border-color); }
.mega-column ul { list-style: none; }
.mega-column ul li { margin-bottom: 12px; }
.mega-column ul li a {
  display: block;
  padding: 6px 0;
  font-size: 0.95rem;
  color: var(--text-light);
}
.mega-column ul li a:hover {
  color: var(--accent-blue);
  transform: translateX(3px);
}

/* PREMIUM HERO SECTION */
.hero-section {
  position: relative;
  width: 100%;
  background-color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.hero-bg-graphic {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(0, 242, 254, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 0, 127, 0.08) 0%, transparent 40%),
    linear-gradient(135deg, #07050E 0%, #14112C 100%);
  z-index: 1;
}
.hero-bg-lines {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 10;
  color: var(--text-white);
  padding: 100px 0;
}
.hero-content h1 {
  color: var(--text-white);
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 800;
  letter-spacing: -1px;
}
.hero-content h1 span {
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-content p {
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 750px;
  margin-bottom: 45px;
  color: rgba(255, 255, 255, 0.8);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: var(--transition);
  z-index: -1;
}
.btn:hover::after {
  transform: translateX(0);
}
.btn-primary {
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
  color: var(--primary) !important;
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 242, 254, 0.4);
}
.btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text-white) !important;
}
.btn-secondary:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan) !important;
  transform: translateY(-2px);
}

/* SECTIONS */
.section {
  padding: 100px 0;
  position: relative;
}
.section-title {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}
.section-title h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.section-title p {
  font-size: 1.15rem;
  color: var(--text-light);
}

/* BENTO / SERVICE GRID */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 242, 254, 0.2);
}
.service-card:hover::before {
  opacity: 1;
}
.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(0, 242, 254, 0.08);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 25px;
  transition: var(--transition);
}
.service-card:hover .card-icon {
  background: var(--accent-cyan);
  color: var(--primary);
  transform: scale(1.05) rotate(5deg);
}
.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.service-card p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 20px;
}

/* MARQUEE Infinite Ticker */
.ticker-section {
  padding: 60px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}
.ticker-title {
  text-align: center;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
  font-weight: 700;
  margin-bottom: 30px;
}
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  position: relative;
  display: flex;
}
.marquee-track {
  display: inline-flex;
  gap: 80px;
  padding-right: 80px;
  animation: marquee 40s linear infinite;
  width: max-content;
  align-items: center;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 30px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  height: 75px;
  transition: var(--transition);
}
.logo-badge:hover {
  border-color: var(--accent-cyan);
  background: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.logo-badge svg {
  height: 32px;
  width: auto;
}
.logo-badge img {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: var(--transition);
}
.client-badge img {
  height: auto;
  max-height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: var(--transition);
}
.logo-badge:hover img,
.client-badge:hover img {
  transform: scale(1.05);
}

.client-badge {
  padding: 14px 32px;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  min-width: 160px;
  overflow: visible;
  transition: var(--transition);
}
.client-badge:hover {
  color: var(--accent-blue);
  border-color: var(--accent-blue);
  transform: scale(1.05);
}

/* INTERACTIVE SERVICE EXPLORER MODULE */
.explorer-wrapper {
  background: var(--bg-light);
  border-radius: 30px;
  padding: 60px;
  border: 1px solid var(--border-color);
}
@media (max-width: 768px) {
  .explorer-wrapper {
    padding: 30px 20px;
    border-radius: 20px;
  }
}
.explorer-container {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  min-height: 600px;
}
@media (max-width: 992px) {
  .explorer-container {
    grid-template-columns: 1fr;
  }
}

.explorer-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.explorer-category-tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 992px) {
  .explorer-category-tabs {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .explorer-category-tabs .category-btn {
    flex: 1;
    justify-content: center;
  }
}
.category-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  border: 1px solid var(--border-color);
  background: #FFFFFF;
  color: var(--text-main);
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  border-radius: 16px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.category-btn i {
  font-size: 1.3rem;
  color: var(--text-light);
  transition: var(--transition);
}
.category-btn:hover {
  background: var(--bg-light);
  border-color: var(--accent-blue);
  transform: translateX(4px);
}
@media (max-width: 992px) {
  .category-btn:hover {
    transform: translateY(-2px);
  }
}
.category-btn.active {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.category-btn.active i {
  color: var(--accent-cyan);
}

.explorer-items-box {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 25px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
}
.explorer-items-box h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}
.explorer-items-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 350px;
  overflow-y: auto;
  padding-right: 5px;
}
.explorer-item-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  background: var(--bg-light);
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}
.explorer-item-btn:hover {
  background: #FFFFFF;
  border-color: var(--border-color);
  transform: translateX(4px);
}
.explorer-item-btn.active {
  background: var(--accent-blue);
  color: #FFFFFF;
}
.explorer-item-btn.active i {
  color: #FFFFFF;
}
.explorer-item-btn i {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Detail Panel */
.explorer-detail-panel {
  background: #FFFFFF;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  padding: 45px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--transition);
  animation: panelFadeIn 0.5s ease;
}
@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
  .explorer-detail-panel {
    padding: 30px 20px;
  }
}

.explorer-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}
.explorer-detail-title-wrapper h3 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.explorer-detail-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(0, 119, 182, 0.08);
  color: var(--accent-blue);
}

.explorer-detail-body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .explorer-detail-body {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.explorer-detail-text {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
}
.explorer-detail-features {
  margin-top: 25px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.explorer-detail-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-main);
  font-weight: 600;
}
.explorer-detail-features li i {
  color: var(--accent-blue);
  font-size: 1.2rem;
}

.explorer-detail-image-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  aspect-ratio: 4 / 3;
  background: var(--bg-light);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
}
.explorer-detail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.explorer-detail-image-wrapper:hover .explorer-detail-image {
  transform: scale(1.04);
}

/* SCROLL REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up { transform: translateY(40px); }
.reveal-down { transform: translateY(-40px); }
.reveal-left { transform: translateX(45px); }
.reveal-right { transform: translateX(-45px); }
.reveal-zoom { transform: scale(0.92); }

.reveal.is-visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Stagger Delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* WHO WE ARE STATISTICS */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
  margin-top: 50px;
}
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
.stat-card {
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: var(--transition);
}
.stat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-cyan);
  transform: translateY(-4px);
}
.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  opacity: 0.9;
}

/* FOOTER */
footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.footer-col h4 {
  color: var(--text-white);
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 40px; height: 2px;
  background: var(--accent-cyan);
}
.footer-logo {
  height: 45px;
}
.footer-col p {
  line-height: 1.7;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
}
.footer-col ul li a:hover {
  color: var(--accent-cyan);
  transform: translateX(3px);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-bottom-links {
  display: flex;
  gap: 25px;
}
.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}
.footer-bottom-links a:hover {
  color: var(--accent-cyan);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: rgba(28, 24, 58, 0.15);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(28, 24, 58, 0.3);
}

/* Sub-page Specific Support Styles */
.page-header {
  padding: 80px 0;
  color: var(--text-white);
  text-align: center;
  position: relative;
  overflow: hidden;
  background: 
    radial-gradient(circle at 50% 50%, rgba(0, 242, 254, 0.08) 0%, transparent 60%),
    linear-gradient(135deg, #07050E 0%, #14112C 100%);
}
.page-header h1 {
  color: var(--text-white);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.page-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
}

.service-box {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 242, 254, 0.2);
}
.service-box-image-wrapper {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  aspect-ratio: 16 / 10;
  position: relative;
  border: 1px solid var(--border-color);
}
.service-box-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.service-box:hover .service-box-image {
  transform: scale(1.05);
}
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(0, 242, 254, 0.08);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 25px;
  transition: var(--transition);
}
.service-box:hover .service-icon {
  background: var(--accent-cyan);
  color: var(--primary);
  transform: scale(1.05) rotate(5deg);
}
.service-box h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.service-box p {
  color: var(--text-light);
  font-size: 1rem;
  flex-grow: 1;
}
.btn-outline {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: transparent;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
}
.btn-outline:hover {
  background: var(--primary);
  color: #FFFFFF !important;
}

/* ==========================================
   AI CHATBOT WIDGET STYLES
   ========================================== */
.chatbot-launcher {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  color: var(--primary);
  box-shadow: 0 10px 25px rgba(0, 242, 254, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 10001;
  transition: var(--transition);
  animation: chatbotPulse 2s infinite;
}
.chatbot-launcher:hover {
  transform: scale(1.08) rotate(15deg);
  box-shadow: 0 15px 35px rgba(0, 242, 254, 0.6);
}
@keyframes chatbotPulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 242, 254, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(0, 242, 254, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 242, 254, 0); }
}

.chatbot-panel {
  position: fixed;
  bottom: 105px;
  right: 30px;
  width: 380px;
  height: 580px;
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 50px rgba(28, 24, 58, 0.15);
  display: flex;
  flex-direction: column;
  z-index: 10002;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}
.chatbot-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 480px) {
  .chatbot-panel {
    width: calc(100% - 40px);
    right: 20px;
    bottom: 95px;
    height: 450px;
  }
}

.chat-header {
  background: var(--primary);
  color: #FFFFFF;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-title-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat-title-wrapper i {
  color: var(--accent-cyan);
  font-size: 1.4rem;
}
.chat-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}
.chat-quick-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #FFFFFF;
  border: 1.5px solid rgba(28, 24, 58, 0.12);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #1C183A;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  white-space: nowrap;
}
.chat-quick-btn:hover {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  transform: translateY(-1px);
}
.chat-close-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.3rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-close-btn:hover {
  color: #FFFFFF;
  transform: scale(1.1);
}

.chat-messages {
  flex-grow: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: #FAFBFD;
}
.chat-msg {
  display: flex;
  max-width: 80%;
}
.chat-msg-content {
  padding: 12px 16px;
  font-size: 0.92rem;
  line-height: 1.5;
  border-radius: 16px;
}
.chat-msg.user {
  align-self: flex-end;
}
.chat-msg.user .chat-msg-content {
  background: var(--primary);
  color: #FFFFFF;
  border-top-right-radius: 2px;
  box-shadow: 0 4px 10px rgba(28, 24, 58, 0.1);
}
.chat-msg.bot {
  align-self: flex-start;
}
.chat-msg.bot .chat-msg-content {
  background: #FFFFFF;
  color: var(--text-main);
  border: 1px solid var(--border-color);
  border-top-left-radius: 2px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

/* Typing bubble styling */
.typing-dots {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  height: 20px;
}
.typing-dots span {
  width: 6px;
  height: 6px;
  background-color: var(--text-light);
  border-radius: 50%;
  display: inline-block;
  animation: typingBounce 1.4s infinite both;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

.chat-input-area {
  padding: 15px 20px;
  background: #FFFFFF;
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 10px;
  align-items: center;
}
.chat-input-field {
  flex-grow: 1;
  border: 1px solid var(--border-color);
  background: var(--bg-light);
  padding: 12px 18px;
  border-radius: 30px;
  font-family: inherit;
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition);
}
.chat-input-field:focus {
  border-color: var(--accent-blue);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.08);
}
.chat-send-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(28, 24, 58, 0.15);
}
.chat-send-btn:hover {
  background: var(--accent-blue);
  transform: scale(1.05);
}

/* Custom Cursor Overrides for AI Chatbot accessibility */
body.custom-cursor-active .chatbot-launcher,
body.custom-cursor-active .chatbot-panel,
body.custom-cursor-active .chatbot-panel * {
  cursor: auto !important;
}
body.custom-cursor-active .chatbot-launcher,
body.custom-cursor-active .chat-close-btn,
body.custom-cursor-active .chat-send-btn,
body.custom-cursor-active .chatbot-panel a,
body.custom-cursor-active .chatbot-panel button,
body.custom-cursor-active .chat-send-btn i {
  cursor: pointer !important;
}
body.custom-cursor-active .chat-input-field {
  cursor: text !important;
}

/* ==========================================
   HARDWARE STOREFRONT - FULL STYLES
   ========================================== */

/* Page Header Banner */
.store-page-hero {
  background: linear-gradient(135deg, #0A0815 0%, #14112E 50%, #1C183A 100%);
  padding: 50px 0 40px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 242, 254, 0.1);
}
.store-page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(0, 242, 254, 0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(0, 119, 182, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.store-page-hero .container {
  position: relative;
  z-index: 2;
}
.store-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.store-hero-breadcrumb a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s;
}
.store-hero-breadcrumb a:hover { color: #00F2FE; }
.store-hero-breadcrumb span { color: rgba(255,255,255,0.25); }
.store-hero-badge {
  display: inline-block;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.2);
  color: #00F2FE;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.store-page-hero h1 {
  color: #FFFFFF;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.store-page-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  max-width: 540px;
}

/* Main Store Layout */
.store-wrapper {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 28px;
  align-items: start;
  padding: 36px 0 60px;
}
@media (max-width: 900px) {
  .store-wrapper {
    grid-template-columns: 1fr;
  }
}

/* ---- SIDEBAR ---- */
.store-sidebar {
  position: sticky;
  top: 100px;
}
.sidebar-card {
  background: #FFFFFF;
  border: 1px solid rgba(28, 24, 58, 0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(28, 24, 58, 0.05);
}
.sidebar-search-bar {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(28, 24, 58, 0.06);
  background: #FAFAFD;
}
.sidebar-search-bar input {
  width: 100%;
  border: 1.5px solid rgba(28, 24, 58, 0.1);
  border-radius: 8px;
  padding: 10px 14px 10px 38px;
  font-size: 0.88rem;
  font-family: inherit;
  outline: none;
  background: #FFFFFF url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2361647D' viewBox='0 0 256 256'%3E%3Cpath d='M229.66,218.34l-50.07-50.06a88.11,88.11,0,1,0-11.31,11.31l50.06,50.07a8,8,0,0,0,11.32-11.32ZM40,112a72,72,0,1,1,72,72A72.08,72.08,0,0,1,40,112Z'/%3E%3C/svg%3E") no-repeat 12px center;
  transition: all 0.25s;
  color: #1C183A;
}
.sidebar-search-bar input:focus {
  border-color: #0077B6;
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
}

/* Category Nav */
.sidebar-cat-header {
  padding: 14px 18px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #61647D;
  border-bottom: 1px solid rgba(28, 24, 58, 0.05);
}
.sidebar-categories {
  list-style: none;
  padding: 8px 0;
}
.sidebar-categories li {
  margin: 0;
}
.sidebar-categories li a,
.sidebar-categories li button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 11px 18px;
  font-size: 0.92rem;
  font-weight: 500;
  color: #1C183A;
  text-decoration: none;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background 0.2s, color 0.2s, border-left 0.2s;
  border-left: 3px solid transparent;
}
.sidebar-categories li a:hover,
.sidebar-categories li button:hover {
  background: #F1F4F9;
  color: #0077B6;
  border-left-color: #0077B6;
}
.sidebar-categories li.active a,
.sidebar-categories li.active button,
.sidebar-categories li button.active {
  background: rgba(0, 119, 182, 0.06);
  color: #0077B6;
  border-left-color: #0077B6;
  font-weight: 600;
}
.sidebar-categories li .cat-count {
  font-size: 0.75rem;
  background: #F1F4F9;
  color: #61647D;
  padding: 2px 8px;
  border-radius: 30px;
  font-weight: 600;
}
.sidebar-categories li.active .cat-count,
.sidebar-categories li button.active .cat-count {
  background: rgba(0, 119, 182, 0.12);
  color: #0077B6;
}

/* Sidebar Filter Section */
.sidebar-filter-section {
  border-top: 1px solid rgba(28, 24, 58, 0.06);
  padding: 16px 18px;
}
.sidebar-filter-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #61647D;
  margin-bottom: 12px;
}
.filter-checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.filter-checkbox-item {
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  font-size: 0.88rem;
  color: #1C183A;
}
.filter-checkbox-item input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: #0077B6;
  cursor: pointer;
  flex-shrink: 0;
}
.sidebar-reset-btn {
  display: block;
  width: 100%;
  padding: 10px;
  margin-top: 14px;
  background: transparent;
  border: 1px solid rgba(28, 24, 58, 0.12);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #61647D;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  text-align: center;
}
.sidebar-reset-btn:hover {
  background: #F1F4F9;
  border-color: #0077B6;
  color: #0077B6;
}

/* ---- MAIN PRODUCTS AREA ---- */
.store-main {
  min-height: 600px;
}
.store-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding: 14px 20px;
  background: #FFFFFF;
  border: 1px solid rgba(28, 24, 58, 0.07);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(28, 24, 58, 0.04);
}
.store-results-label {
  font-size: 0.9rem;
  color: #61647D;
  font-weight: 500;
}
.store-results-label strong {
  color: #1C183A;
}
.store-sort-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #61647D;
}
.store-sort-select {
  border: 1.5px solid rgba(28, 24, 58, 0.1);
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 0.85rem;
  font-family: inherit;
  background: #FAFAFD;
  color: #1C183A;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}
.store-sort-select:focus {
  border-color: #0077B6;
}

/* Product Grid */
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
}

/* Product Card */
.store-product-card {
  background: #FFFFFF;
  border: 1px solid rgba(28, 24, 58, 0.07);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  box-shadow: 0 2px 12px rgba(28, 24, 58, 0.04);
  cursor: pointer;
}
.store-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(28, 24, 58, 0.1);
  border-color: rgba(0, 119, 182, 0.2);
}
.card-badge-row {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 5;
  pointer-events: none;
}
.badge-in-stock {
  background: rgba(0, 255, 135, 0.12);
  color: #00A855;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 3px 9px;
  border-radius: 20px;
  border: 1px solid rgba(0, 168, 85, 0.2);
}
.badge-category {
  background: rgba(0, 119, 182, 0.1);
  color: #0077B6;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  border: 1px solid rgba(0, 119, 182, 0.15);
}

/* Card Image */
.card-image-area {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F8FAFE;
  padding: 20px;
  overflow: hidden;
  position: relative;
}
.card-image-area img {
  max-width: 100%;
  max-height: 130px;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.store-product-card:hover .card-image-area img {
  transform: scale(1.08);
}

/* Quick-view icon overlay */
.card-quick-view-btn {
  position: absolute;
  bottom: 10px;
  right: 12px;
  background: #0077B6;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.25s;
  pointer-events: none;
}
.store-product-card:hover .card-quick-view-btn {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Card Body */
.card-body {
  padding: 16px 16px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-brand {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0077B6;
  margin-bottom: 5px;
}
.card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1C183A;
  margin-bottom: 7px;
  line-height: 1.35;
  font-family: 'Outfit', sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-desc {
  font-size: 0.8rem;
  color: #61647D;
  line-height: 1.5;
  margin-bottom: 12px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-spec-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}
.spec-pill {
  background: #F1F4F9;
  border: 1px solid rgba(28, 24, 58, 0.08);
  color: #61647D;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  white-space: nowrap;
}

/* Card Action Row */
.card-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(28, 24, 58, 0.06);
}
.card-price-tag {
  font-size: 0.8rem;
  color: #61647D;
  font-weight: 600;
  font-style: italic;
}
.card-add-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #1C183A;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}
.card-add-btn:hover {
  background: #0077B6;
  transform: scale(1.03);
}
.card-add-btn.added {
  background: #00A855;
}

/* Empty State */
.store-empty-state {
  text-align: center;
  padding: 60px 30px;
  background: #FFFFFF;
  border-radius: 14px;
  border: 1px solid rgba(28, 24, 58, 0.07);
}
.store-empty-state i {
  font-size: 3.5rem;
  color: #C8CCDE;
  display: block;
  margin-bottom: 18px;
}
.store-empty-state h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #1C183A;
}
.store-empty-state p {
  color: #61647D;
  font-size: 0.9rem;
  max-width: 340px;
  margin: 0 auto;
}

/* ---- QUICK VIEW MODAL ---- */
.qv-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 21, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  padding: 24px;
}
.qv-overlay.open {
  opacity: 1;
  visibility: visible;
}
.qv-modal {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(10, 8, 21, 0.25);
  max-width: 820px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  transform: scale(0.96) translateY(12px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.qv-overlay.open .qv-modal {
  transform: scale(1) translateY(0);
}
@media (max-width: 680px) {
  .qv-modal { grid-template-columns: 1fr; }
}
.qv-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(28, 24, 58, 0.06);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  color: #1C183A;
  transition: all 0.2s;
  z-index: 10;
}
.qv-close:hover {
  background: #FF007F;
  color: #FFFFFF;
  transform: rotate(90deg);
}
.qv-image-panel {
  background: #F8FAFE;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  border-radius: 20px 0 0 20px;
  min-height: 320px;
}
.qv-image-panel img {
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
}
.qv-info-panel {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.qv-cat-badge {
  display: inline-block;
  background: rgba(0, 119, 182, 0.08);
  color: #0077B6;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  width: fit-content;
}
.qv-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1C183A;
  margin-bottom: 12px;
  line-height: 1.2;
}
.qv-desc {
  font-size: 0.88rem;
  color: #61647D;
  line-height: 1.6;
  margin-bottom: 20px;
}
.qv-specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  margin-bottom: 24px;
  flex: 1;
}
.qv-specs-table th, .qv-specs-table td {
  padding: 8px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(28, 24, 58, 0.06);
}
.qv-specs-table th {
  color: #61647D;
  font-weight: 600;
  width: 42%;
  background: #F8FAFE;
}
.qv-specs-table td {
  color: #1C183A;
  font-weight: 500;
}
.qv-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.qv-btn-inquire {
  flex: 1;
  background: #0077B6;
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.qv-btn-inquire:hover {
  background: #005f90;
  transform: translateY(-2px);
}
.qv-btn-contact {
  background: transparent;
  color: #1C183A;
  border: 1.5px solid rgba(28, 24, 58, 0.15);
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qv-btn-contact:hover {
  border-color: #0077B6;
  color: #0077B6;
}

/* ---- INQUIRY CART DRAWER ---- */
.inquiry-fab {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 58px;
  height: 58px;
  background: #1C183A;
  color: #FFFFFF;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(28, 24, 58, 0.25);
  z-index: 8000;
  transition: all 0.3s;
}
.inquiry-fab.visible { display: flex; }
.inquiry-fab:hover {
  background: #0077B6;
  transform: scale(1.08);
}
.inquiry-fab-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #00F2FE;
  color: #1C183A;
  font-size: 0.7rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFFFFF;
}

.inquiry-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: -10px 0 40px rgba(28, 24, 58, 0.12);
  z-index: 9100;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.inquiry-drawer.open {
  right: 0;
}
.inquiry-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(28, 24, 58, 0.07);
  background: #FAFAFD;
}
.inquiry-drawer-header h3 {
  font-size: 1.1rem;
  font-family: 'Outfit', sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1C183A;
}
.inquiry-drawer-close {
  background: transparent;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #61647D;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.inquiry-drawer-close:hover { color: #FF007F; }
.inquiry-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.inquiry-drawer-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}
.inquiry-drawer-empty i { font-size: 2.5rem; color: #C8CCDE; margin-bottom: 12px; }
.inquiry-drawer-empty p { font-size: 0.85rem; color: #61647D; }

.inquiry-item-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  background: #F8FAFE;
  border-radius: 10px;
  border: 1px solid rgba(28, 24, 58, 0.06);
}
.inquiry-item-img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.inquiry-item-img img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.inquiry-item-info {
  flex: 1;
  min-width: 0;
}
.inquiry-item-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1C183A;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.inquiry-item-brand {
  font-size: 0.72rem;
  font-weight: 600;
  color: #0077B6;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.inquiry-item-remove {
  background: transparent;
  border: none;
  color: #C8CCDE;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.inquiry-item-remove:hover { color: #FF007F; }

.inquiry-drawer-footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(28, 24, 58, 0.07);
}
.inquiry-drawer-footer p {
  font-size: 0.8rem;
  color: #61647D;
  margin-bottom: 12px;
  text-align: center;
}
.btn-rfq {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #0077B6, #005f90);
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.25s;
  text-align: center;
}
.btn-rfq:hover {
  background: linear-gradient(135deg, #005f90, #003d5c);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 119, 182, 0.3);
}

/* ---- RFQ MODAL ---- */
.rfq-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 21, 0.65);
  backdrop-filter: blur(6px);
  z-index: 9200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  padding: 24px;
}
.rfq-overlay.open {
  opacity: 1;
  visibility: visible;
}
.rfq-modal {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(10, 8, 21, 0.25);
  max-width: 500px;
  width: 100%;
  padding: 36px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.rfq-modal h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.rfq-modal h3 i { color: #0077B6; }
.rfq-modal p.rfq-subtitle {
  font-size: 0.85rem;
  color: #61647D;
  margin-bottom: 24px;
  line-height: 1.5;
}
.rfq-form-group {
  margin-bottom: 15px;
}
.rfq-form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #1C183A;
  margin-bottom: 6px;
}
.rfq-form-group input,
.rfq-form-group textarea {
  width: 100%;
  border: 1.5px solid rgba(28, 24, 58, 0.12);
  border-radius: 9px;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-family: inherit;
  outline: none;
  background: #FAFAFD;
  color: #1C183A;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.rfq-form-group input:focus,
.rfq-form-group textarea:focus {
  border-color: #0077B6;
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.08);
  background: #FFFFFF;
}
.rfq-form-group textarea {
  resize: none;
  height: 80px;
}
.rfq-inquired-list {
  background: #F8FAFE;
  border-radius: 9px;
  padding: 12px 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(28, 24, 58, 0.07);
}
.rfq-inquired-list h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #61647D;
  margin-bottom: 8px;
}
.rfq-item-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 119, 182, 0.15);
  color: #0077B6;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  margin: 3px 3px 3px 0;
}
.rfq-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(28, 24, 58, 0.06);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  color: #1C183A;
  transition: all 0.2s;
}
.rfq-close:hover {
  background: #FF007F;
  color: #FFFFFF;
}
