/* ==========================================================================
   CMK ELECTRO POWER PVT. LTD. - Main Stylesheet
   Modern B2B Industrial E-Commerce Portal Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

:root {
  /* Brand Color Palette */
  --primary-navy: #004b87;
  --primary-navy-dark: #003360;
  --primary-navy-light: #0d5ea1;
  --primary-blue: #0066b2;
  --accent-cyan: #0284c7;
  --accent-light: #e0f2fe;
  
  /* Status & Action Colors */
  --success-green: #16a34a;
  --success-light: #dcfce7;
  --warning-amber: #f59e0b;
  --warning-light: #fef3c7;
  --danger-red: #dc2626;
  --danger-light: #fee2e2;

  /* Neutral Shades */
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --pure-white: #ffffff;

  /* Elevation & Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 14px 28px rgba(0, 75, 135, 0.12), 0 6px 12px rgba(0, 0, 0, 0.06);

  /* Borders & Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-pill: 9999px;

  /* Typography */
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --container-max-width: 1400px;
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-family: var(--font-family);
  font-size: 15px;
  line-height: 1.5;
  color: var(--slate-800);
  background-color: #f8fafc;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background-color: #f8fafc;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ==========================================================================
   TOP NOTIFICATION BAR (B2B Perks)
   ========================================================================== */
.top-notice-bar {
  background: linear-gradient(90deg, #002b4d 0%, #004b87 100%);
  color: #e2e8f0;
  font-size: 12.5px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-notice-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notice-badges {
  display: flex;
  align-items: center;
  gap: 20px;
}

.notice-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.notice-badge-item svg {
  color: #38bdf8;
}

.top-contacts {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #cbd5e1;
  font-weight: 500;
}

.top-contacts a:hover {
  color: #ffffff;
}

/* ==========================================================================
   MAIN SITE HEADER
   ========================================================================== */
.site-header {
  background-color: var(--pure-white);
  border-bottom: 1px solid var(--slate-200);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

/* Row 1: Brand Logo, Nav Links, Login Button */
.header-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--slate-100);
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.brand-company-title {
  display: flex;
  flex-direction: column;
}

.brand-company-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-navy);
  letter-spacing: -0.2px;
  line-height: 1.15;
}

.brand-company-sub {
  font-size: 11px;
  font-weight: 600;
  color: var(--slate-500);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.main-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link-item {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--slate-700);
  position: relative;
  padding: 6px 0;
}

.nav-link-item:hover, .nav-link-item.active {
  color: var(--primary-navy);
}

.nav-link-item.active::after, .nav-link-item:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: var(--primary-navy);
  border-radius: 2px;
}

.header-auth-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-blue);
  color: var(--pure-white);
  padding: 9px 22px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0, 102, 178, 0.25);
  transition: var(--transition-fast);
}

.header-auth-btn:hover {
  background-color: var(--primary-navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 75, 135, 0.3);
}

/* Row 2: Categories Dropdown, Search Input, Quick Action Tools */
.header-search-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 0;
}

/* Categories Trigger Button */
.categories-btn-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background-color: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  color: var(--slate-800);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.categories-btn-toggle:hover, .categories-btn-toggle.active {
  background-color: var(--primary-navy);
  color: var(--pure-white);
  border-color: var(--primary-navy);
}

.categories-btn-toggle svg {
  transition: transform 0.2s ease;
}

.categories-btn-toggle.active svg.chevron {
  transform: rotate(180deg);
}

/* Search Bar */
.search-bar-container {
  flex: 1;
  position: relative;
}

.search-form-wrap {
  display: flex;
  align-items: stretch;
  width: 100%;
  border: 1.5px solid #0284c7;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--pure-white);
  transition: box-shadow 0.2s ease;
}

.search-form-wrap:focus-within {
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.2);
}

.search-input-field {
  flex: 1;
  padding: 10px 18px;
  border: none;
  outline: none;
  font-size: 14px;
  color: var(--slate-800);
  background: transparent;
}

.search-input-field::placeholder {
  color: var(--slate-400);
}

.search-submit-btn {
  background-color: var(--primary-blue);
  color: var(--pure-white);
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.search-submit-btn:hover {
  background-color: var(--primary-navy);
}

/* Quick Action Navigation Icons */
.quick-action-items {
  display: flex;
  align-items: center;
  gap: 22px;
}

.quick-action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--slate-700);
  font-size: 12px;
  font-weight: 600;
  position: relative;
  padding: 2px 4px;
  transition: var(--transition-fast);
  cursor: pointer;
}

.quick-action-item svg {
  color: var(--primary-navy);
  transition: transform 0.2s ease, color 0.2s ease;
}

.quick-action-item:hover {
  color: var(--primary-navy);
}

.quick-action-item:hover svg {
  transform: translateY(-2px);
  color: var(--accent-cyan);
}

.cart-badge-count {
  position: absolute;
  top: -4px;
  right: 2px;
  background-color: var(--danger-red);
  color: var(--pure-white);
  font-size: 10px;
  font-weight: 800;
  min-width: 17px;
  height: 17px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 1.5px solid var(--pure-white);
}

/* ==========================================================================
   BREADCRUMB BAR
   ========================================================================== */
.breadcrumb-wrapper {
  background-color: var(--pure-white);
  border-bottom: 1px solid var(--slate-200);
  padding: 8px 0;
  font-size: 13px;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--slate-500);
}

.breadcrumb-list a {
  color: var(--primary-blue);
  font-weight: 500;
}

.breadcrumb-list a:hover {
  text-decoration: underline;
}

.breadcrumb-separator {
  color: var(--slate-400);
  font-size: 11px;
}

.breadcrumb-current {
  color: var(--slate-600);
  font-weight: 600;
}

/* ==========================================================================
   PROMOTIONAL HERO BANNERS (World-Class Industrial Trio B2B Gateway)
   ========================================================================== */
.promo-banners-section {
  padding: 28px 0 32px 0;
  position: relative;
}

.promo-banners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.promo-banner-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 20, 45, 0.08);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.16);
  user-select: none;
}

.promo-banner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 20, 50, 0.16);
}

/* Subtle background technical grid overlay */
.promo-banner-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 2;
  opacity: 0.6;
}

/* Card 1: Business Segment */
.banner-business {
  background: linear-gradient(135deg, #012247 0%, #003870 50%, #00529b 100%);
  color: #ffffff;
}
.banner-business:hover {
  border-color: rgba(56, 189, 248, 0.45);
}
.banner-business .promo-banner-backdrop-glow {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.3) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Card 2: Fast-Track Quick Order */
.banner-quick-order {
  background: linear-gradient(135deg, #043d2f 0%, #065f46 50%, #059669 100%);
  color: #ffffff;
}
.banner-quick-order:hover {
  border-color: rgba(52, 211, 153, 0.45);
}
.banner-quick-order .promo-banner-backdrop-glow {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.3) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Card 3: Dashboard & Reports */
.banner-dashboard {
  background: linear-gradient(135deg, #131b38 0%, #1e295d 50%, #2563eb 100%);
  color: #ffffff;
}
.banner-dashboard:hover {
  border-color: rgba(129, 140, 248, 0.45);
}
.banner-dashboard .promo-banner-backdrop-glow {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(129, 140, 248, 0.3) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.promo-banner-content {
  position: relative;
  flex: 1;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 3;
}

.promo-banner-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Top Pill Badge */
.promo-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.banner-business .promo-banner-badge {
  background: rgba(56, 189, 248, 0.16);
  color: #7dd3fc;
  border: 1px solid rgba(125, 211, 252, 0.3);
}

.banner-quick-order .promo-banner-badge {
  background: rgba(52, 211, 153, 0.16);
  color: #6ee7b7;
  border: 1px solid rgba(110, 231, 183, 0.3);
}

.banner-dashboard .promo-banner-badge {
  background: rgba(129, 140, 248, 0.16);
  color: #a5b4fc;
  border: 1px solid rgba(165, 180, 252, 0.3);
}

.promo-banner-title {
  font-size: 22px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: #ffffff;
  margin-bottom: 6px;
}

.promo-banner-subtitle {
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
  max-width: 65%;
}

.promo-banner-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.promo-banner-chips {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.promo-chip {
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.promo-banner-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  width: fit-content;
  transition: all 0.3s ease;
}

.promo-banner-cta-btn .cta-arrow {
  transition: transform 0.25s ease;
}

.promo-banner-card:hover .promo-banner-cta-btn .cta-arrow {
  transform: translateX(4px);
}

.banner-business:hover .promo-banner-cta-btn {
  background: #38bdf8;
  color: #001e3d;
  border-color: #38bdf8;
  box-shadow: 0 4px 14px rgba(56, 189, 248, 0.4);
}

.banner-quick-order:hover .promo-banner-cta-btn {
  background: #34d399;
  color: #022c22;
  border-color: #34d399;
  box-shadow: 0 4px 14px rgba(52, 211, 153, 0.4);
}

.banner-dashboard:hover .promo-banner-cta-btn {
  background: #818cf8;
  color: #0f172a;
  border-color: #818cf8;
  box-shadow: 0 4px 14px rgba(129, 140, 248, 0.4);
}

/* Image Wrap & Gradient Blending */
.promo-banner-image-wrap {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  overflow: hidden;
  z-index: 1;
}

.promo-banner-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.promo-banner-card:hover .promo-banner-image-wrap img {
  transform: scale(1.08);
}

/* Overlay gradients to blend seamlessly with left card background */
.banner-business .promo-banner-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #003870 0%, rgba(0, 56, 112, 0.85) 25%, rgba(0, 56, 112, 0.2) 65%, transparent 100%);
  z-index: 2;
}

.banner-quick-order .promo-banner-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #065f46 0%, rgba(6, 95, 70, 0.85) 25%, rgba(6, 95, 70, 0.2) 65%, transparent 100%);
  z-index: 2;
}

.banner-dashboard .promo-banner-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #1e295d 0%, rgba(30, 41, 93, 0.85) 25%, rgba(30, 41, 93, 0.2) 65%, transparent 100%);
  z-index: 2;
}

/* ==========================================================================
   EXPLORE CATEGORIES SECTION (Matching Screenshot)
   ========================================================================== */
.categories-section {
  padding: 10px 0 45px 0;
}

.section-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.section-main-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.4px;
}

.section-view-all-link {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.section-view-all-link:hover {
  color: var(--primary-navy-dark);
  text-decoration: underline;
}

/* Categories 7-Column Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}

.category-card {
  background-color: var(--pure-white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 16px 12px 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition-normal);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.category-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: transparent;
  transition: background-color 0.2s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--slate-300);
}

.category-card:hover::after {
  background-color: var(--primary-blue);
}

.category-image-container {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  padding: 6px;
  background: #ffffff;
}

.category-image-container img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.category-card:hover .category-image-container img {
  transform: scale(1.08);
}

.category-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--slate-800);
  line-height: 1.25;
  transition: color 0.2s ease;
}

.category-card:hover .category-title {
  color: var(--primary-navy);
}

.category-item-count {
  font-size: 11.5px;
  color: var(--slate-400);
  margin-top: 4px;
  font-weight: 500;
}

/* ==========================================================================
   FEATURED B2B PRODUCTS SECTION (Line-by-Line Categories)
   ========================================================================== */
.featured-products-section {
  padding: 40px 0 60px 0;
  background-color: #f8fafc;
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.master-featured-header {
  margin-bottom: 24px;
  align-items: flex-end;
}

.featured-section-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(30, 77, 183, 0.08);
  color: var(--primary-navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
  border: 1px solid rgba(30, 77, 183, 0.15);
}

.pulse-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.section-subtitle-text {
  font-size: 14px;
  color: var(--slate-500);
  margin-top: 4px;
  max-width: 720px;
}

.master-catalog-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-navy);
  color: var(--pure-white) !important;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  font-weight: 700;
  transition: var(--transition-fast);
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(30, 77, 183, 0.25);
  white-space: nowrap;
}

.master-catalog-btn:hover {
  background: var(--primary-navy-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(30, 77, 183, 0.35);
}

.category-showcases-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 24px;
}

.category-products-block {
  background: var(--pure-white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 22px 22px 24px 22px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.category-products-block:hover {
  border-color: var(--slate-300);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.category-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--slate-100);
}

.category-block-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.category-block-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(30, 77, 183, 0.08) 0%, rgba(30, 77, 183, 0.16) 100%);
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(30, 77, 183, 0.12);
}

.category-block-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.category-block-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--slate-900);
  margin: 0;
  line-height: 1.25;
}

.category-block-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

.category-block-title a:hover {
  color: var(--primary-navy);
}

.category-block-badge {
  font-size: 11px;
  font-weight: 700;
  color: #0f766e;
  background: #ccfbf1;
  padding: 2px 9px;
  border-radius: 999px;
  letter-spacing: 0.3px;
  border: 1px solid #99f6e4;
}

.category-block-subtitle {
  font-size: 12.5px;
  color: var(--slate-500);
  margin-top: 3px;
  line-height: 1.4;
}

.category-block-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-navy);
  background: rgba(30, 77, 183, 0.06);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid rgba(30, 77, 183, 0.12);
  white-space: nowrap;
  flex-shrink: 0;
}

.category-block-view-all:hover {
  background: var(--primary-navy);
  color: var(--pure-white);
  border-color: var(--primary-navy);
  transform: translateX(2px);
}

.products-grid-6 {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.product-item-card {
  background: var(--pure-white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 14px 12px 14px 12px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-normal);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.product-item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.09);
  border-color: var(--slate-300);
}

.product-badge-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 9.5px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 2.5px 7px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.4px;
  z-index: 2;
  border: 1px solid transparent;
}

.badge-instock {
  background-color: #ecfdf5;
  color: #059669;
  border-color: #a7f3d0;
}

.badge-bestseller {
  background-color: #eff6ff;
  color: #1d4ed8;
  border-color: #bfdbfe;
}

.badge-toprated {
  background-color: #fdf4ff;
  color: #9333ea;
  border-color: #f5d0fe;
}

.badge-fast {
  background-color: #fff7ed;
  color: #c2410c;
  border-color: #fed7aa;
}

.badge-oem {
  background-color: #f0fdf4;
  color: #15803d;
  border-color: #bbf7d0;
}

.badge-featured {
  background-color: var(--accent-light);
  color: var(--primary-navy);
}

.product-img-wrap {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 6px;
  background: #fbfcfe;
  border-radius: var(--radius-md);
}

.product-img-wrap img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-item-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

.product-brand-tag {
  font-size: 10.5px;
  font-weight: 800;
  color: #0284c7;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 4px;
  text-decoration: none;
  display: block;
}

.product-brand-tag:hover {
  text-decoration: underline;
}

.product-card-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.35;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 35px;
  text-decoration: none;
}

.product-card-name:hover {
  color: var(--primary-navy);
}

.product-sku-code {
  font-size: 11px;
  color: var(--slate-400);
  margin-bottom: 8px;
  font-family: monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-pricing-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--slate-100);
}

.product-price-amount {
  font-size: 15px;
  font-weight: 800;
  color: var(--slate-900);
}

.product-gst-note {
  font-size: 10px;
  color: var(--slate-400);
  font-weight: 500;
  display: block;
  margin-top: 1px;
}

.product-actions-btn-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 10px;
}

.btn-add-cart {
  background: var(--slate-100);
  color: var(--slate-800);
  border: 1px solid var(--slate-300);
  padding: 7px 6px;
  border-radius: var(--radius-md);
  font-size: 11.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-add-cart:hover {
  background: var(--slate-200);
  color: var(--slate-900);
}

.btn-rfq-quote {
  background: var(--primary-navy);
  color: var(--pure-white) !important;
  padding: 7px 6px;
  border-radius: var(--radius-md);
  font-size: 11.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.btn-rfq-quote:hover {
  background: var(--primary-navy-dark);
}

/* ==========================================================================
   WHY CHOOSE US / VALUE PROPOSITIONS
   ========================================================================== */
.cmk-advantage-section {
  padding: 85px 0 95px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.cmk-advantage-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 400px;
  background: radial-gradient(circle at 50% 0%, rgba(2, 132, 199, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.advantage-header-wrap {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 50px auto;
  position: relative;
  z-index: 2;
}

.advantage-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e0f2fe;
  color: #0284c7;
  border: 1px solid rgba(2, 132, 199, 0.25);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 850;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.advantage-main-title {
  font-size: 34px;
  font-weight: 850;
  color: var(--slate-900);
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.advantage-main-title span.gradient-text {
  background: linear-gradient(90deg, #0284c7 0%, #003366 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.advantage-subtitle {
  font-size: 16px;
  color: var(--slate-600);
  line-height: 1.65;
}

/* Asymmetric Bento Grid */
.advantage-bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

/* Base Bento Card */
.bento-card {
  border-radius: 24px;
  padding: 34px 30px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.bento-card:hover {
  transform: translateY(-5px);
}

/* Card 1: Flagship Quality Hero Card (7 Cols) */
.bento-card-hero {
  grid-column: span 7;
  background: linear-gradient(135deg, #001e3d 0%, #003366 60%, #0f172a 100%);
  color: #ffffff;
  border: 1px solid rgba(56, 189, 248, 0.3);
  box-shadow: 0 20px 45px rgba(0, 30, 61, 0.18);
}

.bento-card-hero::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.bento-card-hero:hover {
  border-color: #38bdf8;
  box-shadow: 0 25px 55px rgba(2, 132, 199, 0.25);
}

/* Card 2: Express Logistics Card (5 Cols) */
.bento-card-logistics {
  grid-column: span 5;
  background: #ffffff;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
}

.bento-card-logistics:hover {
  border-color: #0284c7;
  box-shadow: 0 20px 40px rgba(2, 132, 199, 0.12);
}

/* Card 3: B2B Procurement Card (5 Cols) */
.bento-card-procure {
  grid-column: span 5;
  background: #ffffff;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
}

.bento-card-procure:hover {
  border-color: #10b981;
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.12);
}

/* Card 4: Application Engineering Desk (7 Cols) */
.bento-card-engineering {
  grid-column: span 7;
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
  border: 1px solid rgba(16, 185, 129, 0.25);
  box-shadow: var(--shadow-sm);
}

.bento-card-engineering:hover {
  border-color: #059669;
  box-shadow: 0 20px 40px rgba(5, 150, 105, 0.12);
}

/* Bento Header Elements */
.bento-badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.bento-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
}

.bento-card-hero .bento-status-pill {
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.35);
}

.bento-card-logistics .bento-status-pill {
  background: #e0f2fe;
  color: #0284c7;
  border: 1px solid rgba(2, 132, 199, 0.25);
}

.bento-card-procure .bento-status-pill {
  background: #d1fae5;
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.bento-card-engineering .bento-status-pill {
  background: #fef3c7;
  color: #d97706;
  border: 1px solid rgba(217, 119, 6, 0.3);
}

.bento-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bento-card-hero .bento-icon-box { background: rgba(255, 255, 255, 0.1); color: #38bdf8; }
.bento-card-logistics .bento-icon-box { background: #e0f2fe; color: #0284c7; }
.bento-card-procure .bento-icon-box { background: #d1fae5; color: #059669; }
.bento-card-engineering .bento-icon-box { background: #e0f2fe; color: #0284c7; }

.bento-title {
  font-size: 21px;
  font-weight: 850;
  margin-bottom: 12px;
  line-height: 1.35;
}

.bento-card-hero .bento-title { color: #ffffff; font-size: 23px; }
.bento-card-logistics .bento-title, 
.bento-card-procure .bento-title, 
.bento-card-engineering .bento-title { color: var(--slate-900); }

.bento-desc {
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.bento-card-hero .bento-desc { color: #cbd5e1; }
.bento-card-logistics .bento-desc, 
.bento-card-procure .bento-desc, 
.bento-card-engineering .bento-desc { color: var(--slate-600); }

/* Technical Feature Checklist in Hero Bento */
.bento-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.bento-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #e2e8f0;
  font-weight: 600;
}

.bento-check-item svg {
  color: #38bdf8;
  flex-shrink: 0;
}

/* Micro Metric Chips */
.bento-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.bento-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 750;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.bento-card-hero .bento-chip {
  background: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.bento-card-logistics .bento-chip {
  background: #f1f5f9;
  color: #0f172a;
  border: 1px solid var(--slate-200);
}

.bento-card-procure .bento-chip {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.bento-card-engineering .bento-chip {
  background: #f0f9ff;
  color: #0369a1;
  border: 1px solid #bae6fd;
}

/* Bento Action Buttons */
.bento-btn-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 750;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
}

.bento-btn-procure {
  background: #10b981;
  color: #ffffff;
}

.bento-btn-procure:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.bento-btn-eng {
  background: #0284c7;
  color: #ffffff;
}

.bento-btn-eng:hover {
  background: #0369a1;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.3);
}

/* Trust Metrics Bottom Strip */
.advantage-trust-strip {
  margin-top: 36px;
  background: var(--pure-white);
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  padding: 24px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.trust-metrics-group {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.trust-metric-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-metric-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #e0f2fe;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-metric-text strong {
  display: block;
  font-size: 19px;
  font-weight: 850;
  color: var(--slate-900);
  line-height: 1.1;
}

.trust-metric-text span {
  font-size: 12px;
  color: var(--slate-500);
  font-weight: 600;
}

.trust-action-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-cta-btn {
  background: var(--primary-navy);
  color: #ffffff;
  font-size: 13px;
  font-weight: 750;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-cta-btn:hover {
  background: #003366;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 35, 71, 0.25);
}

/* Responsive Rules for Bento Grid */
@media (max-width: 1024px) {
  .bento-card-hero { grid-column: span 12; }
  .bento-card-logistics { grid-column: span 6; }
  .bento-card-procure { grid-column: span 6; }
  .bento-card-engineering { grid-column: span 12; }
  .trust-metrics-group { gap: 20px; }
}

@media (max-width: 768px) {
  .bento-card-logistics { grid-column: span 12; }
  .bento-card-procure { grid-column: span 12; }
  .advantage-main-title { font-size: 28px; }
  .advantage-trust-strip { flex-direction: column; align-items: flex-start; padding: 20px; }
  .trust-metrics-group { flex-direction: column; align-items: flex-start; gap: 16px; width: 100%; }
  .trust-action-group { width: 100%; justify-content: flex-start; }
}

/* ==========================================================================
   AUTHORIZED BRANDS & CHANNEL PARTNERS SHOWCASE
   ========================================================================== */
.brands-showcase-section {
  padding: 85px 0 90px 0;
  background: var(--pure-white);
  border-top: 1px solid var(--slate-200);
  position: relative;
  overflow: hidden;
}

.brands-header-wrap {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 45px auto;
}

.brands-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e0f2fe;
  color: #0284c7;
  border: 1px solid rgba(2, 132, 199, 0.25);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 850;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.brands-main-title {
  font-size: 34px;
  font-weight: 850;
  color: var(--slate-900);
  line-height: 1.25;
  letter-spacing: -0.4px;
  margin-bottom: 14px;
}

.brands-main-title span.gradient-text {
  background: linear-gradient(90deg, #0284c7 0%, #003366 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brands-subtitle {
  font-size: 16px;
  color: var(--slate-600);
  line-height: 1.65;
}

/* 4x2 Responsive Cards Grid */
.brands-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.brand-showcase-card {
  background: var(--pure-white);
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.brand-showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--slate-200);
  transition: background 0.3s ease;
}

.brand-showcase-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-blue);
  box-shadow: 0 16px 36px rgba(0, 35, 71, 0.1);
}

.brand-showcase-card:hover::before {
  background: linear-gradient(90deg, #0284c7 0%, #38bdf8 100%);
}

.brand-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.brand-partner-badge {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: #f1f5f9;
  color: var(--slate-700);
  border: 1px solid var(--slate-200);
}

.brand-verified-icon {
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-container {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 0 10px;
}

.brand-logo-container img {
  max-height: 40px;
  max-width: 130px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.brand-showcase-card:hover .brand-logo-container img {
  transform: scale(1.06);
}

.brand-info-wrap {
  margin-bottom: 18px;
}

.brand-name-title {
  font-size: 17px;
  font-weight: 850;
  color: var(--slate-900);
  margin-bottom: 6px;
}

.brand-specialty-text {
  font-size: 13px;
  color: var(--slate-500);
  line-height: 1.45;
}

.brand-explore-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 750;
  color: var(--primary-blue);
  margin-top: auto;
  transition: gap 0.2s ease;
}

.brand-showcase-card:hover .brand-explore-link {
  color: var(--primary-navy);
  gap: 9px;
}

/* OEM Trust Strip */
.brands-trust-strip {
  margin-top: 36px;
  background: linear-gradient(135deg, #001e3d 0%, #003366 100%);
  border-radius: 20px;
  padding: 24px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  box-shadow: 0 15px 35px rgba(0, 30, 61, 0.15);
  flex-wrap: wrap;
  gap: 20px;
}

.brands-trust-items {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.brands-trust-col {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brands-trust-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brands-trust-text strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.brands-trust-text span {
  font-size: 12px;
  color: #94a3b8;
}

.brands-trust-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brands-trust-btn {
  background: #38bdf8;
  color: #002347;
  font-size: 13px;
  font-weight: 800;
  padding: 11px 22px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.brands-trust-btn:hover {
  background: #7dd3fc;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(56, 189, 248, 0.35);
}

.brands-shop-link {
  color: #e2e8f0;
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 16px;
  transition: color 0.2s ease;
}

.brands-shop-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .brands-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .brands-trust-items { gap: 20px; }
}

@media (max-width: 640px) {
  .brands-cards-grid { grid-template-columns: 1fr; }
  .brands-main-title { font-size: 28px; }
  .brands-trust-strip { flex-direction: column; align-items: flex-start; padding: 20px; }
  .brands-trust-items { flex-direction: column; align-items: flex-start; gap: 16px; width: 100%; }
  .brands-trust-actions { width: 100%; justify-content: flex-start; }
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */
.site-footer {
  background-color: #0b1526;
  color: #94a3b8;
  margin-top: auto;
  border-top: 3px solid var(--primary-navy);
}

.footer-main-content {
  padding: 55px 0 35px 0;
}

.footer-columns-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 36px;
}

.footer-col-about {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand-logo {
  background: #ffffff;
  padding: 6px 12px;
  border-radius: var(--radius-md);
  width: fit-content;
  margin-bottom: 6px;
}

.footer-brand-logo img {
  height: 46px;
  width: auto;
}

.footer-about-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: #cbd5e1;
}

.footer-iso-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  color: #38bdf8;
  width: fit-content;
}

.footer-col-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--pure-white);
  margin-bottom: 18px;
  position: relative;
  letter-spacing: 0.2px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: var(--accent-cyan);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list a {
  font-size: 13.5px;
  color: #94a3b8;
  transition: var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--pure-white);
  transform: translateX(4px);
}

.footer-newsletter-form {
  display: flex;
  margin-top: 14px;
}

.footer-newsletter-input {
  flex: 1;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  padding: 10px 14px;
  color: #ffffff;
  font-size: 13px;
  outline: none;
}

.footer-newsletter-btn {
  background: var(--primary-navy-light);
  color: #ffffff;
  padding: 0 16px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-weight: 700;
  font-size: 13px;
  transition: var(--transition-fast);
}

.footer-newsletter-btn:hover {
  background: var(--accent-cyan);
}

.footer-bottom-bar {
  background-color: #060d17;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  font-size: 13px;
}

.footer-bottom-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-icon-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1e293b;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-icon-link:hover {
  background: var(--accent-cyan);
  color: var(--pure-white);
  transform: translateY(-2px);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1300px) {
  .products-grid-6 {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

@media (max-width: 1200px) {
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-columns-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .promo-banners-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .promo-banner-card {
    min-height: 230px;
    height: auto;
  }
  .promo-banner-subtitle {
    max-width: 60%;
  }
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .master-featured-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .master-catalog-btn {
    width: 100%;
    justify-content: center;
  }
  .category-block-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .category-block-view-all {
    width: 100%;
    justify-content: center;
  }
  .products-grid-6 {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .value-props-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .main-nav-links {
    display: none;
  }
  .shop-layout-container {
    grid-template-columns: 1fr !important;
  }
  .shop-filters-sidebar {
    display: none;
  }
  .shop-filters-sidebar.mobile-open {
    display: block;
  }
  .product-detail-layout {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .products-grid-6 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .category-products-block {
    padding: 16px 14px;
    border-radius: var(--radius-lg);
  }
}

@media (max-width: 640px) {
  .top-notice-bar {
    display: none;
  }
  .header-search-row {
    flex-wrap: wrap;
  }
  .categories-btn-toggle {
    width: 100%;
    justify-content: center;
  }
  .quick-action-items {
    width: 100%;
    justify-content: space-around;
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .shop-products-grid {
    grid-template-columns: 1fr !important;
  }
  .value-props-grid {
    grid-template-columns: 1fr;
  }
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-columns-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-flex {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .products-grid-6 {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .products-grid-6 .product-item-card {
    padding: 8px 8px 10px 8px;
  }
  .products-grid-6 .product-img-wrap {
    height: 95px;
    margin-bottom: 6px;
  }
  .products-grid-6 .product-card-name {
    font-size: 11.5px;
    height: 32px;
    margin-bottom: 4px;
  }
  .products-grid-6 .product-price-amount {
    font-size: 13px;
  }
  .products-grid-6 .product-actions-btn-group {
    gap: 4px;
    margin-top: 8px;
  }
  .products-grid-6 .btn-add-cart,
  .products-grid-6 .btn-rfq-quote {
    font-size: 10.5px;
    padding: 5px 3px;
  }
}

/* ==========================================================================
   SHOP / PRODUCT LISTING PAGE STYLES (Matching Reference Screenshot 1)
   ========================================================================== */
.shop-page-wrapper {
  padding: 24px 0 60px 0;
}

.shop-layout-container {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 24px;
  align-items: start;
}

/* Filter Sidebar */
.shop-filters-sidebar {
  background: var(--pure-white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
}

.filter-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1.5px solid var(--slate-200);
  margin-bottom: 8px;
}

.filter-sidebar-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--slate-900);
}

.filter-clear-all-btn {
  font-size: 12px;
  font-weight: 700;
  color: var(--danger-red);
  cursor: pointer;
}

.filter-clear-all-btn:hover {
  text-decoration: underline;
}

.filter-group-accordion {
  border-bottom: 1px solid var(--slate-100);
  padding: 12px 0;
}

.filter-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 4px 0;
  user-select: none;
}

.filter-group-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--slate-800);
}

.filter-group-icon {
  font-size: 14px;
  color: var(--slate-400);
  transition: transform 0.2s ease;
}

.filter-group-accordion.collapsed .filter-group-icon {
  transform: rotate(-90deg);
}

.filter-group-accordion.collapsed .filter-group-body {
  display: none;
}

.filter-group-body {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 200px;
  overflow-y: auto;
  padding-right: 4px;
}

.filter-checkbox-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--slate-700);
  cursor: pointer;
  padding: 2px 0;
}

.filter-checkbox-item:hover {
  color: var(--primary-navy);
}

.filter-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-checkbox-item input[type="checkbox"] {
  accent-color: var(--primary-navy);
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.filter-item-count {
  font-size: 11.5px;
  color: var(--slate-400);
  font-weight: 500;
}

/* Dynamic Category Specification Filters */
.spec-filters-divider {
  margin: 16px 0 10px;
  padding: 8px 12px;
  background: linear-gradient(135deg, rgba(26, 75, 140, 0.08) 0%, rgba(227, 30, 36, 0.05) 100%);
  border: 1px solid rgba(26, 75, 140, 0.16);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.spec-filters-tag {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  gap: 6px;
}

.spec-clear-btn {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--danger-red);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.spec-clear-btn:hover {
  text-decoration: underline;
}

.spec-filter-hint {
  margin: 12px 0 6px;
  padding: 12px 14px;
  background: var(--slate-50);
  border: 1px dashed var(--slate-300);
  border-radius: var(--radius-md);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.spec-filter-hint-icon {
  color: var(--primary-navy);
  flex-shrink: 0;
  margin-top: 2px;
}

.spec-filter-hint-body strong {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 3px;
}

.spec-filter-hint-body p {
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--slate-500);
  margin: 0;
}

/* Active Filters Bar & Chips */
.active-filters-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 14px;
  background: var(--pure-white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 6px;
}

.active-filters-label {
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--slate-500);
  margin-right: 4px;
}

.active-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-navy);
  background: #f0f6ff;
  border: 1px solid #bfdbfe;
  border-radius: 9999px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.active-filter-chip:hover {
  background: #e0edfe;
  border-color: #93c5fd;
  color: var(--primary-navy);
}

.active-filter-chip .chip-label {
  color: var(--slate-500);
  font-weight: 500;
}

.active-filter-chip .chip-remove {
  font-size: 14px;
  font-weight: 700;
  color: var(--slate-400);
  line-height: 1;
  margin-left: 2px;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.active-filter-chip:hover .chip-remove {
  color: var(--danger-red);
}

.active-filters-clear-btn {
  font-size: 12px;
  font-weight: 700;
  color: var(--danger-red);
  text-decoration: none;
  margin-left: auto;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.active-filters-clear-btn:hover {
  background: #fef2f2;
  text-decoration: underline;
}

/* Shop Main Content & Toolbar */
.shop-main-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.shop-results-count {
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-600);
}

.shop-toolbar-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.shop-sort-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-700);
}

.shop-sort-select {
  padding: 7px 14px;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-800);
  background: var(--pure-white);
  outline: none;
  cursor: pointer;
}

.shop-view-toggles {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-md);
  padding: 2px;
  background: var(--pure-white);
}

.view-toggle-btn {
  padding: 6px;
  border-radius: var(--radius-sm);
  color: var(--slate-500);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.view-toggle-btn.active, .view-toggle-btn:hover {
  background: var(--accent-light);
  color: var(--primary-navy);
}

/* Shop Products Grid */
.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.shop-product-card {
  background: var(--pure-white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-card);
}

.shop-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--slate-300);
}

.card-compare-action {
  position: absolute;
  top: 12px;
  right: 12px;
  color: var(--slate-400);
  cursor: pointer;
  transition: color 0.2s ease;
  z-index: 2;
}

.card-compare-action:hover {
  color: var(--primary-navy);
}

.shop-product-img-wrap {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  padding: 8px;
}

.shop-product-img-wrap img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.shop-product-card:hover .shop-product-img-wrap img {
  transform: scale(1.06);
}

.shop-brand-name {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.shop-product-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.35;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 38px;
  transition: color 0.2s ease;
}

.shop-product-title:hover {
  color: var(--primary-navy);
}

.shop-sku-text {
  font-size: 11px;
  color: var(--slate-500);
  margin-bottom: 10px;
  font-family: monospace;
}

.shop-price-box {
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--slate-100);
  margin-bottom: 12px;
}

.shop-price-val {
  font-size: 16px;
  font-weight: 800;
  color: var(--slate-900);
}

.shop-gst-incl {
  font-size: 11px;
  color: var(--slate-500);
  font-weight: 500;
}

.shop-mrp-val {
  font-size: 11.5px;
  color: var(--slate-400);
  text-decoration: line-through;
  margin-left: 6px;
}

.shop-add-cart-btn {
  width: 100%;
  border: 1.5px solid var(--primary-blue);
  color: var(--primary-blue);
  background: var(--pure-white);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  transition: var(--transition-fast);
}

.shop-add-cart-btn:hover {
  background: var(--primary-blue);
  color: var(--pure-white);
}

/* Pagination */
.shop-pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 30px;
}

.page-btn {
  min-width: 36px;
  height: 36px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  background: var(--pure-white);
  color: var(--slate-700);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.page-btn:hover, .page-btn.active {
  background: var(--primary-navy);
  color: var(--pure-white);
  border-color: var(--primary-navy);
}

/* ==========================================================================
   PRODUCT DETAIL PAGE STYLES (Matching Reference Screenshot 2)
   ========================================================================== */
.pdp-page-wrapper {
  padding: 24px 0 60px 0;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 380px 1fr 340px;
  gap: 28px;
  align-items: start;
}

/* Left: Gallery */
.pdp-gallery-card {
  background: var(--pure-white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 120px;
}

.pdp-main-image-wrap {
  width: 100%;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
}

.pdp-main-image-wrap img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.pdp-main-image-wrap:hover img {
  transform: scale(1.1);
}

.pdp-action-icons {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pdp-action-icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--slate-200);
  background: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-500);
  transition: var(--transition-fast);
}

.pdp-action-icon-btn:hover {
  background: var(--slate-100);
  color: var(--primary-navy);
}

.pdp-thumbnails-row {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.pdp-thumb-item {
  width: 54px;
  height: 54px;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 4px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.pdp-thumb-item.active, .pdp-thumb-item:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 2px rgba(2, 132, 199, 0.2);
}

.pdp-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Center: Product Information */
.pdp-info-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pdp-brand-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pdp-product-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.pdp-product-main-heading {
  font-size: 20px;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.35;
}

.pdp-share-btn {
  color: var(--slate-400);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease;
}

.pdp-share-btn:hover {
  color: var(--primary-navy);
}

.pdp-sku-badges-row {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12.5px;
  color: var(--slate-600);
}

.pdp-sku-badge {
  background: var(--slate-100);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-family: monospace;
  font-weight: 600;
}

.pdp-download-datasheet-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--primary-blue);
  color: var(--primary-blue);
  background: var(--pure-white);
  padding: 8px 18px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 13.5px;
  width: fit-content;
  transition: var(--transition-fast);
}

.pdp-download-datasheet-btn:hover {
  background: var(--accent-light);
}

/* 4 Trust Value Badges Grid */
.pdp-trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 10px 0;
}

.pdp-trust-badge-item {
  background: #f8fafc;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.pdp-trust-icon {
  font-size: 20px;
  color: var(--primary-blue);
}

.pdp-trust-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--slate-700);
  line-height: 1.25;
}

/* Key Attributes List */
.pdp-key-attributes-block {
  border-top: 1px solid var(--slate-200);
  padding-top: 16px;
}

.pdp-attr-header {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 10px;
}

.pdp-attr-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 6px 0;
}

.pdp-attr-name {
  color: var(--slate-500);
}

.pdp-attr-val {
  font-weight: 700;
  color: var(--slate-800);
}

.pdp-report-issue-link {
  font-size: 12px;
  color: var(--danger-red);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  cursor: pointer;
}

/* Right: Buy Box Card */
.pdp-buybox-card {
  background: var(--pure-white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 22px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 120px;
}

.pdp-pincode-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--slate-100);
  font-size: 13px;
}

.pdp-pincode-title {
  color: var(--slate-700);
  font-weight: 600;
}

.pdp-pincode-edit-btn {
  color: var(--primary-blue);
  font-weight: 700;
  cursor: pointer;
}

.pdp-qty-section {
  margin: 16px 0;
}

.pdp-qty-label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--slate-700);
  margin-bottom: 8px;
}

.pdp-qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--slate-300);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--pure-white);
}

.pdp-qty-btn {
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 800;
  color: var(--slate-700);
  background: var(--slate-50);
  transition: var(--transition-fast);
}

.pdp-qty-btn:hover {
  background: var(--slate-200);
}

.pdp-qty-input {
  width: 50px;
  text-align: center;
  font-weight: 800;
  font-size: 14px;
  border: none;
  outline: none;
  background: transparent;
}

.pdp-check-avail-link {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--primary-blue);
  text-decoration: underline;
  display: block;
  margin-bottom: 14px;
  cursor: pointer;
}

.pdp-pricing-section {
  margin-bottom: 16px;
}

.pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pdp-main-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--slate-900);
}

.pdp-gst-text {
  font-size: 12px;
  color: var(--slate-500);
}

.pdp-mrp-text {
  font-size: 13px;
  color: var(--slate-400);
  text-decoration: line-through;
}

.pdp-discount-tag {
  background: var(--success-light);
  color: var(--success-green);
  font-size: 11.5px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}

.pdp-bulk-discount-note {
  font-size: 11.5px;
  color: var(--slate-500);
  margin-top: 6px;
  line-height: 1.35;
}

.pdp-add-to-cart-btn {
  width: 100%;
  background: var(--primary-blue);
  color: var(--pure-white);
  padding: 12px;
  border-radius: var(--radius-md);
  font-size: 14.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 102, 178, 0.25);
  transition: var(--transition-fast);
  margin-bottom: 10px;
}

.pdp-add-to-cart-btn:hover {
  background: var(--primary-navy);
  transform: translateY(-1px);
}

.pdp-rfq-quote-btn {
  width: 100%;
  border: 1.5px solid var(--primary-navy);
  color: var(--primary-navy);
  background: var(--pure-white);
  padding: 10px;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  font-weight: 700;
  text-align: center;
  transition: var(--transition-fast);
}

.pdp-rfq-quote-btn:hover {
  background: var(--slate-100);
}

/* Bottom Tabs & Tech Specs */
.pdp-bottom-tabs-section {
  margin-top: 40px;
  background: var(--pure-white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pdp-tabs-nav-bar {
  display: flex;
  background: var(--slate-50);
  border-bottom: 1px solid var(--slate-200);
}

.pdp-tab-nav-btn {
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--slate-600);
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: var(--transition-fast);
}

.pdp-tab-nav-btn.active, .pdp-tab-nav-btn:hover {
  color: var(--primary-navy);
  background: var(--pure-white);
  border-bottom-color: var(--primary-navy);
}

.pdp-tab-panel {
  padding: 28px;
  display: none;
}

.pdp-tab-panel.active {
  display: block;
}

.tech-specs-table {
  width: 100%;
  border-collapse: collapse;
}

.tech-specs-table tr:nth-child(even) {
  background: #f8fafc;
}

.tech-specs-table td {
  padding: 12px 16px;
  font-size: 13.5px;
  border-bottom: 1px solid var(--slate-200);
}

.tech-specs-table td:first-child {
  width: 35%;
  font-weight: 700;
  color: var(--slate-700);
}

.tech-specs-table td:last-child {
  color: var(--slate-900);
}

/* ==========================================================================
   ABOUT US PAGE STYLES
   ========================================================================== */
/* ==========================================================================
   ABOUT US PAGE STYLES - WORLD-CLASS INDUSTRIAL REDESIGN
   ========================================================================== */

/* 1. Hero Section */
.about-hero-spatial {
  background: linear-gradient(135deg, #001e3d 0%, #003366 50%, #0284c7 100%);
  color: var(--pure-white);
  padding: 70px 0 85px 0;
  position: relative;
  overflow: hidden;
}

.about-hero-spatial::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.about-hero-spatial::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.2) 0%, transparent 65%);
  pointer-events: none;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-iso-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 800;
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.35);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  margin-bottom: 22px;
  letter-spacing: 0.8px;
}

.about-iso-badge svg {
  color: #38bdf8;
  animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.08); }
}

.about-hero-title {
  font-size: 44px;
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: -0.6px;
  margin-bottom: 18px;
  color: #ffffff;
}

.about-hero-title span.accent-cyan {
  color: #38bdf8;
  background: linear-gradient(90deg, #38bdf8 0%, #7dd3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-hero-subtitle {
  font-size: 17px;
  color: #cbd5e1;
  line-height: 1.65;
  max-width: 820px;
  margin: 0 auto;
}

/* About Stats Row with Floating Glassmorphism */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.about-stat-card {
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 24px 18px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.about-stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.6);
  background: rgba(15, 23, 42, 0.75);
  box-shadow: 0 20px 45px rgba(2, 132, 199, 0.25);
}

.stat-number {
  font-size: 38px;
  font-weight: 900;
  color: #38bdf8;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 13.5px;
  color: #e2e8f0;
  font-weight: 600;
  margin-top: 8px;
}

/* 2. Corporate Profile & Manufacturing Heritage */
.heritage-section {
  padding: 85px 0;
  background: #ffffff;
}

.heritage-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.heritage-tag {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  display: inline-block;
  margin-bottom: 8px;
}

.heritage-title {
  font-size: 34px;
  font-weight: 850;
  color: var(--slate-900);
  line-height: 1.25;
  letter-spacing: -0.4px;
  margin-bottom: 20px;
}

.heritage-desc {
  font-size: 15.5px;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: 16px;
}

.heritage-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.heritage-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.heritage-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #e0f2fe;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.heritage-feature-text h5 {
  font-size: 14.5px;
  font-weight: 750;
  color: var(--slate-900);
  margin-bottom: 3px;
}

.heritage-feature-text p {
  font-size: 12.5px;
  color: var(--slate-500);
  line-height: 1.4;
}

/* Heritage Right Visual Card */
.heritage-visual-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 24px;
  padding: 36px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
}

.heritage-visual-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.heritage-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
}

.heritage-visual-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.35;
}

.heritage-specs-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.heritage-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13.5px;
}

.heritage-spec-row span.spec-title {
  color: #94a3b8;
}

.heritage-spec-row span.spec-val {
  font-weight: 700;
  color: #f8fafc;
}

/* 3. BHAG 2030 Special Roadmap Section */
.bhag-spatial-section {
  padding: 85px 0;
  background: #060e1a;
  color: var(--pure-white);
  position: relative;
  overflow: hidden;
}

.bhag-spatial-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.bhag-card-container {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.7) 100%);
  border: 1.5px solid rgba(56, 189, 248, 0.35);
  border-radius: 28px;
  padding: 55px 45px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), 0 0 50px rgba(2, 132, 199, 0.15);
  text-align: center;
}

.bhag-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
  color: #000000;
  padding: 7px 20px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.bhag-quote-statement {
  font-size: 30px;
  font-weight: 850;
  line-height: 1.4;
  color: #ffffff;
  max-width: 980px;
  margin: 0 auto 24px auto;
  letter-spacing: -0.3px;
}

.bhag-quote-statement span.highlight-ge {
  color: #38bdf8;
  position: relative;
}

.bhag-quote-statement span.highlight-50m {
  color: #34d399;
}

.bhag-quote-statement span.highlight-50b {
  color: #fbbf24;
}

.bhag-subtext {
  font-size: 15.5px;
  color: #cbd5e1;
  max-width: 820px;
  margin: 0 auto 45px auto;
  line-height: 1.65;
}

/* BHAG Timeline Roadmap Grid */
.bhag-milestones-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
  position: relative;
}

.bhag-milestone-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bhag-milestone-box:hover {
  transform: translateY(-6px);
  border-color: #38bdf8;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(56, 189, 248, 0.15);
}

.milestone-badge-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.milestone-year {
  font-size: 24px;
  font-weight: 900;
  color: #38bdf8;
  letter-spacing: -0.5px;
}

.milestone-status-pill {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
}

.milestone-box-1 .milestone-status-pill { background: rgba(56, 189, 248, 0.2); color: #38bdf8; border: 1px solid rgba(56, 189, 248, 0.4); }
.milestone-box-2 .milestone-status-pill { background: rgba(52, 211, 153, 0.2); color: #34d399; border: 1px solid rgba(52, 211, 153, 0.4); }
.milestone-box-3 .milestone-status-pill { background: rgba(251, 191, 36, 0.2); color: #fbbf24; border: 1px solid rgba(251, 191, 36, 0.4); }

.milestone-box-title {
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.35;
}

.milestone-box-desc {
  font-size: 13.5px;
  color: #94a3b8;
  line-height: 1.6;
}

/* 4. Strategic Compass: Purpose, Vision, Mission */
.compass-section {
  padding: 85px 0;
  background: #f8fafc;
}

.section-title-wrap {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px auto;
}

.section-label-tag {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  display: inline-block;
  margin-bottom: 6px;
}

.section-heading-lg {
  font-size: 32px;
  font-weight: 850;
  color: var(--slate-900);
  letter-spacing: -0.4px;
}

.triad-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.triad-card {
  background: var(--pure-white);
  border: 1px solid var(--slate-200);
  border-radius: 22px;
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.triad-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
}

.card-purpose::before { background: linear-gradient(90deg, #0284c7 0%, #38bdf8 100%); }
.card-vision::before { background: linear-gradient(90deg, #059669 0%, #34d399 100%); }
.card-mission::before { background: linear-gradient(90deg, #d97706 0%, #fbbf24 100%); }

.triad-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.triad-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.triad-card:hover .triad-icon-wrap {
  transform: scale(1.08);
}

.card-purpose .triad-icon-wrap { background: #e0f2fe; color: #0284c7; }
.card-vision .triad-icon-wrap { background: #d1fae5; color: #059669; }
.card-mission .triad-icon-wrap { background: #fef3c7; color: #d97706; }

.triad-card-title {
  font-size: 21px;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 14px;
}

.triad-card-desc {
  font-size: 14.5px;
  color: var(--slate-600);
  line-height: 1.65;
}

/* 5. Core Values Section */
.values-modern-section {
  padding: 85px 0;
  background: var(--pure-white);
  border-top: 1px solid var(--slate-200);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-box-card {
  background: #f8fafc;
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  padding: 28px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.value-box-card:hover {
  background: #ffffff;
  border-color: var(--primary-blue);
  box-shadow: 0 16px 36px rgba(0, 35, 71, 0.08);
  transform: translateY(-5px);
}

.value-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: #e0f2fe;
  color: #0284c7;
}

.value-box-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 10px;
}

.value-box-desc {
  font-size: 13.5px;
  color: var(--slate-600);
  line-height: 1.6;
}

/* 6. Quality Assurance & Engineering Standards */
.quality-standards-section {
  padding: 85px 0;
  background: #0f172a;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.quality-standards-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(2, 132, 199, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 45px;
}

.quality-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 30px 26px;
  transition: all 0.35s ease;
}

.quality-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #38bdf8;
  transform: translateY(-5px);
}

.quality-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.quality-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quality-card-title {
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
}

.quality-card-desc {
  font-size: 13.5px;
  color: #94a3b8;
  line-height: 1.6;
}

/* 7. Company Infrastructure Gallery */
.company-gallery-section {
  padding: 85px 0;
  background: #f8fafc;
  border-top: 1px solid var(--slate-200);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.gallery-item-card {
  background: var(--pure-white);
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.gallery-item-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-blue);
}

.gallery-img-wrap {
  width: 100%;
  height: 210px;
  overflow: hidden;
  position: relative;
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item-card:hover .gallery-img-wrap img {
  transform: scale(1.08);
}

.gallery-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  color: #38bdf8;
  font-size: 11px;
  font-weight: 750;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.gallery-caption-box {
  padding: 18px;
}

.gallery-caption-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 4px;
}

.gallery-caption-sub {
  font-size: 12.5px;
  color: var(--slate-500);
  line-height: 1.4;
}

/* 8. Dual Marquee: OEM Partners & Enterprise Clients */
.dual-marquee-section {
  padding: 80px 0;
  background: #ffffff;
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  overflow: hidden;
}

.marquee-wrapper-row {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.marquee-container-outer {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track-left {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marqueeLeft 32s linear infinite;
}

.marquee-track-right {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marqueeRight 35s linear infinite;
}

.marquee-track-left:hover, .marquee-track-right:hover {
  animation-play-state: paused;
}

@keyframes marqueeLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.marquee-brand-item {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  height: 60px;
  transition: all 0.3s ease;
}

.marquee-brand-item img {
  max-height: 32px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: all 0.3s ease;
}

.marquee-brand-item:hover {
  background: var(--pure-white);
  border-color: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.marquee-brand-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.marquee-client-item {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  min-width: 220px;
}

.marquee-client-item:hover {
  background: var(--pure-white);
  border-color: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.client-logo-circle {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid var(--slate-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 15px;
  color: var(--primary-navy);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.client-info-text {
  display: flex;
  flex-direction: column;
}

.client-name-bold {
  font-size: 14px;
  font-weight: 800;
  color: var(--slate-900);
}

.client-sector-tag {
  font-size: 11px;
  color: var(--slate-500);
  font-weight: 600;
}

/* 9. High-Conversion B2B Call to Action */
.about-cta-modern {
  padding: 85px 0;
  background: linear-gradient(135deg, #001e3d 0%, #003366 50%, #004b87 100%);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-cta-modern::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.about-cta-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.about-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.35);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-cta-title {
  font-size: 36px;
  font-weight: 850;
  margin-bottom: 16px;
  letter-spacing: -0.4px;
}

.about-cta-desc {
  font-size: 16px;
  color: #cbd5e1;
  line-height: 1.65;
  margin-bottom: 32px;
}

.about-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-cta-primary-btn {
  background: #38bdf8;
  color: #002347;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(56, 189, 248, 0.35);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.about-cta-primary-btn:hover {
  background: #7dd3fc;
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(56, 189, 248, 0.45);
}

.about-cta-secondary-btn {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-weight: 700;
  font-size: 14.5px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.about-cta-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* Responsive Breakpoints for About Page */
@media (max-width: 1024px) {
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .heritage-grid { grid-template-columns: 1fr; gap: 40px; }
  .bhag-milestones-row { grid-template-columns: 1fr; gap: 18px; }
  .triad-cards-grid { grid-template-columns: 1fr; gap: 20px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .quality-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-hero-title { font-size: 34px; }
  .bhag-quote-statement { font-size: 24px; }
}

@media (max-width: 640px) {
  .about-stats-grid { grid-template-columns: 1fr; }
  .heritage-feature-list { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .about-hero-title { font-size: 28px; }
  .about-hero-spatial { padding: 50px 0 65px 0; }
  .bhag-card-container { padding: 35px 22px; }
  .bhag-quote-statement { font-size: 20px; }
  .about-cta-title { font-size: 26px; }
}

/* ==========================================================================
   SHOPPING CART & ORDER SUMMARY PAGE (cart.php)
   ========================================================================== */
.cart-page-wrapper {
  padding: 36px 0 60px 0;
  background: var(--slate-100);
  min-height: calc(100vh - 400px);
}

.cart-page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.cart-page-title {
  font-size: 24px;
  font-weight: 850;
  color: var(--slate-900);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-tax-notice {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--success-green);
  background: var(--success-light);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.cart-layout-container {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: start;
}

@media (max-width: 992px) {
  .cart-layout-container {
    grid-template-columns: 1fr;
  }
}

.cart-table-card {
  background: var(--pure-white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.cart-items-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-items-table th {
  background: #f8fafc;
  padding: 14px 18px;
  text-align: left;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--slate-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--slate-200);
}

.cart-items-table td {
  padding: 18px;
  vertical-align: middle;
  border-bottom: 1px solid var(--slate-200);
}

.cart-item-row-tr:last-child td {
  border-bottom: none;
}

.cart-prod-cell {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-prod-thumb {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
  background: #f8fafc;
  padding: 4px;
  flex-shrink: 0;
}

.cart-prod-name {
  font-size: 14px;
  font-weight: 750;
  color: var(--slate-900);
  display: block;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.cart-prod-name:hover {
  color: var(--primary-blue);
}

.cart-prod-sku {
  font-size: 12px;
  color: var(--slate-500);
  margin-top: 3px;
}

.cart-prod-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--success-green);
  background: var(--success-light);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  margin-top: 4px;
}

.cart-item-remove-btn {
  background: none;
  border: none;
  font-size: 16px;
  color: var(--slate-400);
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.cart-item-remove-btn:hover {
  color: #ef4444;
  background: #fee2e2;
}

/* Cart Actions Bar */
.cart-actions-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-continue-shopping {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary-navy);
  background: var(--pure-white);
  border: 1.5px solid var(--slate-300);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.btn-continue-shopping:hover {
  border-color: var(--primary-navy);
  background: #f8fafc;
}

.btn-clear-cart {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #ef4444;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  transition: background 0.2s ease;
}

.btn-clear-cart:hover {
  background: #fee2e2;
}

.cart-extra-card {
  background: var(--pure-white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 22px;
  margin-top: 20px;
  box-shadow: var(--shadow-sm);
}

/* Cart Order Summary Card */
.cart-summary-card {
  background: var(--pure-white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 26px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 140px;
}

.summary-title {
  font-size: 18px;
  font-weight: 850;
  color: var(--slate-900);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--slate-200);
}

.summary-line-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  color: var(--slate-600);
  margin-bottom: 12px;
}

.summary-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 2px dashed var(--slate-200);
  font-size: 15px;
  font-weight: 800;
  color: var(--slate-900);
}

.summary-total-row span:last-child {
  font-size: 22px;
  font-weight: 900;
  color: var(--primary-navy);
}

.summary-tax-note {
  font-size: 11.5px;
  color: var(--slate-500);
  margin-top: 8px;
  line-height: 1.4;
}

.summary-btn-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.btn-checkout-primary {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: var(--pure-white);
  border: none;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-checkout-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
}

.btn-download-proforma {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--pure-white);
  color: var(--primary-navy);
  border: 1.5px solid var(--primary-navy);
  padding: 11px 18px;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  font-weight: 750;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-download-proforma:hover {
  background: var(--accent-light);
}

.summary-trust-badges {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--slate-200);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.summary-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--slate-600);
}

/* Empty Cart View */
.cart-empty-card {
  background: var(--pure-white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 60px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.empty-icon-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
  color: var(--slate-400);
}

/* ==========================================================================
   AUTHENTICATION & GOOGLE SIGN-IN STYLES
   ========================================================================== */
.auth-modal-tabs {
  display: flex;
  gap: 8px;
  width: 100%;
}

.auth-tab-btn {
  flex: 1;
  padding: 10px 14px;
  background: none;
  border: none;
  border-bottom: 2.5px solid transparent;
  font-size: 14px;
  font-weight: 750;
  color: var(--slate-500);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.auth-tab-btn:hover {
  color: var(--primary-navy);
}

.auth-tab-btn.active {
  color: var(--primary-navy);
  border-bottom-color: var(--primary-navy);
}

.btn-google-auth {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--pure-white);
  color: #3c4043;
  border: 1.5px solid #dadce0;
  border-radius: var(--radius-md);
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: background-color 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.btn-google-auth:hover {
  background-color: #f8fafc;
  border-color: #c4c7c5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.btn-google-auth:active {
  background-color: #f1f3f4;
}

.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 18px 0;
  color: var(--slate-400);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.5px;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--slate-200);
}

.auth-divider span {
  padding: 0 12px;
}

/* User Logged In Profile Badge in Header */
.user-profile-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pure-white);
  border: 1.5px solid var(--slate-300);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 750;
  color: var(--primary-navy);
  cursor: pointer;
  transition: var(--transition-fast);
}

.user-profile-badge:hover {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-sm);
}

.user-avatar-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0284c7 0%, #004b87 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 850;
}

/* ==========================================================================
   B2B USER PROFILE & COMPANY DASHBOARD (profile.php)
   ========================================================================== */
.profile-page-wrapper {
  padding: 36px 0 70px 0;
  background: var(--slate-100);
  min-height: calc(100vh - 400px);
}

.profile-hero-card {
  background: linear-gradient(135deg, #002347 0%, #004b87 60%, #0284c7 100%);
  border-radius: var(--radius-xl);
  padding: 32px;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

.profile-hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.profile-user-summary {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.profile-avatar-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
  color: #002347;
  font-size: 28px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  border: 3px solid rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

.profile-details-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.profile-name-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.profile-user-name {
  font-size: 26px;
  font-weight: 850;
  color: #ffffff;
  margin: 0;
}

.badge-verified-enterprise {
  font-size: 11.5px;
  font-weight: 750;
  background: rgba(34, 197, 94, 0.25);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.4);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.badge-tier-partner {
  font-size: 11.5px;
  font-weight: 750;
  background: rgba(56, 189, 248, 0.2);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.4);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.profile-designation-text {
  font-size: 14.5px;
  color: #cbd5e1;
  margin: 0;
}

.profile-meta-tags-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.meta-pill {
  font-size: 12px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  color: #e2e8f0;
}

.profile-actions-col {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.profile-btn-edit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #38bdf8;
  color: #002347;
  border: none;
  font-weight: 800;
  font-size: 13.5px;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
}

.profile-btn-edit:hover {
  background: #7dd3fc;
}

.profile-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
}

.profile-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* KPI Stats Grid */
.profile-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

@media (max-width: 992px) {
  .profile-kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .profile-kpi-grid {
    grid-template-columns: 1fr;
  }
}

.profile-kpi-card {
  background: var(--pure-white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.profile-kpi-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.kpi-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kpi-value-num {
  font-size: 20px;
  font-weight: 850;
  color: var(--slate-900);
  line-height: 1.2;
}

.kpi-title-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--slate-600);
  margin-top: 2px;
}

.kpi-sub-trend {
  font-size: 11.5px;
  color: var(--slate-500);
  margin-top: 3px;
}

/* Tabs & Content */
.profile-tabs-wrapper {
  background: var(--pure-white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.profile-tabs-header {
  display: flex;
  background: #f8fafc;
  border-bottom: 1px solid var(--slate-200);
  overflow-x: auto;
}

.prof-tab-btn {
  padding: 16px 22px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: 13.5px;
  font-weight: 750;
  color: var(--slate-600);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.prof-tab-btn:hover {
  color: var(--primary-navy);
  background: rgba(0, 0, 0, 0.02);
}

.prof-tab-btn.active {
  color: var(--primary-navy);
  background: var(--pure-white);
  border-bottom-color: var(--primary-navy);
}

.prof-tab-content {
  padding: 28px;
  display: none;
}

.prof-tab-content.active {
  display: block;
}

/* Orders Table */
.table-responsive-card {
  width: 100%;
  overflow-x: auto;
}

.prof-orders-table {
  width: 100%;
  border-collapse: collapse;
}

.prof-orders-table th {
  background: #f8fafc;
  padding: 12px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 800;
  color: var(--slate-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--slate-200);
}

.prof-orders-table td {
  padding: 16px;
  vertical-align: middle;
  border-bottom: 1px solid var(--slate-200);
  font-size: 13.5px;
}

.po-badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--slate-700);
  background: #f1f5f9;
  border: 1px solid var(--slate-200);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

.status-pill {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 750;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.status-transit {
  background: #fef3c7;
  color: #b45309;
}

.status-delivered {
  background: var(--success-light);
  color: var(--success-green);
}

.status-processing {
  background: #e0f2fe;
  color: #0369a1;
}

.status-awaiting {
  background: #fef9c3;
  color: #854d0e;
}

.status-cancelled {
  background: #fee2e2;
  color: #b91c1c;
}

.btn-table-action {
  background: var(--primary-navy);
  color: #ffffff;
  border: none;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-table-action:hover {
  background: var(--primary-blue);
}

.btn-table-action-sec {
  background: var(--pure-white);
  color: var(--slate-700);
  border: 1px solid var(--slate-300);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  margin-left: 6px;
  transition: var(--transition-fast);
}

.btn-table-action-sec:hover {
  border-color: var(--slate-500);
  background: #f8fafc;
}

/* Company Details Row */
.company-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--slate-200);
  font-size: 13.5px;
}

.company-detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  color: var(--slate-500);
  font-weight: 600;
}

.detail-val {
  color: var(--slate-900);
  font-weight: 700;
  text-align: right;
  max-width: 60%;
}

/* Plant Cards */
.plant-address-card {
  background: var(--slate-50);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: var(--transition-fast);
}

.plant-address-card.default-plant {
  background: var(--pure-white);
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-sm);
}

.plant-badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  background: var(--accent-light);
  color: var(--primary-navy);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.plant-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 8px;
}

.plant-address-text {
  font-size: 13px;
  color: var(--slate-600);
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   B2B CHECKOUT & PAYMENT PROOF (checkout.php)
   ========================================================================== */
.checkout-page-wrapper {
  padding: 36px 0 70px 0;
  background: var(--slate-100);
  min-height: calc(100vh - 400px);
}

.checkout-header-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.checkout-layout-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: start;
}

@media (max-width: 992px) {
  .checkout-layout-grid {
    grid-template-columns: 1fr;
  }
}

.checkout-card-step {
  background: var(--pure-white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}

.step-header {
  background: #f8fafc;
  padding: 16px 24px;
  border-bottom: 1px solid var(--slate-200);
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-navy);
  color: #ffffff;
  font-size: 13px;
  font-weight: 850;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--slate-900);
  margin: 0;
}

.step-body {
  padding: 24px;
}

/* Payment Method Nav */
.payment-method-nav {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.pay-tab-btn {
  flex: 1;
  min-width: 140px;
  padding: 12px 14px;
  background: var(--slate-50);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-lg);
  font-size: 13px;
  font-weight: 750;
  color: var(--slate-700);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.pay-tab-btn:hover {
  border-color: var(--primary-blue);
  background: #f0fdf4;
}

.pay-tab-btn.active {
  border-color: var(--primary-navy);
  background: var(--pure-white);
  color: var(--primary-navy);
  box-shadow: var(--shadow-sm);
}

/* QR Payment Section */
.qr-payment-container {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  align-items: center;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 18px;
}

@media (max-width: 576px) {
  .qr-payment-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.qr-code-display-card {
  background: #ffffff;
  border: 1.5px solid var(--slate-300);
  border-radius: var(--radius-md);
  padding: 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.qr-image-wrapper {
  display: flex;
  justify-content: center;
}

.qr-instructions-col ol {
  margin: 0;
}

/* Proof Upload Zone */
.proof-upload-container {
  margin-top: 16px;
}

.file-drop-zone {
  border: 2px dashed var(--primary-blue);
  background: #f0f9ff;
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.file-drop-zone:hover {
  background: #e0f2fe;
  border-color: var(--primary-navy);
}

.drop-zone-icon {
  font-size: 28px;
  margin-bottom: 6px;
}

.drop-zone-text {
  font-size: 13px;
  color: var(--slate-700);
  line-height: 1.4;
}

/* Bank Details Table */
.bank-details-box {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.bank-info-table {
  width: 100%;
  border-collapse: collapse;
}

.bank-info-table td {
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--slate-200);
}

.bank-info-table tr:last-child td {
  border-bottom: none;
}

.bank-info-table td:first-child {
  color: var(--slate-500);
  width: 35%;
  font-weight: 600;
}

.bank-info-table td:last-child {
  color: var(--slate-900);
}

/* ==========================================================================
   CONTACT US PAGE - WORLD-CLASS INDUSTRIAL REDESIGN
   ========================================================================== */

/* 1. Spatial Blueprint Hero */
.contact-hero-spatial {
  background: linear-gradient(135deg, #001e3d 0%, #003366 50%, #0284c7 100%);
  color: var(--pure-white);
  padding: 65px 0 75px 0;
  position: relative;
  overflow: hidden;
}

.contact-hero-spatial::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.contact-hero-spatial::after {
  content: '';
  position: absolute;
  top: -25%;
  right: -8%;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.22) 0%, transparent 68%);
  pointer-events: none;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.contact-hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 700;
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.35);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.5px;
}

.contact-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.4);
  color: #6ee7b7;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 700;
}

.live-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
  animation: liveDotPulse 1.8s infinite;
}

@keyframes liveDotPulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.contact-hero-title {
  font-size: 40px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: #ffffff;
}

.contact-hero-title span.accent-cyan {
  color: #38bdf8;
  background: linear-gradient(90deg, #38bdf8 0%, #7dd3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-hero-subtitle {
  font-size: 16.5px;
  line-height: 1.65;
  color: #cbd5e1;
  max-width: 820px;
  margin: 0 auto 30px auto;
}

.contact-hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.contact-hero-metric-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-hero-metric-item:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.metric-val {
  font-size: 20px;
  font-weight: 800;
  color: #38bdf8;
  margin-bottom: 2px;
}

.metric-lbl {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* 2. Fast-Connect 4-Channel Matrix */
.contact-matrix-section {
  padding: 0;
  margin-top: -32px;
  position: relative;
  z-index: 10;
}

.contact-matrix-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.contact-matrix-card {
  background: var(--pure-white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 22px 20px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.contact-matrix-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background 0.25s ease;
}

.contact-matrix-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 75, 135, 0.14);
  border-color: #93c5fd;
}

.contact-matrix-card:hover::before {
  background: linear-gradient(90deg, #0284c7 0%, #38bdf8 100%);
}

.matrix-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.matrix-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.icon-blue { background: #e0f2fe; color: #0284c7; }
.icon-green { background: #dcfce7; color: #16a34a; }
.icon-amber { background: #fef3c7; color: #d97706; }
.icon-red { background: #fee2e2; color: #dc2626; }

.matrix-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.25;
}

.matrix-subtitle {
  font-size: 11.5px;
  color: var(--slate-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.matrix-body {
  font-size: 13.5px;
  color: var(--slate-700);
  line-height: 1.55;
  margin-bottom: 14px;
}

.matrix-link {
  color: var(--primary-navy);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.15s ease;
}

.matrix-link:hover {
  color: var(--accent-cyan);
  text-decoration: underline;
}

.matrix-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--slate-100);
  font-size: 12px;
}

.matrix-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--slate-100);
  color: var(--slate-700);
  border: 1px solid var(--slate-200);
  padding: 5px 12px;
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
}

.matrix-action-btn:hover {
  background: var(--accent-light);
  color: var(--primary-navy);
  border-color: #bae6fd;
}

.matrix-action-btn.btn-whatsapp {
  background: #dcfce7;
  color: #15803d;
  border-color: #bbf7d0;
}

.matrix-action-btn.btn-whatsapp:hover {
  background: #22c55e;
  color: #ffffff;
  border-color: #22c55e;
}

/* 3. Main Inquiry & Operational Section */
.contact-main-section {
  padding: 50px 0 60px 0;
  background: #f8fafc;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 32px;
  align-items: start;
}

/* Form Card */
.contact-form-card {
  background: var(--pure-white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 34px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

.contact-form-header {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--slate-100);
}

.contact-form-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
  letter-spacing: 0.4px;
}

.contact-form-title {
  font-size: 24px;
  font-weight: 850;
  color: var(--slate-900);
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.contact-form-desc {
  font-size: 14px;
  color: var(--slate-600);
  line-height: 1.5;
}

/* Inquiry Type Pill Radio Group */
.inquiry-type-container {
  margin-bottom: 24px;
}

.inquiry-type-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 8px;
}

.inquiry-type-pills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.inquiry-pill-btn {
  border: 1px solid var(--slate-200);
  background: var(--slate-50);
  border-radius: var(--radius-md);
  padding: 10px 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--slate-700);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.inquiry-pill-btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: var(--slate-900);
}

.inquiry-pill-btn.active {
  background: #003360;
  color: #ffffff;
  border-color: #003360;
  box-shadow: 0 4px 12px rgba(0, 51, 96, 0.25);
}

.inquiry-pill-btn svg {
  width: 16px;
  height: 16px;
}

/* Precision Form Grid */
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form-group {
  margin-bottom: 16px;
  position: relative;
}

.contact-form-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 6px;
}

.contact-form-group label span.req {
  color: #ef4444;
}

.contact-form-input,
.contact-form-select,
.contact-form-textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 13.5px;
  font-family: inherit;
  color: var(--slate-900);
  background: #ffffff;
  border: 1.5px solid var(--slate-300);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.contact-form-input:focus,
.contact-form-select:focus,
.contact-form-textarea:focus {
  border-color: var(--primary-navy);
  box-shadow: 0 0 0 3px rgba(0, 75, 135, 0.12);
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
  color: var(--slate-400);
}

.contact-form-textarea {
  resize: vertical;
  min-height: 95px;
  line-height: 1.5;
}

/* File Dropzone Area */
.contact-dropzone {
  border: 2px dashed #cbd5e1;
  background: #f8fafc;
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 20px;
}

.contact-dropzone:hover,
.contact-dropzone.dragover {
  background: #e0f2fe;
  border-color: #0284c7;
}

.dropzone-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.dropzone-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e0f2fe;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.dropzone-text-col {
  text-align: left;
}

.dropzone-primary-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--slate-800);
}

.dropzone-sub-text {
  font-size: 11.5px;
  color: var(--slate-500);
}

.contact-file-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e0f2fe;
  color: #0369a1;
  padding: 6px 12px;
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 700;
  margin-top: 10px;
}

/* Form Actions */
.contact-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid var(--slate-100);
}

.contact-security-guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--slate-500);
}

.contact-submit-btn {
  background: linear-gradient(135deg, #003360 0%, #004b87 100%);
  color: #ffffff;
  border: none;
  padding: 13px 32px;
  border-radius: var(--radius-md);
  font-size: 14.5px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(0, 51, 96, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.contact-submit-btn:hover {
  background: linear-gradient(135deg, #002244 0%, #003b6d 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 51, 96, 0.35);
}

.contact-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Sidebar Cards */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-sos-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid #334155;
  border-radius: var(--radius-xl);
  padding: 24px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
}

.sidebar-sos-card::after {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.sos-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.5);
  color: #fca5a5;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.sos-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
}

.sos-desc {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.5;
  margin-bottom: 16px;
}

.sos-phone-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.sos-number {
  font-size: 18px;
  font-weight: 850;
  color: #38bdf8;
  letter-spacing: 0.5px;
}

.sos-dial-btn {
  background: #ef4444;
  color: #ffffff;
  border: none;
  padding: 6px 14px;
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.15s ease;
}

.sos-dial-btn:hover {
  background: #dc2626;
  color: #ffffff;
}

.sidebar-white-card {
  background: var(--pure-white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

.sidebar-card-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sla-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sla-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--slate-700);
}

.sla-icon {
  color: #10b981;
  font-weight: bold;
  font-size: 14px;
  margin-top: 1px;
}

.sla-text strong {
  color: var(--slate-900);
}

/* 4. Manufacturing Facilities & Regional Depots Section */
.contact-facilities-section {
  padding: 50px 0 60px 0;
  background: var(--pure-white);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.section-header-centered {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px auto;
}

.section-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e0f2fe;
  color: #0284c7;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.section-title-large {
  font-size: 32px;
  font-weight: 850;
  color: var(--slate-900);
  margin-bottom: 10px;
  letter-spacing: -0.4px;
}

.section-subtitle-text {
  font-size: 15px;
  color: var(--slate-600);
  line-height: 1.6;
}

.facility-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.facility-tab-btn {
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--slate-700);
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.facility-tab-btn:hover {
  background: #e2e8f0;
  color: var(--slate-900);
}

.facility-tab-btn.active {
  background: #003360;
  border-color: #003360;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 51, 96, 0.25);
}

.facility-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}

.facility-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.facility-card-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 30px;
}

.facility-details-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.facility-name {
  font-size: 22px;
  font-weight: 850;
  color: var(--slate-900);
  margin-bottom: 8px;
}

.facility-tagline {
  font-size: 13.5px;
  color: #0284c7;
  font-weight: 700;
  margin-bottom: 16px;
}

.facility-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 22px;
}

.facility-spec-item {
  background: var(--pure-white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 12px 14px;
}

.facility-spec-lbl {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--slate-500);
  font-weight: 700;
  margin-bottom: 2px;
}

.facility-spec-val {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--slate-900);
}

.facility-actions-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.facility-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #004b87;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease;
}

.facility-btn-primary:hover {
  background: #003360;
  color: #ffffff;
}

.facility-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pure-white);
  color: var(--slate-700);
  border: 1px solid var(--slate-300);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.15s ease;
}

.facility-btn-secondary:hover {
  background: var(--slate-100);
  color: var(--slate-900);
}

.facility-visual-col {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  min-height: 280px;
  background: #001e3d;
}

.facility-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.facility-visual-col:hover .facility-visual-img {
  transform: scale(1.03);
}

.facility-visual-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, transparent 100%);
  padding: 20px;
  color: #ffffff;
}

/* 5. Regional Hubs Grid */
.regional-hubs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.regional-hub-card {
  background: var(--pure-white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.regional-hub-card:hover {
  transform: translateY(-2px);
  border-color: #93c5fd;
}

.hub-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hub-address {
  font-size: 12.5px;
  color: var(--slate-600);
  line-height: 1.5;
  margin-bottom: 12px;
}

.hub-pill {
  display: inline-block;
  background: #f1f5f9;
  color: var(--slate-700);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

/* 6. Interactive Map Section */
.contact-map-section {
  padding: 50px 0 60px 0;
  background: #f8fafc;
}

.contact-map-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
  border: 1px solid var(--slate-300);
  background: #e2e8f0;
}

.contact-map-frame {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}

.map-floating-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  max-width: 320px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.map-badge-title {
  font-size: 14.5px;
  font-weight: 800;
  color: #38bdf8;
  margin-bottom: 4px;
}

.map-badge-desc {
  font-size: 12px;
  color: #cbd5e1;
  line-height: 1.45;
  margin-bottom: 10px;
}

.map-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #0284c7;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.15s ease;
}

.map-directions-btn:hover {
  background: #0369a1;
  color: #ffffff;
}

/* 7. B2B Procurement FAQ Section */
.contact-faq-section {
  padding: 60px 0 70px 0;
  background: var(--pure-white);
  border-top: 1px solid var(--slate-200);
}

.faq-accordion-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-accordion-item {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #ffffff;
}

.faq-accordion-item.active {
  border-color: #93c5fd;
  box-shadow: 0 4px 16px rgba(0, 75, 135, 0.08);
}

.faq-accordion-header {
  padding: 18px 22px;
  background: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  user-select: none;
  transition: background 0.15s ease;
}

.faq-accordion-item.active .faq-accordion-header {
  background: #f8fafc;
}

.faq-question-title {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.35;
}

.faq-toggle-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--slate-100);
  color: var(--slate-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease;
}

.faq-accordion-item.active .faq-toggle-icon {
  transform: rotate(45deg);
  background: #003360;
  color: #ffffff;
}

.faq-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 22px;
  color: var(--slate-700);
  font-size: 14px;
  line-height: 1.6;
}

.faq-accordion-item.active .faq-accordion-body {
  max-height: 300px;
  padding: 0 22px 20px 22px;
}

/* 8. Success Confirmation Modal */
.contact-success-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.contact-success-modal.active {
  display: flex;
  animation: modalPop 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalPop {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.contact-modal-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  max-width: 520px;
  width: 100%;
  padding: 36px 32px;
  text-align: center;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
  position: relative;
}

.contact-modal-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 18px auto;
}

.contact-modal-title {
  font-size: 22px;
  font-weight: 850;
  color: var(--slate-900);
  margin-bottom: 8px;
}

.contact-modal-desc {
  font-size: 14px;
  color: var(--slate-600);
  line-height: 1.5;
  margin-bottom: 20px;
}

.contact-ticket-box {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.ticket-number {
  font-size: 18px;
  font-weight: 850;
  color: #004b87;
  letter-spacing: 0.5px;
}

.contact-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .contact-matrix-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-main-grid {
    grid-template-columns: 1fr;
  }
  .facility-card-grid {
    grid-template-columns: 1fr;
  }
  .regional-hubs-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .contact-hero-spatial {
    padding: 50px 0 60px 0;
  }
  .contact-hero-title {
    font-size: 28px;
  }
  .contact-hero-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-matrix-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-row {
    grid-template-columns: 1fr;
  }
  .inquiry-type-pills {
    grid-template-columns: repeat(2, 1fr);
  }
  .regional-hubs-grid {
    grid-template-columns: 1fr;
  }
  .facility-specs-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-card {
    padding: 22px 18px;
  }
}







