/* ==========================================================================
   Shreejee Trading Corporation (STC) - Modern Styling System
   Incorporating Authentic Business Card Branding & Visual Theme
   Proprietor: Chetan Shah | Registered Office: Hiramoti Chambers, Ahmedabad
   Brand Colors: STC Crimson Red (#d90429), Deep Emerald (#064e3b), Dark Slate
   ========================================================================== */

:root {
  /* Brand Crimson Red & Accent Colors */
  --stc-red: #d90429;
  --stc-red-dark: #a0001c;
  --stc-red-light: #ffccd5;
  --stc-red-bg: #fff0f3;

  /* Premium Accent: Champagne Gold */
  --gold: #D97706;
  --gold-light: #FDE68A;
  --gold-bg: rgba(245, 158, 11, 0.08);
  --gold-glow: rgba(245, 158, 11, 0.25);

  /* Premium Accent: Clinical Teal */
  --teal: #0D9488;
  --teal-light: #5EEAD4;
  --teal-glow: rgba(6, 182, 212, 0.2);

  --primary-900: #0f172a;
  --primary-800: #1e293b;
  --primary-700: #064e3b;
  --primary-600: #047857;
  --primary-500: #10b981;

  /* Theme Background & Text Variables */
  --bg-page: #f8fafc;
  --bg-section-alt: #f1f5f9;
  --card-bg: #ffffff;
  --border-color: #e2e8f0;
  --text-heading: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --input-bg: #ffffff;
  --input-border: #cbd5e1;

  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;

  --bg-gradient: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #064e3b 100%);
  --card-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.08), 0 4px 12px -2px rgba(0, 0, 0, 0.04);
  --hover-shadow: 0 20px 40px -10px rgba(217, 4, 41, 0.18), 0 8px 20px -4px rgba(0, 0, 0, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-card-bg: rgba(255, 255, 255, 0.65);
  --glass-card-border: rgba(0, 0, 0, 0.06);
  --glass-card-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.12), inset 0 1px 0 0 rgba(255, 255, 255, 0.8);
  --glass-card-hover-shadow: 0 30px 60px -20px rgba(217, 4, 41, 0.18), inset 0 1px 0 0 rgba(255, 255, 255, 1);
  --spotlight-color: rgba(217, 4, 41, 0.08);

  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --spring: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.25;
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Utilities */
.text-gradient {
  background: linear-gradient(135deg, #d90429 0%, #ff4d6d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Layout Utilities */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-5 { padding-top: 2rem; padding-bottom: 2rem; }
.flex-shrink-0 { flex-shrink: 0; }
.white-space-nowrap { white-space: nowrap; }
.d-block { display: block; }
.d-none { display: none; }
.w-100 { width: 100%; }
.max-w-800 { max-width: 800px; }
.max-w-600 { max-width: 600px; }
.hero-compact { padding: 4rem 0 5rem; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.badge-primary {
  background: var(--stc-red-bg);
  color: var(--stc-red);
  border: 1px solid var(--stc-red-light);
}

.badge-amber {
  background: rgba(245, 158, 11, 0.15);
  color: #d97706;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--spring);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-sm {
  padding: 0.5rem 1.15rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

.btn-primary {
  background: var(--stc-red);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(217, 4, 41, 0.25);
}

.btn-primary:hover {
  background: var(--stc-red-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(217, 4, 41, 0.35), 0 0 40px rgba(217, 4, 41, 0.15);
}

.btn-accent {
  background: linear-gradient(135deg, #d90429 0%, #ff4d6d 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(217, 4, 41, 0.3);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(217, 4, 41, 0.45), 0 0 50px rgba(217, 4, 41, 0.15);
}

.btn-outline {
  background: transparent;
  color: var(--text-heading);
  border-color: var(--border-color);
}

.btn-outline:hover {
  background: var(--card-bg);
  border-color: var(--stc-red);
  color: var(--stc-red);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background-color: #1ebd5b;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 40px rgba(37, 211, 102, 0.15);
}

/* Top Announcement Bar */
.top-bar {
  background: var(--slate-900);
  color: var(--slate-400);
  font-size: 0.82rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-item strong {
  color: #ffffff;
  font-weight: 600;
}

/* Navigation Bar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--glass-card-border);
  padding: 0.85rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 0.6rem 0;
  box-shadow: var(--card-shadow);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  text-decoration: none;
}

.stc-logo-badge {
  min-width: 58px !important;
  width: auto;
  height: 44px;
  padding: 0 0.85rem;
  background: var(--stc-red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: 0 4px 12px rgba(217, 4, 41, 0.35);
  position: relative;
  overflow: hidden;
  flex-shrink: 0 !important;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.stc-stripes {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 60px;
  background: rgba(255, 255, 255, 0.18);
  transform: rotate(35deg);
  pointer-events: none;
}

.stc-logo-text {
  position: relative;
  z-index: 2;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* ===== COMPANY LOGO IMAGE EMBLEM ===== */
.stc-logo-img {
  width: 48px !important;
  height: 48px !important;
  max-width: 48px !important;
  max-height: 48px !important;
  border-radius: 12px;
  object-fit: contain;
  background: #ffffff;
  padding: 2px;
  box-shadow: 0 4px 14px rgba(217, 4, 41, 0.16);
  border: 1.5px solid rgba(217, 4, 41, 0.3);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  flex-shrink: 0 !important;
  display: block;
}

.stc-logo-img--footer {
  width: 42px !important;
  height: 42px !important;
  max-width: 42px !important;
  max-height: 42px !important;
  border-radius: 10px;
}

.logo:hover .stc-logo-img {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 8px 24px rgba(217, 4, 41, 0.28);
  border-color: var(--stc-red);
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.footer-logo-wrap .stc-logo-img {
  width: 42px !important;
  height: 42px !important;
  max-width: 42px !important;
  max-height: 42px !important;
  border-radius: 10px;
}

.logo-text {
  flex-shrink: 0;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-title-top {
  font-size: 1.38rem;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.02em;
  margin-bottom: 0.05rem;
  text-transform: uppercase;
  line-height: 1.05;
  font-family: var(--font-heading);
}

.logo-title-sub {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--stc-red);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.1;
  font-family: var(--font-heading);
}

.logo-text h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: 0.02em;
  margin-bottom: 0.1rem;
  white-space: nowrap;
}

.logo-text p {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  list-style: none;
  flex-wrap: nowrap;
}

.nav-link {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-body);
  transition: var(--transition);
  position: relative;
  padding: 0.4rem 0;
  white-space: nowrap;
  display: inline-block;
}

.nav-link:hover,
.nav-link.active {
  color: var(--stc-red);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--stc-red);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.quote-trigger {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  color: var(--text-heading);
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.quote-trigger:hover {
  border-color: var(--stc-red);
  color: var(--stc-red);
}

.quote-badge {
  background: var(--stc-red);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.1rem 0.5rem;
  border-radius: var(--radius-full);
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0B1849 0%, #090D16 40%, #0f172a 70%, #064e3b 100%);
  padding: 7rem 0 8rem;
  overflow: hidden;
  color: #ffffff;
}

.hero-bg-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(217, 4, 41, 0.22) 0%, rgba(15, 23, 42, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at 30% 40%, rgba(9, 13, 22, 0.8) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 3;
}

.hero-title {
  font-size: clamp(2.5rem, 4vw + 1rem, 3.75rem);
  color: #ffffff;
  font-weight: 800;
  line-height: 1.1;
  margin: 1.25rem 0;
  letter-spacing: -0.02em;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.8));
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--slate-300);
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 580px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-image-card img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}

.hero-image-card:hover img {
  transform: scale(1.06);
}

.hero-glass-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.35rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.overlay-icon {
  width: 48px;
  height: 48px;
  background: var(--stc-red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.overlay-text h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.overlay-text p {
  color: var(--slate-300);
  font-size: 0.82rem;
}

/* Authentic Business Card Replica Banner */
.stats-banner {
  background: var(--card-bg);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 3.5rem 0;
  position: relative;
  z-index: 10;
  margin-top: -3.5rem;
}

.card-replica-banner {
  background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-section-alt) 100%);
  border: 2px solid var(--border-color);
  border-left: 6px solid var(--stc-red);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2.25rem;
  margin-bottom: 2.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  box-shadow: var(--card-shadow);
}

.card-replica-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.card-replica-details h3 {
  font-size: 1.35rem;
  color: var(--text-heading);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.card-replica-details p {
  font-size: 0.9rem;
  color: var(--text-body);
  font-weight: 500;
}

.card-replica-contact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.88rem;
  color: var(--text-body);
  text-align: right;
}

.card-replica-contact strong {
  color: var(--text-heading);
  font-weight: 700;
}

.stats-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.stat-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--stc-red-bg) 0%, rgba(245, 158, 11, 0.08) 100%);
  color: var(--stc-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(217, 4, 41, 0.1);
}

.stat-info h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.15rem;
}

.stat-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Section Common */
.section {
  padding: 6rem 0;
}

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

.section-title {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.75rem);
  font-weight: 800;
  margin: 0.85rem 0;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-body);
}

/* Regulatory & Quality Compliance Showcase */
.compliance-section {
  background: var(--bg-section-alt);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-bottom: 3.5rem;
}

.badge-card {
  background: var(--glass-card-bg);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border: 1px solid var(--glass-card-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  box-shadow: var(--glass-card-shadow);
  transition: var(--spring);
}

.badge-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glass-card-hover-shadow);
  border-color: rgba(217, 4, 41, 0.3);
}

.badge-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--stc-red-bg);
  color: var(--stc-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  color: var(--text-heading);
}

.badge-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.category-card {
  background: var(--glass-card-bg);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border: 1px solid var(--glass-card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--glass-card-shadow);
  transition: var(--spring);
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glass-card-hover-shadow);
  border-color: rgba(217, 4, 41, 0.3);
}

.category-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid var(--glass-card-border);
}

.category-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.category-card-content h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--text-heading);
}

.category-card-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1rem;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: var(--glass-card-bg);
  border: 1px solid var(--glass-card-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--glass-card-shadow);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-content {
  position: relative;
}

.quote-icon {
  color: var(--gold-glow);
  margin-bottom: 1rem;
}

.testimonial-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-heading);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--stc-red) 0%, var(--gold) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.author-name {
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.15rem;
}

.author-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Comparison Matrix Table */
.comparison-table-wrapper {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: var(--card-shadow);
}

.comparison-table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 1.15rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.92rem;
}

.comparison-table th {
  background: var(--bg-section-alt);
  font-weight: 700;
  color: var(--text-heading);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

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

.comparison-table td strong {
  color: var(--text-heading);
}

.stc-highlight {
  color: var(--stc-red);
  font-weight: 700;
  background: var(--stc-red-bg);
  border-radius: 6px;
  padding: 0.25rem 0.65rem;
}

/* About Us Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.about-images-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.about-img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
}

.about-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-img-card:hover img {
  transform: scale(1.06);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
}

.feature-box-icon {
  width: 44px;
  height: 44px;
  background: var(--stc-red-bg);
  color: var(--stc-red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-box h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.feature-box p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Product Catalog Section */
.catalog-section {
  background: var(--bg-page);
}

.sticky-catalog-toolbar {
  position: sticky;
  top: 72px; /* Height of main nav */
  z-index: 40;
  background: var(--glass-card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-card-border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Catalog Controls for Partners & Products */
.catalog-controls {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.search-box {
  position: relative;
  width: 100%;
}

.toolbar-search {
  position: relative;
  flex: 1 1 300px;
}

.toolbar-search-input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 3rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: var(--input-bg);
  color: var(--text-heading);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.2s ease;
}

.toolbar-search-input:focus {
  border-color: var(--stc-red);
  box-shadow: 0 0 0 3px var(--stc-red-light);
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--slate-400);
}

.toolbar-filters {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.toolbar-sort-select {
  padding: 0.6rem 2rem 0.6rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  background: var(--card-bg);
  color: var(--text-heading);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  flex-shrink: 0;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
}

.toolbar-sort-select:focus {
  border-color: var(--stc-red);
}

.filter-btn, .catalog-filter-btn, .partner-filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  color: var(--text-heading);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.filter-btn:hover, .catalog-filter-btn:hover, .partner-filter-btn:hover {
  border-color: var(--stc-red);
  color: var(--stc-red);
}

.filter-btn.active, .catalog-filter-btn.active, .partner-filter-btn.active {
  background: var(--stc-red);
  color: white;
  border-color: var(--stc-red);
  box-shadow: 0 4px 12px rgba(217, 4, 41, 0.25);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--glass-card-bg);
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  border: 1px solid var(--glass-card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--spring);
  box-shadow: var(--glass-card-shadow);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--glass-card-hover-shadow);
  border-color: rgba(217, 4, 41, 0.3);
}

.product-header {
  padding: 1.5rem 1.75rem 1rem;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-section-alt);
}

.product-category-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--stc-red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-title {
  font-size: 1.25rem;
  margin: 0.4rem 0 0.3rem;
  color: var(--text-heading);
}

.product-composition {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.product-body {
  padding: 1.5rem 1.75rem;
  flex-grow: 1;
}

.product-desc-snippet {
  font-size: 0.88rem;
  color: var(--text-body);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.product-species-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.species-tag {
  background: var(--bg-section-alt);
  border: 1px solid var(--border-color);
  color: var(--text-body);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--bg-section-alt);
  border-bottom: 1px solid var(--border-color);
}

.product-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-badge-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--stc-red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(217, 4, 41, 0.3);
}

.product-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1.25rem;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.meta-label {
  font-size: 0.72rem;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.meta-value {
  font-size: 0.85rem;
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.4;
}

.product-footer {
  padding: 1.25rem 1.75rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  background: var(--bg-section-alt);
}

/* Technical Quick View Modal */
.quick-view-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.quick-view-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.quick-view-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 90%;
  max-width: 780px;
  max-height: 88vh;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-view-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.quick-view-header {
  padding: 1.75rem 2rem;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-section-alt);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.quick-view-close {
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  padding: 0.2rem;
}

.quick-view-close:hover {
  color: var(--stc-red);
}

.quick-view-body {
  padding: 2rem;
  overflow-y: auto;
  flex-grow: 1;
}

.quick-view-section h4 {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
  color: var(--text-heading);
}

.quick-view-section p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.65;
}

.quick-view-grid-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.spec-card {
  background: var(--bg-section-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.15rem;
}

.spec-card h5 {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.spec-card p {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-heading);
}

.dosage-table-wrapper {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 0.75rem;
}

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

.dosage-table th,
.dosage-table td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.88rem;
  text-align: left;
}

.dosage-table th {
  background: var(--bg-section-alt);
  font-weight: 700;
  color: var(--text-heading);
}

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

.quick-view-footer {
  padding: 1.25rem 2rem;
  border-top: 1px solid var(--border-color);
  background: var(--bg-section-alt);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Multi-Tab Interactive Farm Requirement & Dosage Estimator */
.calc-section {
  background: var(--bg-gradient);
  color: #ffffff;
}

.calc-card {
  background: rgba(30, 41, 59, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.calc-tab-nav {
  display: flex;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
  flex-wrap: wrap;
}

.calc-tab-btn {
  padding: 0.6rem 1.35rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.calc-tab-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.calc-tab-btn.active {
  background: var(--stc-red);
  color: #ffffff;
  border-color: var(--stc-red);
  box-shadow: 0 4px 15px rgba(217, 4, 41, 0.35);
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.form-input,
.form-select {
  width: 100%;
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(15, 23, 42, 0.6);
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.form-input:focus,
.form-select:focus {
  border-color: var(--stc-red);
  box-shadow: 0 0 0 3px rgba(217, 4, 41, 0.25);
}

.form-select option {
  background: #0f172a;
  color: white;
}

.calc-result-box {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.result-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

.result-label {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
}

.result-val {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
}

/* Ahmedabad Hub & Gujarat Delivery Footprint */
.delivery-section {
  background: var(--bg-section-alt);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}

.network-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.network-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0,0,0,0.4);
  border: 1px solid var(--glass-card-border);
}

.network-map img {
  width: 100%;
  height: auto;
  display: block;
}

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


.city-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.city-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hover-shadow);
  border-color: var(--stc-red);
}

.city-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.city-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-heading);
}

.city-tag {
  background: var(--stc-red-bg);
  color: var(--stc-red);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.city-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Partner Testimonials & Social Proof */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hover-shadow);
  border-color: var(--stc-red);
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-body);
  font-style: italic;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.15rem;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--stc-red);
  color: white;
  font-family: var(--font-heading);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-info h5 {
  font-size: 1.05rem;
  color: var(--text-heading);
  margin-bottom: 0.1rem;
}

.author-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Download / Printable 2026 Wholesale Guide CTA Banner */
.guide-cta-banner {
  background: var(--card-bg);
  border: 2px solid var(--stc-red);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem 0 4rem;
  box-shadow: var(--hover-shadow);
}

.guide-cta-content h3 {
  font-size: 1.75rem;
  color: var(--text-heading);
  margin-bottom: 0.35rem;
}

.guide-cta-content p {
  font-size: 0.95rem;
  color: var(--text-body);
}

/* Contact & RFQ Form Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--card-shadow);
}

.contact-detail-group {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 2rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--stc-red-bg);
  color: var(--stc-red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-text h5 {
  font-size: 1rem;
  color: var(--text-heading);
  margin-bottom: 0.25rem;
}

.contact-text p {
  font-size: 0.92rem;
  color: var(--text-body);
}

.rfq-form-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--card-shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.light-input {
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  color: var(--text-heading);
}

.light-input:focus {
  border-color: var(--stc-red);
  box-shadow: 0 0 0 3px var(--stc-red-light);
}

/* Quote Side Drawer */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: var(--card-bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.drawer.active {
  transform: translateX(0);
}

.drawer-header {
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-header h3 {
  font-size: 1.25rem;
}

.drawer-body {
  padding: 1.5rem 1.75rem;
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.drawer-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--bg-section-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.drawer-item-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-heading);
}

.drawer-item-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.drawer-footer {
  padding: 1.5rem 1.75rem;
  border-top: 1px solid var(--border-color);
  background: var(--bg-section-alt);
}

/* Floating WhatsApp Widget */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 990;
  transition: var(--spring);
}

.floating-whatsapp:hover {
  transform: scale(1.12) translateY(-3px);
  background: #1ebd5b;
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5), 0 0 50px rgba(37, 211, 102, 0.2);
}

/* Toast Container & Item */
.toast-container {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background: var(--card-bg);
  color: var(--text-heading);
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  font-size: 0.92rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--card-shadow);
  border-left: 5px solid var(--stc-red);
  animation: slideIn 0.3s forwards;
}

@keyframes slideIn {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Footer */
.footer {
  background: var(--slate-900);
  color: var(--slate-400);
  padding: 5rem 0 2rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a:hover {
  color: var(--stc-red-light);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Continuous Animated Partner Brand Marquee */
.brand-marquee-section {
  background: var(--slate-900);
  color: #ffffff;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
}

.brand-marquee-title {
  text-align: center;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-400);
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.marquee-container {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 2rem;
  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 {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  min-width: 100%;
  animation: scrollMarquee 45s linear infinite;
}

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

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

.marquee-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.15rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  transition: var(--transition);
}

.marquee-pill:hover {
  background: var(--stc-red);
  border-color: var(--stc-red);
  transform: translateY(-2px);
}

.marquee-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--stc-red);
}

.marquee-pill:hover .marquee-pill-dot {
  background: #ffffff;
}

/* Partner Companies & Brands Showcase Section */
.partners-section {
  background: var(--bg-page);
  position: relative;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.partner-card {
  background: var(--glass-card-bg);
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  border: 1px solid var(--glass-card-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--glass-card-shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  transition: var(--spring);
}

.partner-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--glass-card-hover-shadow);
  border-color: rgba(217, 4, 41, 0.3);
}

.partner-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
}

.partner-index-badge {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--stc-red-bg);
  color: var(--stc-red);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.partner-category-pill {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-section-alt);
  border: 1px solid var(--border-color);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.partner-card-body h3 {
  font-size: 1.25rem;
  color: var(--text-heading);
  margin-bottom: 0.4rem;
}

.partner-card-body p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
}

.partner-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border-color);
}

.partner-web-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--stc-red);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.partner-web-link:hover {
  color: var(--stc-red-dark);
  text-decoration: underline;
}

.partner-btn-inquire {
  font-size: 0.8rem;
  padding: 0.45rem 0.9rem;
  background: var(--bg-section-alt);
  border: 1px solid var(--border-color);
  color: var(--text-heading);
  border-radius: var(--radius-full);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.partner-btn-inquire:hover {
  background: #25D366;
  border-color: #25D366;
  color: #ffffff;
}

/* Print Friendly Styles for B2B Wholesale Catalog */
@media print {
  .top-bar, .navbar, .hero, .calc-section, .testimonials-grid, .guide-cta-banner, .footer, .floating-whatsapp, .drawer, .quick-view-modal, .brand-marquee-section {
    display: none !important;
  }
  body {
    background: white !important;
    color: black !important;
  }
  .catalog-section, .partners-section {
    padding: 0 !important;
  }
  .product-card, .partner-card {
    border: 1px solid #ccc !important;
    box-shadow: none !important;
    page-break-inside: avoid;
  }
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
}

/* Business Card Replica */
.business-card-replica {
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.business-card-replica::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--stc-red);
}

.bc-logo img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
}

.bc-details h4 {
  color: #0f172a;
  font-size: 1.25rem;
  margin-bottom: 0.15rem;
}

.bc-details .bc-role {
  color: var(--stc-red);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.bc-divider {
  height: 1px;
  background: #cbd5e1;
  margin-bottom: 1rem;
}

.bc-details p {
  color: #334155;
  font-size: 0.85rem;
  line-height: 1.6;
}

.bc-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #0f172a;
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  align-self: flex-start;
  transition: all 0.2s;
}

.bc-download-btn:hover {
  background: var(--stc-red);
  color: #fff;
}

/* ===== PREMIUM ANIMATIONS & UTILITIES ===== */

/* Scroll Reveal Animation */
.animate-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-reveal.delay-1 { transition-delay: 0.1s; }
.animate-reveal.delay-2 { transition-delay: 0.2s; }
.animate-reveal.delay-3 { transition-delay: 0.3s; }
.animate-reveal.delay-4 { transition-delay: 0.4s; }

/* Gradient Text Utilities */
.text-gradient-gold {
  background: linear-gradient(135deg, #ffffff 20%, #F59E0B 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-teal {
  background: linear-gradient(135deg, #38BDF8 0%, #10B981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Animated Gradient Mesh Background */
.hero-mesh-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-color: #090D16;
  background-image:
    radial-gradient(at 10% 20%, rgba(6, 182, 212, 0.18) 0px, transparent 50%),
    radial-gradient(at 90% 10%, rgba(16, 185, 129, 0.15) 0px, transparent 50%),
    radial-gradient(at 50% 80%, rgba(217, 4, 41, 0.12) 0px, transparent 50%),
    radial-gradient(at 70% 50%, rgba(245, 158, 11, 0.08) 0px, transparent 50%);
  filter: blur(50px);
  animation: meshFloat 20s ease-in-out infinite alternate;
}

@keyframes meshFloat {
  0% { transform: scale(1) translate(0, 0); }
  33% { transform: scale(1.08) translate(-15px, 10px); }
  66% { transform: scale(1.04) translate(15px, -10px); }
  100% { transform: scale(1.1) translate(-10px, 15px); }
}

/* Dot Grid Overlay */
.hero-dot-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}

/* Pulsing Status Dot */
.status-dot-pulse {
  width: 8px;
  height: 8px;
  background-color: #10B981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px #10B981;
  animation: pulseDot 2s infinite;
  flex-shrink: 0;
}

@keyframes pulseDot {
  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 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Spotlight Card Cursor Glow */
.spotlight-card {
  position: relative;
  overflow: hidden;
}

.spotlight-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    var(--spotlight-color),
    transparent 40%
  );
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.spotlight-card:hover::before {
  opacity: 1;
}

.spotlight-card > * {
  position: relative;
  z-index: 1;
}

/* WhatsApp Floating Button Pulse Ring */
/* Pre-Footer CTA Card */
.prefooter-cta {
  position: relative;
  z-index: 10;
  margin-bottom: -4rem;
}

.prefooter-cta-inner {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 60%, #064e3b 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.prefooter-cta-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(217, 4, 41, 0.15), transparent 60%);
  pointer-events: none;
}



.prefooter-cta-text h3 {
  font-size: 1.65rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.prefooter-cta-text p {
  font-size: 1rem;
  color: #94a3b8;
}

.prefooter-cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* Indian B2B Wholesale Payment Portal Styles */
.payment-section {
  background: var(--bg-page);
  padding: 4rem 0;
}

.payment-card {
  background: var(--glass-card-bg);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--glass-card-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--glass-card-shadow);
}

.payment-tabs {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
  flex-wrap: wrap;
}

.payment-tab-btn {
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  background: var(--bg-section-alt);
  border: 1px solid var(--border-color);
  color: var(--text-heading);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--spring);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.payment-tab-btn.active {
  background: var(--stc-red);
  color: #ffffff;
  border-color: var(--stc-red);
  box-shadow: 0 4px 15px rgba(217, 4, 41, 0.25);
}

.upi-app-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-heading);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.upi-badge-gpay { border-left: 4px solid #4285F4; }
.upi-badge-paytm { border-left: 4px solid #00B9F1; }
.upi-badge-phonepe { border-left: 4px solid #5F259F; }
.upi-badge-bhim { border-left: 4px solid #FF6600; }

.bank-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.bank-detail-item {
  background: var(--card-bg);
  padding: 1.15rem 1.35rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.bank-detail-item label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.35rem;
}

.bank-detail-item span {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  font-family: var(--font-heading);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 6.5rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-heading);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--spring);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--stc-red);
  color: #ffffff;
  border-color: var(--stc-red);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(217, 4, 41, 0.35);
}

/* Section Title Gradient Underline */
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--stc-red), var(--gold));
  border-radius: 2px;
  margin: 1rem auto 0;
}

/* Footer Status Badge */
.footer-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 999px;
  color: #10B981;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-heading);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-md);
  transition: background-color 0.2s ease;
}

.mobile-menu-btn:hover {
  background: var(--bg-section-alt);
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .animate-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-mesh-bg {
    animation: none !important;
  }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .footer {
    padding-bottom: 6.5rem;
  }
  .floating-whatsapp-pulse::before,
  .floating-whatsapp-pulse::after {
    display: none;
  }
  .prefooter-cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .prefooter-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .navbar:has(.nav-menu.active) {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
  }
  .navbar .container {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .logo {
    order: 1;
  }
  .mobile-menu-btn {
    display: block;
    order: 2;
    margin: 0;
  }
  .nav-actions {
    display: none;
    order: 5;
    width: 100%;
    justify-content: center;
    margin: 0.5rem 0 0 0;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
  }
  .nav-menu.active + .nav-actions {
    display: flex;
  }
  .nav-menu {
    order: 4;
    display: none;
    width: 100%;
    flex-direction: column;
    padding: 0.5rem 0 0 0;
    gap: 0;
  }
  .nav-menu li {
    width: 100%;
    text-align: center;
    margin: 0;
  }
  .nav-menu .nav-link {
    display: inline-block;
    padding: 0.35rem 0.5rem;
    font-size: 1rem;
    line-height: 1.2;
  }
  .nav-menu.active {
    display: flex;
  }
  .hero-title {
    font-size: 3rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero-grid, .about-grid, .calc-card, .contact-grid {
    grid-template-columns: 1fr;
  }
  .stats-card {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .card-replica-banner, .guide-cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .card-replica-contact {
    text-align: left;
  }
  .products-grid, .partner-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .top-bar .container {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 0.35rem;
  }
  .top-bar-info {
    justify-content: center;
    text-align: center;
    width: 100%;
    gap: 0.4rem;
  }
  .top-bar-item {
    font-size: 0.74rem;
    justify-content: center;
    width: 100%;
    text-align: center;
  }
  .top-bar-desktop-only {
    display: none;
  }
  .logo {
    width: auto;
  }
  .logo-title-top {
    font-size: 1.18rem;
  }
  .logo-title-sub {
    font-size: 0.74rem;
  }
  .logo-text h2 {
    font-size: 0.96rem;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }
  .logo-text p {
    display: none;
  }
  .stc-logo-badge {
    min-width: 52px !important;
    height: 40px;
    font-size: 1.05rem;
  }
  .nav-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .nav-wa-full {
    display: none;
  }
  .nav-wa-short {
    display: inline !important;
  }
  .filter-pills, .calc-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    flex-wrap: nowrap;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2.1rem;
    line-height: 1.25;
  }
  .stats-card, .form-row, .footer-grid, .badge-grid, .delivery-grid, .products-grid, .partner-grid {
    grid-template-columns: 1fr;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  .calc-card, .card-replica-banner, .guide-cta-banner {
    padding: 1.35rem;
    gap: 1.25rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  .logo-text h2 {
    font-size: 0.88rem;
  }
  .stc-logo-badge {
    min-width: 48px !important;
    height: 38px;
    font-size: 0.98rem;
    padding: 0 0.55rem;
  }
  .card-replica-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .card-replica-details h3 {
    font-size: 1.15rem;
  }
}

/* ===== UI IMPROVEMENT PLAN — NEW STYLES ===== */

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--stc-red);
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 1rem;
}

/* Utility Classes */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-1 { margin-bottom: 1rem; }
.mb-05 { margin-bottom: 0.5rem; }
.mt-1 { margin-top: 1rem; }
.mt-15 { margin-top: 1.5rem; }
.w-full { width: 100%; }
.btn-block { width: 100%; }
.flex-wrap { flex-wrap: wrap; }
.flex-center { display: flex; justify-content: center; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hero-compact { padding: 4rem 0 5rem; }
.page-hero-inner { position: relative; z-index: 3; }
.page-hero-content { text-align: center; max-width: 800px; margin: 0 auto; }
.hero-subtitle-light { color: var(--slate-300); font-size: 1.1rem; line-height: 1.6; }
.section-alt-bg { background: var(--bg-section-alt); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.footer-spaced { padding-top: 7rem; }
.footer-brand-title { color: #FFFFFF; font-size: 1.35rem; font-weight: 800; letter-spacing: -0.01em; text-transform: uppercase; line-height: 1.05; }
.footer-brand-sub { color: #ffccd5; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; line-height: 1.1; margin-top: 0.15rem; }
.footer-desc { color: var(--slate-400); font-size: 0.88rem; line-height: 1.6; }
.footer-address { font-size: 0.85rem; color: var(--slate-400); margin-bottom: 0.5rem; }
.footer-phone { font-size: 0.85rem; color: var(--slate-300); }
.footer-email { font-size: 0.85rem; color: var(--stc-red-light); }
.footer-location { font-size: 0.8rem; color: var(--slate-500); }
.link-accent { color: var(--stc-red); font-weight: 700; font-size: 0.88rem; display: inline-block; margin-top: 0.5rem; }
.nav-wa-btn { white-space: nowrap; flex-shrink: 0; }
.nav-wa-short { display: none; }
.drawer-close-btn { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text-muted); }
.form-label-light { color: var(--text-body); }

/* Language Switcher */
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.lang-switcher {
  display: flex;
  gap: 0.25rem;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  padding: 0.2rem;
}
.lang-btn {
  padding: 0.25rem 0.65rem;
  border: none;
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--slate-400);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.lang-btn.active {
  background: var(--stc-red);
  color: #fff;
}

/* Mobile Nav Toggle & Drawer */
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-heading);
  border-radius: 2px;
  transition: var(--transition);
}
body.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(320px, 88vw);
  background: var(--card-bg);
  z-index: 201;
  display: flex;
  flex-direction: column;
  box-shadow: 10px 0 30px rgba(0,0,0,0.2);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav-drawer.active {
  transform: translateX(0);
}
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
}
.mobile-nav-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
}
.mobile-nav-close {
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  flex-grow: 1;
}
.mobile-nav-link {
  padding: 0.9rem 1.5rem;
  font-weight: 600;
  color: var(--text-body);
  border-left: 3px solid transparent;
  transition: var(--transition);
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--stc-red);
  background: var(--stc-red-bg);
  border-left-color: var(--stc-red);
}
.mobile-nav-actions {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Product Thumbnails */
.product-thumb {
  height: 160px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.product-thumb--poultry { background-image: linear-gradient(135deg, rgba(217,4,41,0.75), rgba(15,23,42,0.6)), url('assets/poultry_supplements.jpg'); }
.product-thumb--gloves { background-image: linear-gradient(135deg, rgba(71,85,105,0.85), rgba(15,23,42,0.7)), url('assets/hero_banner.jpg'); }
.product-thumb--supplements { background-image: linear-gradient(135deg, rgba(13,148,136,0.75), rgba(15,23,42,0.6)), url('assets/poultry_supplements.jpg'); }
.product-thumb--vaccines { background-image: linear-gradient(135deg, rgba(6,78,59,0.8), rgba(15,23,42,0.65)), url('assets/vet_vaccines.jpg'); }
.product-thumb-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}
.cold-chain-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.6rem;
  background: rgba(6, 182, 212, 0.9);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}
.moq-badge {
  display: inline-flex;
  padding: 0.25rem 0.6rem;
  background: rgba(217, 4, 41, 0.92);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: var(--radius-full);
}

/* Catalog Toolbar Enhancements */
.catalog-toolbar {
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.catalog-toolbar.is-stuck {
  position: sticky;
  top: 72px;
  z-index: 90;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  margin: 0 -1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-shadow: var(--card-shadow);
  border-bottom: 1px solid var(--border-color);
}
.catalog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.catalog-results-count {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}
.catalog-sort-select {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  background: var(--card-bg);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
}
.species-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 0.75rem;
}
.species-filter-btn {
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  background: var(--bg-section-alt);
  border: 1px solid var(--border-color);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.species-filter-btn.active {
  background: var(--primary-700);
  color: #fff;
  border-color: var(--primary-700);
}
.filter-clear-btn {
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  background: transparent;
  border: 1px dashed var(--stc-red);
  color: var(--stc-red);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}

/* Partner Logo Wall */
.partner-logo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.partner-logo-wall--compact {
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  margin-bottom: 0;
}
.partner-logo-tile {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 90px;
  transition: var(--transition);
  text-align: center;
}
.partner-logo-tile:hover {
  border-color: var(--stc-red);
  transform: translateY(-3px);
  box-shadow: var(--card-shadow);
}
.partner-logo-initials {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--stc-red-bg);
  color: var(--stc-red);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-logo-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-body);
  line-height: 1.3;
}
.marquee-pill-logo {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.marquee-pill-img {
  height: 22px;
  width: auto;
  border-radius: 4px;
  background: white;
  padding: 2px;
  object-fit: contain;
}

/* Gujarat Coverage Map */
.gujarat-map-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.gujarat-map-wrap {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
}
.gujarat-map-svg {
  width: 100%;
  height: auto;
}
.gujarat-region {
  fill: var(--bg-section-alt);
  stroke: var(--border-color);
  stroke-width: 1;
  transition: fill 0.3s ease;
  cursor: pointer;
}
.gujarat-region.active,
.gujarat-region:hover {
  fill: rgba(217, 4, 41, 0.25);
  stroke: var(--stc-red);
}
.map-legend {
  display: flex;
  gap: 1.25rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.map-legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.map-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.map-legend-dot--hub { background: var(--stc-red); }
.map-legend-dot--express { background: var(--primary-500); }

/* Contact Map & Copy */
.contact-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  margin-top: 2rem;
}
.contact-map-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}
.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.65rem;
  margin-left: 0.5rem;
  background: var(--stc-red-bg);
  border: 1px solid var(--stc-red-light);
  border-radius: var(--radius-full);
  color: var(--stc-red);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  vertical-align: middle;
  transition: var(--transition);
}
.copy-btn:hover {
  background: var(--stc-red);
  color: #fff;
}
.office-hours-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--radius-full);
  color: #10B981;
  font-size: 0.88rem;
  font-weight: 600;
}

/* Business Card Banner */
.card-replica-banner {
  background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-section-alt) 100%);
  border: 2px solid var(--border-color);
  border-left: 6px solid var(--stc-red);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  box-shadow: var(--card-shadow);
}
.card-replica-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Product Details Accordion (mobile) */
.product-details-toggle {
  display: none;
  width: 100%;
  padding: 0.65rem;
  margin-top: 0.75rem;
  background: var(--bg-section-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-heading);
}
@media (max-width: 640px) {
  .product-details-toggle { display: block; }
  .product-spec-list.is-collapsed { display: none; }
  .gujarat-map-section { grid-template-columns: 1fr; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .hero-mesh-bg,
  .marquee-track,
  .status-dot-pulse {
    animation: none !important;
  }
  .animate-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html { scroll-behavior: auto; }
}

@media (max-width: 768px) {
  .nav-wa-full { display: none; }
  .nav-wa-short { display: inline !important; }
  .catalog-toolbar.is-stuck { top: 64px; }
}

