/* ==========================================================================
   SHUBHLAXMI CASTOR OIL - ABOUT US PAGE SPECIFIC STYLES
   ========================================================================== */

/* Hero Banner */
.about-hero {
  background: radial-gradient(circle at 50% 20%, #1e1b4b 0%, #0f172a 70%, #030712 100%);
  color: #ffffff;
  padding: 140px 0 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 350px;
  background: radial-gradient(ellipse at top, rgba(245, 158, 11, 0.15) 0%, rgba(15, 23, 42, 0) 70%);
  pointer-events: none;
}

.about-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
}

.gold-gradient-text {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Stats Counter Bar */
.stats-bar-section {
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  background: #ffffff;
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  border-top: 3.5px solid var(--gold-accent);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-hover);
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.18);
}

.stat-icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 10px auto;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.stat-number {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--navy-primary);
  margin-bottom: 4px;
  display: block;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.stat-number span {
  color: var(--gold-accent);
}

.stat-label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--slate-600);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* Corporate Story Section */
.story-section {
  padding: 95px 0;
  background-color: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 55px;
  align-items: flex-start;
}

.story-content h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  margin: 12px 0 20px;
  color: var(--navy-primary);
  line-height: 1.25;
}

.story-quote-card {
  background: linear-gradient(135deg, #fffbe6 0%, #fef3c7 100%);
  border-left: 5px solid var(--gold-accent);
  padding: 22px 26px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-primary);
  line-height: 1.65;
  margin: 24px 0;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.story-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 26px;
}

.story-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-primary);
  background: var(--bg-slate);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
  transition: all var(--transition-fast);
}

.story-chip:hover {
  border-color: var(--gold-accent);
  background: var(--white);
  transform: translateX(3px);
}

.story-chip span {
  width: 24px;
  height: 24px;
  background: #dcfce7;
  color: #15803d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

/* Manufacturing Excellence Grid */
.excellence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.excellence-card {
  background: #ffffff;
  border: 1px solid var(--slate-200);
  padding: 28px 24px;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
}

.excellence-card:hover {
  transform: translateY(-3px);
  border-color: var(--blue-brand);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.04);
}

.excellence-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid rgba(29, 78, 216, 0.1);
  transition: all 0.3s ease;
}

.excellence-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue-brand) !important;
  transition: all 0.3s ease;
}

.excellence-card:hover .excellence-icon {
  background: var(--blue-brand);
  color: #ffffff;
  border-color: var(--blue-brand);
}

.excellence-card:hover .excellence-icon svg {
  stroke: #ffffff !important;
}

.excellence-card h4 {
  font-size: 16.5px;
  margin-bottom: 8px;
  color: var(--navy-primary);
  font-weight: 700;
}

.excellence-card p {
  font-size: 13px;
  color: var(--slate-600);
  line-height: 1.55;
}

/* Process Timeline Section */
.process-section {
  padding: 85px 0;
  background: linear-gradient(180deg, var(--bg-slate) 0%, var(--white) 100%);
  border-top: 1px solid var(--slate-200);
}

.process-section .hero-tag {
  color: var(--navy-primary);
  background: var(--gold-light);
  border-color: rgba(245, 158, 11, 0.55);
}

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

.process-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-accent);
}

.process-step-num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  font-weight: 900;
  color: rgba(245, 158, 11, 0.25);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.process-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: inline-block;
}

.process-card h4 {
  font-size: 18px;
  color: var(--navy-primary);
  margin-bottom: 10px;
  font-weight: 700;
}

.process-card p {
  font-size: 13.5px;
  color: var(--slate-600);
  line-height: 1.6;
}

/* Fact Sheet Card */
.factsheet-section {
  padding: 90px 0;
  background: var(--bg-slate);
  border-top: 1px solid var(--slate-200);
}

.factsheet-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.factsheet-header {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 100%);
  color: var(--white);
  padding: 32px 40px;
  border-bottom: 3.5px solid var(--gold-accent);
}

.factsheet-header h3 {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 6px;
}

.factsheet-header p {
  color: var(--slate-300);
  font-size: 14px;
}

.factsheet-body {
  padding: 35px 40px;
}

.factsheet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.fact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  background: var(--bg-slate);
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
  transition: all var(--transition-fast);
}

.fact-item:hover {
  background: var(--white);
  border-color: var(--gold-accent);
  box-shadow: var(--shadow-sm);
}

.fact-icon {
  font-size: 20px;
  margin-bottom: 2px;
}

.fact-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--slate-500);
}

.fact-value {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy-primary);
  line-height: 1.35;
}

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

  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .excellence-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .factsheet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .excellence-grid {
    grid-template-columns: 1fr;
  }

  .story-features {
    grid-template-columns: 1fr;
  }

  .factsheet-grid {
    grid-template-columns: 1fr;
  }

  .factsheet-header,
  .factsheet-body {
    padding: 24px 20px;
  }
}

/* Specification Matrix Table - Matches 2nd Reference Image */
.factsheet-body-table-wrapper {
  overflow-x: auto;
}

.spec-matrix-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  font-family: inherit;
}

.spec-matrix-table th {
  background: var(--blue-brand);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 18px 30px;
  text-align: left;
  border-bottom: none;
}

.spec-matrix-table th:first-child {
  width: 32%;
  border-right: 1.5px solid rgba(255, 255, 255, 0.15);
}

.spec-matrix-table td {
  padding: 18px 30px;
  font-size: 14.5px;
  border-bottom: 1px solid #e2e8f0;
  color: var(--slate-800);
}

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

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

.spec-matrix-table tr:nth-child(odd) {
  background: #ffffff;
}

.spec-matrix-table .param-name {
  font-weight: 700;
  color: var(--navy-primary);
  border-right: 1px solid #e2e8f0;
}

.spec-matrix-table .param-value {
  color: var(--slate-700);
}

/* Badges styling */
.spec-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1;
}

.spec-badge-gold {
  background: var(--gold-light);
  color: var(--gold-hover);
  border: 1px solid rgba(217, 119, 6, 0.2);
}

.spec-badge-blue {
  background: var(--blue-soft);
  color: var(--blue-brand);
  border: 1px solid rgba(29, 78, 216, 0.15);
}

.spec-badge-green {
  background: var(--emerald-light);
  color: var(--emerald-pure);
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.spec-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
