/* ==========================================================================
   KhemiTubes OF INDUSTRIES - MASTER WEB STYLESHEET
   Developed as a pure, clean, lightweight CSS for GoDaddy Shared Hosting.
   ========================================================================== */

/* 1. ROOT VARIABLES & DESIGN SYSTEM COMPONENTS */
:root {
  --font-headings: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
  
  --transition-speed: 0.4s;
  --transition-bezier: cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Primary Theme Colors (Default Khemi Corporate Blue) */
  --primary-color: #0b50be;      /* Cobalt Blue */
  --primary-hover: #073ba1;
  --primary-light: #f0f6fe;
  --secondary-color: #3b4652;    /* Slate Grey */
  --accent-color: #ff6a00;       /* Neon Safety Orange */
  --theme-dark: #070e17;         /* Deep Space Black */
  --theme-light: #f8fafc;        /* Cool White Background */
  
  --theme-glow: rgba(11, 80, 190, 0.12);
  --badge-bg: rgba(11, 80, 190, 0.08);
  --hero-overlay: rgba(7, 14, 23, 0.88);
}

/* Division-Specific Overrides via Page Class */
body.pvc-division {
  --primary-color: #0b50be;
  --primary-hover: #073ba1;
  --primary-light: #f0f6fe;
  --secondary-color: #3b4652;
  --accent-color: #ff6a00;
  --theme-dark: #070e17;
  --theme-light: #f8fafc;
  --theme-glow: rgba(11, 80, 190, 0.15);
}

body.camphor-division {
  --primary-color: #108548;      /* Organic Emerald Green */
  --primary-hover: #0a6133;
  --primary-light: #f0fdf4;
  --secondary-color: #52473b;    /* Earth Warm Grey */
  --accent-color: #dca110;       /* Rich Gold */
  --theme-dark: #09120e;         /* Sacred Dark Green */
  --theme-light: #faf9f6;        /* Antique Alabaster */
  --theme-glow: rgba(16, 133, 72, 0.15);
  --badge-bg: rgba(16, 133, 72, 0.08);
  --hero-overlay: rgba(9, 18, 14, 0.9);
}

/* Global resets and baseline styling */
body {
  font-family: var(--font-body);
  color: #1e293b;
  overflow-x: hidden;
  background-color: var(--theme-light);
  transition: background-color var(--transition-speed) var(--transition-bezier), color var(--transition-speed) var(--transition-bezier);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.serif-text {
  font-family: var(--font-serif);
}

.theme-transition {
  transition: all var(--transition-speed) var(--transition-bezier);
}

/* Custom Spacing Rules */
.py-large {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .py-large {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/* ==========================================================================
   2. GLASSMORPHIC TOP NAVIGATION SHELL
   ========================================================================== */
.main-navbar {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
  border-bottom: 1px solid rgba(241, 245, 249, 0.8);
  padding: 16px 0;
  transition: all 0.3s ease;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.navbar-brand {
  font-weight: 850;
  letter-spacing: -0.04em;
  display: flex;
  align-items: center;
  gap: 5px;
}

.navbar-brand .logo-text-primary {
  color: #0f172a;
  font-size: 1.5rem;
}

.navbar-brand .logo-sub {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  display: block;
  color: var(--primary-color);
  font-weight: 800;
  margin-top: -2px;
}

.logo-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: background-color var(--transition-speed) var(--transition-bezier);
  background: linear-gradient(135deg, #0b50be, #4f46e5);
}

body.camphor-division .logo-badge {
  background: linear-gradient(135deg, #108548, #0ea5e9);
}

.nav-link {
  font-weight: 700;
  color: #475569 !important;
  font-size: 0.78rem;
  padding: 10px 16px !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  position: relative;
  transition: color 0.3s ease;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 16px;
  right: 16px;
  height: 2.5px;
  border-radius: 20px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transition: transform var(--transition-speed) var(--transition-bezier);
}

.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
}

.btn-nav-quote {
  background-color: var(--primary-color);
  color: #ffffff !important;
  border-radius: 100px;
  padding: 10px 24px !important;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.btn-nav-quote:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1.5px);
  box-shadow: 0 12px 25px var(--theme-glow);
}

/* ==========================================================================
   3. MODERN FLEX OR GRID HERO BANNER LAYOUTS
   ========================================================================== */
.hero-section {
  background-color: var(--theme-dark);
  color: #ffffff;
  position: relative;
}

.hero-bg-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  padding: 160px 0 140px 0;
}

@media (min-width: 992px) {
  .hero-content-wrapper {
    padding: 220px 0 180px 0;
  }
}

.hero-pretitle {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--accent-color);
  font-weight: 800;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero-pretitle::after {
  content: '';
  width: 48px;
  height: 2px;
  background-color: var(--accent-color);
  display: inline-block;
}

.hero-title {
  font-size: 3rem;
  font-weight: 850;
  line-height: 1.12;
  margin-bottom: 28px;
  letter-spacing: -0.04em;
}

@media (min-width: 992px) {
  .hero-title {
    font-size: 4.4rem;
  }
}

.hero-desc {
  font-size: 1.15rem;
  color: #94a3b8;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero-buttons .btn {
  padding: 16px 36px;
  font-weight: 750;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  transition: all var(--transition-speed) var(--transition-bezier);
}

.btn-hero-primary {
  background-color: var(--primary-color);
  color: #ffffff;
  border: 1px solid var(--primary-color);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.btn-hero-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px var(--theme-glow);
}

.btn-hero-secondary {
  background-color: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-hero-secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ==========================================================================
   4. BENTO-GRID DESIGN HIGHLIGHTS SECTION
   ========================================================================== */
.highlights-band {
  background-color: #ffffff;
  box-shadow: 0 15px 44px rgba(0, 0, 0, 0.03);
  border-radius: 20px;
  margin-top: -75px;
  position: relative;
  z-index: 10;
  padding: 40px;
  border: 1px solid rgba(0,0,0,0.035);
}

.highlight-card {
  padding: 20px;
  border-right: 1px solid #f1f5f9;
  transition: transform var(--transition-speed) var(--transition-bezier);
}

.highlight-card:last-child {
  border-right: none;
}

@media (max-width: 768px) {
  .highlight-card {
    border-right: none;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
  .highlight-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
}

.highlight-icon-wrapper {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background-color: var(--primary-light);
  color: var(--primary-color);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition-speed) var(--transition-bezier);
}

.highlight-title {
  font-size: 1.1rem;
  font-weight: 750;
  margin-bottom: 8px;
  color: #0f172a;
}

.highlight-text {
  font-size: 0.88rem;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* ==========================================================================
   5. STANDARD SECTION HEADERS & GENERAL UTILITIES
   ========================================================================== */
.section-badge {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary-color);
  font-weight: 800;
  background-color: var(--badge-bg);
  padding: 8px 18px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 18px;
  border: 1px solid rgba(0, 0, 0, 0.015);
  transition: all var(--transition-speed) var(--transition-bezier);
}

.section-title {
  font-size: 2.4rem;
  font-weight: 850;
  color: #0f172a;
  letter-spacing: -0.03em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 640px;
  margin: 18px auto 0 auto;
  font-weight: 400;
  line-height: 1.65;
}

/* ==========================================================================
   6. HIGH-END DYNAMIC PRODUCT LISTING CARDS
   ========================================================================== */
.product-card {
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
  transition: all var(--transition-speed) var(--transition-bezier);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.06);
  border-color: var(--primary-color);
}

.product-img-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
  background-color: #f8fafc;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--transition-bezier);
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background-color: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 6px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.product-info-panel {
  padding: 30px;
}

.product-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

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

.product-desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 24px;
}

.product-spec-list {
  padding-top: 10px;
  margin-bottom: 24px;
}

/* Custom Specification Badges inside Grid */
.pvc-spec-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  background-color: #f0f6fe;
  color: #0b50be;
  padding: 4px 10px;
  border-radius: 100px;
  margin-right: 6px;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.camphor-spec-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  background-color: #f0fdf4;
  color: #108548;
  padding: 4px 10px;
  border-radius: 100px;
  margin-right: 6px;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.btn-product-spec {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--primary-light);
  color: var(--primary-color);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  padding: 12px 20px;
  border-radius: 100px;
  width: 100%;
  justify-content: center;
  transition: all var(--transition-speed) var(--transition-bezier);
}

.btn-product-spec:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 8px 20px var(--theme-glow);
}

/* ==========================================================================
   7. INDUSTRIAL INFRASTRUCTURE SHELLS
   ========================================================================== */
.infra-section {
  background-color: #070a0f;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.infra-grid-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: rgba(11, 80, 190, 0.14);
  filter: blur(140px);
  transition: background var(--transition-speed) var(--transition-bezier);
  pointer-events: none;
}

body.camphor-division .infra-grid-glow {
  background: rgba(16, 133, 72, 0.14);
}

.infra-feature-tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-color);
  font-weight: 800;
  display: block;
  margin-bottom: 12px;
}

.infra-title {
  font-size: 2.4rem;
  font-weight: 850;
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}

.infra-desc {
  font-size: 1.1rem;
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 40px;
}

.infra-gallery-holder {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.06);
  height: 440px;
}

.infra-gallery-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--transition-bezier);
}

.infra-gallery-holder:hover img {
  transform: scale(1.06);
}

.gallery-overlay-badge {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background-color: rgba(7, 10, 15, 0.9);
  backdrop-filter: blur(10px);
  padding: 14px 24px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  transition: border-color var(--transition-speed) var(--transition-bezier);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-overlay-badge h5 {
  font-size: 0.98rem;
  margin: 0 0 4px 0;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.gallery-overlay-badge span {
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 500;
}

.infra-stat-block {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 28px;
  border-radius: 16px;
  text-align: center;
  transition: all var(--transition-speed) var(--transition-bezier);
}

.infra-stat-block:hover {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 850;
  color: var(--accent-color);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #cbd5e1;
  font-weight: 750;
}

/* ==========================================================================
   8. COMPREHENSIVE QUALITY ASSURANCE CARDS
   ========================================================================== */
.quality-icon-holder {
  width: 64px;
  height: 64px;
  border-radius: 100px;
  background-color: var(--primary-color);
  color: #ffffff;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px var(--theme-glow);
  transition: all var(--transition-speed) var(--transition-bezier);
}

.quality-card {
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.035);
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.015);
  transition: transform var(--transition-speed) var(--transition-bezier), box-shadow var(--transition-speed) var(--transition-bezier);
  height: 100%;
}

.quality-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.04);
}


/* ==========================================================================
   9. REQUEST FOR QUOTE (RFQ) / CONTACT CARD PLATFORMS
   ========================================================================== */
.rfq-card {
  background-color: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.035);
  overflow: hidden;
}

.rfq-sidebar {
  background-color: var(--theme-dark);
  color: #ffffff;
  padding: 65px 50px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  height: 100%;
  transition: background-color var(--transition-speed) var(--transition-bezier);
}

.rfq-pattern-svg {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.03;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.rfq-sidebar-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-color);
  font-weight: 800;
  display: block;
  margin-bottom: 18px;
}

.rfq-sidebar-title {
  font-size: 2.1rem;
  font-weight: 850;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.rfq-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}

.rfq-info-icon {
  font-size: 1.35rem;
  color: var(--primary-color);
  margin-top: 2px;
  transition: color var(--transition-speed) var(--transition-bezier);
}

.rfq-info-text h6 {
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 6px;
  font-weight: 800;
}

.rfq-info-text p {
  font-size: 0.88rem;
  color: #94a3b8;
  margin: 0;
  line-height: 1.55;
}

.rfq-form-panel {
  padding: 65px 50px;
}

@media (max-width: 768px) {
  .rfq-sidebar, .rfq-form-panel {
    padding: 40px 24px;
  }
}

.form-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #475569;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control, .form-select {
  border: 1px solid #e2e8f0;
  padding: 14px 18px;
  border-radius: 8px;
  color: #0f172a;
  font-size: 0.92rem;
  font-weight: 400;
  transition: all 0.3s ease;
  background-color: #ffffff;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px var(--theme-glow);
}

.btn-submit-rfq {
  background-color: var(--primary-color);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 16px 36px;
  border-radius: 100px;
  border: none;
  box-shadow: 0 10px 24px var(--theme-glow);
  transition: all var(--transition-speed) var(--transition-bezier);
  width: 100%;
}

.btn-submit-rfq:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 12px 28px var(--theme-glow);
  transform: translateY(-2px);
}

.rfq-success-message {
  display: none;
  background-color: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  border-radius: 12px;
  padding: 24px;
  margin-top: 24px;
  align-items: center;
  gap: 18px;
}

/* ==========================================================================
   10. SYSTEM CREDENTIALS & PROFESSIONAL CORPS FOOTER
   ========================================================================== */
.footer-corporate {
  background-color: #070a0e;
  color: #94a3b8;
  font-size: 0.9rem;
  border-top: 4px solid var(--primary-color);
  padding-top: 90px;
  transition: border-color var(--transition-speed) var(--transition-bezier);
}

.footer-title {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2.5px;
  background-color: var(--primary-color);
  transition: background-color var(--transition-speed) var(--transition-bezier);
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 14px;
}

.footer-links-list a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-links-list a:hover {
  color: #ffffff;
  padding-left: 6px;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 35px 0;
  margin-top: 70px;
  color: #64748b;
  font-size: 0.82rem;
}

.certification-footer-badges img {
  max-height: 44px;
  opacity: 0.45;
  margin-right: 18px;
  transition: opacity 0.3s ease;
}

.certification-footer-badges img:hover {
  opacity: 0.75;
}

/* ==========================================================================
   11. DIVISION CONTROLLER AND PREMIUM SLIDER TOGGLE SWITCH
   ========================================================================== */
.division-controller {
  background-color: #0d121c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 0;
  color: #94a3b8;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

body.camphor-division .division-controller {
  background-color: #07120c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.selector-label {
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-right: 8px;
}

.switch-pills-container {
  display: inline-flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3px;
  border-radius: 100px;
}

body.camphor-division .switch-pills-container {
  background-color: rgba(255, 255, 255, 0.03);
}

.division-pill {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border-radius: 100px;
  color: #94a3b8 !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.division-pill:hover {
  color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.06);
}

/* Active Division Pill States */
body.pvc-division .division-pill.pvc-active {
  background-color: #0b50be;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(11, 80, 190, 0.3);
}

body.camphor-division .division-pill.camphor-active {
  background-color: #108548;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(16, 133, 72, 0.3);
}

/* Sticky floating pill switcher for ultimate accessibility */
.floating-division-pill-switcher {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background-color: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 4px;
}

.floating-switch-btn {
  font-size: 0.65rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  border-radius: 100px;
  color: #94a3b8 !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

body.pvc-division .floating-switch-btn.pvc-active {
  background-color: #0b50be;
  color: #ffffff !important;
}

body.camphor-division .floating-switch-btn.camphor-active {
  background-color: #108548;
  color: #ffffff !important;
}

/* Custom Manufacturing Process Grid */
.process-card {
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
  border-color: var(--primary-color);
}

.process-step {
  position: absolute;
  top: -15px;
  left: 30px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 4px 10px var(--theme-glow);
}

/* Camphor terms banner styling */
.terms-panel {
  background-color: var(--primary-light);
  border-left: 4px solid var(--primary-color);
  border-radius: 0 16px 16px 0;
  padding: 24px;
  border-top: 1px solid rgba(0,0,0,0.02);
  border-right: 1px solid rgba(0,0,0,0.02);
  border-bottom: 1px solid rgba(0,0,0,0.02);
}

.pdf-icon-placeholder {
  font-size: 2.2rem;
  color: #ef4444;
  background-color: #fef2f2;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}


#sampleRequestModal .alert + form {
    display: none;
}