/* 
   Fresher Essentials - About Us Page Specific Stylesheet
   Designed to maintain editorial calmness, generous whitespace, and premium styling.
*/

/* --- About Hero --- */
.about-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
}





.navbar.dark-hero-nav .mobile-menu-toggle span {
  background-color: var(--text-cream);
}

.about-hero-container {
  position: relative;
  z-index: 3;
}

.about-hero-content {
  max-width: 700px;
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3.5rem;
  border-radius: 28px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.about-hero-title {
  font-size: 5rem;
  font-weight: 300;
  color: var(--text-cream);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.about-hero-subtitle {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  line-height: 1.6;
}

/* --- Our Story Section --- */
.story-section {
  padding: 120px 0;
  background-color: var(--bg-warm-ivory);
  border-bottom: 1px solid var(--border-light);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 6rem;
  align-items: center;
}

.story-title {
  font-size: 3.8rem;
  font-weight: 300;
  color: var(--text-charcoal);
  margin-bottom: 2rem;
  line-height: 1.15;
}

.story-p-large {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--bg-forest-green);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.story-p-normal {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
}

/* Story Founders Card */
.story-quote-card {
  background-color: var(--bg-cream);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--bg-forest-green);
  padding: 3rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.story-quote-card blockquote {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-charcoal);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.story-quote-card cite {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-style: normal;
  display: block;
}

/* --- Mission & Vision Section --- */
.mission-vision-section {
  padding: 100px 0;
  background-color: var(--bg-cream);
  border-bottom: 1px solid var(--border-light);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.mv-card {
  background-color: var(--bg-warm-ivory);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 4rem 3.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.01);
  transition: var(--transition-smooth);
}

.mv-card:hover {
  transform: translateY(-5px);
  border-color: rgba(47, 107, 79, 0.3);
}

.mv-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background-color: var(--bg-botanical-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-forest-green);
  margin-bottom: 2rem;
}

.mv-icon {
  width: 30px;
  height: 30px;
}

.mv-title {
  font-size: 2.2rem;
  color: var(--text-charcoal);
  margin-bottom: 1.5rem;
}

.mv-desc {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
}

/* --- Infographic Block Section --- */
.why-pulp-infographic {
  padding: 120px 0;
  background-color: var(--bg-warm-ivory);
  border-bottom: 1px solid var(--border-light);
}

.infographic-blocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.info-block {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem 1.5rem;
  background-color: var(--bg-warm-ivory);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  transition: var(--transition-smooth);
}

.info-block:hover {
  background-color: var(--bg-cream);
  transform: translateY(-5px);
}

.info-block-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--bg-forest-green);
  opacity: 0.3;
  line-height: 1;
}

.info-block-content h3 {
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
  color: var(--text-charcoal);
}

.info-block-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}

/* --- Values Section --- */
.values-section {
  padding: 120px 0;
  background-color: var(--bg-warm-ivory);
  border-bottom: 1px solid var(--border-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.value-card {
  background-color: var(--bg-warm-ivory);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 2.5rem 1.75rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: var(--bg-forest-green);
  background-color: var(--bg-cream);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.02);
}

.value-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background-color: var(--bg-botanical-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-forest-green);
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.value-icon {
  width: 24px;
  height: 24px;
}

.value-card:hover .value-icon-wrap {
  background-color: var(--bg-forest-green);
  color: var(--text-white);
}

.value-card h3 {
  font-size: 1.5rem;
  color: var(--text-charcoal);
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.5;
}

/* --- Quality Commitment Journey --- */
.quality-commitment {
  padding: 120px 0;
  background-color: var(--bg-cream);
  border-bottom: 1px solid var(--border-light);
}

.commitment-timeline {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 800px;
  margin: 4rem auto 0 auto;
  position: relative;
}

/* Vertical Timeline center line */
.commitment-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 55px;
  width: 1px;
  height: 100%;
  background-color: var(--border-light);
  z-index: 1;
}

.timeline-step {
  display: flex;
  gap: 3rem;
  position: relative;
  z-index: 2;
  transition: var(--transition-smooth);
}

.step-badge {
  flex-shrink: 0;
  width: 110px;
  height: 44px;
  border-radius: 30px;
  background-color: var(--bg-forest-green);
  color: var(--text-white);
  font-family: var(--font-btn);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(47, 107, 79, 0.15);
}

.step-info {
  background-color: var(--bg-warm-ivory);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  flex-grow: 1;
  transition: var(--transition-smooth);
}

.step-info h3 {
  font-size: 1.5rem;
  color: var(--text-charcoal);
  margin-bottom: 0.5rem;
  transition: var(--transition-smooth);
}

.step-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}

/* Hover effects */
.timeline-step:hover .step-info {
  transform: translateX(10px);
  border-color: var(--bg-forest-green);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
}

.timeline-step:hover .step-info h3 {
  color: var(--bg-forest-green);
}

/* --- Responsive Media Queries --- */

@media (max-width: 1024px) {
  .about-hero-title { font-size: 4rem; }
  .story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .story-title { font-size: 3rem; }
  
  .infographic-blocks { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .about-hero { height: 50vh; }
  .about-hero-title { font-size: 3rem; }
  .about-hero-subtitle { font-size: 1.15rem; }
  
  .mission-vision-grid { grid-template-columns: 1fr; gap: 2rem; }
  .mv-card { padding: 3rem 2rem; }
  
  .infographic-blocks { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  
  .commitment-timeline::before { left: 40px; }
  .step-badge { width: 80px; font-size: 0.65rem; height: 36px; }
  .timeline-step { gap: 1.5rem; }
  .step-info { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .about-hero-title { font-size: 2.5rem; }
  .story-title { font-size: 2.4rem; }
  .values-grid { grid-template-columns: 1fr; }
  
  .commitment-timeline::before { display: none; }
  .timeline-step { flex-direction: column; gap: 1rem; }
  .step-badge { width: auto; max-width: 100px; }
}
