/* ============================================
   V KOTE FOODS — About Page Styles
   ============================================ */

/* ---------- Company Story ---------- */
.story-section .story-text {
  font-size: var(--fs-body-lg);
  line-height: var(--lh-relaxed);
}

.story-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.story-image img {
  width: 100%;
  height: 650px;
  object-fit: cover;
}

/* ---------- Owner Section ---------- */
.owner-section {
  position: relative;
}

.owner-image {
  width: 280px;
  height: 280px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  margin: 0 auto;
  position: relative;
}

.owner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.owner-image::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: var(--radius-xl);
  border: 3px solid var(--clr-accent);
  z-index: -1;
  opacity: 0.4;
}

.owner-name {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-top: var(--space-md);
}

.owner-title {
  font-family: var(--ff-button);
  font-size: var(--fs-small);
  color: var(--clr-primary);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ---------- Mission & Vision ---------- */
.mv-card {
  text-align: center;
  padding: var(--space-xl);
  height: 100%;
}

.mv-card .icon-box {
  width: 80px;
  height: 80px;
  font-size: 2rem;
  margin: 0 auto var(--space-md);
}

.mv-card h3 {
  font-size: var(--fs-h4);
}

/* ---------- Core Values ---------- */
.value-card {
  text-align: center;
  padding: var(--space-lg);
}

.value-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.1), rgba(46, 125, 50, 0.03));
  color: var(--clr-primary);
  transition: all var(--transition-base);
}

.premium-card:hover .value-icon {
  background: var(--clr-primary);
  color: white;
  transform: scale(1.1) rotate(5deg);
}

/* ---------- FSSAI Badge ---------- */
.fssai-badge {
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.05), rgba(244, 197, 66, 0.05));
  border: 2px solid rgba(46, 125, 50, 0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
}

.fssai-icon {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 2.5rem;
  color: white;
  box-shadow: var(--shadow-glow-primary);
}

/* ---------- Timeline ---------- */
.about-timeline {
  position: relative;
  padding: var(--space-lg) 0;
}

.about-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--clr-primary), var(--clr-accent));
  transform: translateX(-50%);
  border-radius: var(--radius-pill);
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-xl);
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-content {
  width: 45%;
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border);
  position: relative;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  background: var(--clr-primary);
  border: 4px solid white;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.timeline-year {
  font-family: var(--ff-heading);
  font-weight: var(--fw-bold);
  color: var(--clr-primary);
  font-size: var(--fs-h5);
  margin-bottom: var(--space-xs);
}

@media (max-width: 768px) {
  .about-timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: row;
    padding-left: 50px;
  }

  .timeline-content {
    width: 100%;
  }

  .timeline-dot {
    left: 20px;
  }
}