/* ============================================
   ABOUT US PAGE — Additional Styles
   ============================================ */

/* ---------- Page Hero ---------- */
.page-hero {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding: 140px 0 100px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.page-hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
}

.page-hero-shape.shape-1 {
  width: 500px;
  height: 500px;
  background: var(--orange-primary);
  top: -200px;
  right: -100px;
  animation: float-slow 20s ease-in-out infinite;
}

.page-hero-shape.shape-2 {
  width: 350px;
  height: 350px;
  background: var(--green-primary);
  bottom: -150px;
  left: -80px;
  animation: float-slow 25s ease-in-out infinite reverse;
}

.page-hero-shape.shape-3 {
  width: 200px;
  height: 200px;
  background: var(--white);
  top: 40%;
  left: 60%;
  animation: float-slow 18s ease-in-out infinite;
}

.page-hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero-content {
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
  animation: slideInLeft 0.8s ease-out;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.page-breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: var(--transition-fast);
}

.page-breadcrumb a:hover {
  color: var(--orange-primary);
}

.breadcrumb-sep {
  color: rgba(255,255,255,0.3);
}

.breadcrumb-current {
  color: var(--orange-light);
  font-weight: 600;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.page-hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.page-hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 3;
  line-height: 0;
}

.page-hero-wave svg {
  width: 100%;
  height: 80px;
}

/* ---------- Company Overview ---------- */
.about-overview {
  padding: 100px 0 80px;
  background: var(--white);
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.overview-images {
  position: relative;
  height: 500px;
}

.overview-img-main {
  position: relative;
  width: 320px;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.overview-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overview-img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(26,60,143,0.9);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  text-align: center;
  line-height: 1.3;
}

.overview-img-badge span {
  display: block;
  font-size: 0.75rem;
  color: var(--orange-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.overview-img-badge strong {
  font-size: 1rem;
  font-weight: 700;
}

.overview-img-secondary {
  position: absolute;
  top: 40px;
  right: 0;
  width: 220px;
  height: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  z-index: 3;
  border: 4px solid var(--white);
}

.overview-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overview-img-tertiary {
  position: absolute;
  bottom: 0;
  left: 60px;
  width: 180px;
  height: 180px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  z-index: 1;
  border: 4px solid var(--white);
}

.overview-img-tertiary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overview-experience-card {
  position: absolute;
  bottom: 40px;
  right: 20px;
  background: var(--gradient-orange);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow-orange);
  z-index: 4;
  text-align: center;
  animation: float-card 5s ease-in-out infinite;
}

.exp-number {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.exp-number span {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
}

.exp-text {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.9;
  line-height: 1.4;
}

.overview-content {
  padding-left: 20px;
}

.overview-description {
  font-size: 1rem;
  color: var(--dark-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.overview-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  border-left: 4px solid transparent;
}

.highlight-item:nth-child(1) { border-left-color: var(--orange-primary); }
.highlight-item:nth-child(2) { border-left-color: var(--blue-primary); }
.highlight-item:nth-child(3) { border-left-color: var(--green-primary); }

.highlight-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-sm);
}

.highlight-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.highlight-icon.icon-orange { background: rgba(245,146,42,0.1); }
.highlight-icon.icon-blue { background: rgba(26,60,143,0.1); }
.highlight-icon.icon-green { background: rgba(109,181,68,0.1); }

.highlight-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--near-black);
}

.highlight-item span {
  display: block;
  font-size: 0.82rem;
  color: var(--medium-gray);
}

/* ---------- Mission, Vision, Values ---------- */
.mvv-section {
  padding: var(--section-padding);
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mvv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.mvv-card-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.mvv-mission .mvv-card-glow { background: var(--orange-primary); }
.mvv-vision .mvv-card-glow { background: var(--blue-primary); }
.mvv-values .mvv-card-glow { background: var(--green-primary); }

.mvv-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.mvv-card:hover .mvv-card-glow {
  opacity: 0.15;
}

.mvv-icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-bounce);
}

.mvv-mission .mvv-icon-wrap { background: rgba(245,146,42,0.1); }
.mvv-vision .mvv-icon-wrap { background: rgba(26,60,143,0.1); }
.mvv-values .mvv-icon-wrap { background: rgba(109,181,68,0.1); }

.mvv-card:hover .mvv-icon-wrap {
  transform: scale(1.12) rotate(-8deg);
}

.mvv-icon {
  font-size: 2rem;
}

.mvv-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--near-black);
  margin-bottom: 14px;
}

.mvv-card p {
  font-size: 0.95rem;
  color: var(--medium-gray);
  line-height: 1.75;
}

.mvv-accent-line {
  width: 50px;
  height: 4px;
  border-radius: 2px;
  margin: 24px auto 0;
}

.mvv-mission .mvv-accent-line { background: var(--gradient-orange); }
.mvv-vision .mvv-accent-line { background: var(--gradient-hero); }
.mvv-values .mvv-accent-line { background: var(--gradient-green); }

/* ---------- Core Values Detailed ---------- */
.values-detailed {
  padding: var(--section-padding);
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.value-card:hover {
  background: var(--white);
  border-color: rgba(245,146,42,0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.value-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(26,60,143,0.05);
  line-height: 1;
  transition: var(--transition-base);
}

.value-card:hover .value-number {
  color: rgba(245,146,42,0.1);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--near-black);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--medium-gray);
  line-height: 1.7;
}

/* ---------- Journey Timeline ---------- */
.journey-section {
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

.journey-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}

.journey-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.journey-section .container {
  position: relative;
  z-index: 2;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(245,146,42,0.5) 0%, rgba(109,181,68,0.5) 50%, rgba(42,92,207,0.5) 100%);
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 40px 50px;
}

.timeline-item.left {
  left: 0;
  text-align: right;
  padding-right: 50px;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
  padding-left: 50px;
}

.timeline-dot {
  position: absolute;
  top: 8px;
  width: 18px;
  height: 18px;
  background: var(--orange-primary);
  border: 4px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 15px rgba(245,146,42,0.4);
}

.timeline-item.left .timeline-dot {
  right: -9px;
}

.timeline-item.right .timeline-dot {
  left: -9px;
}

.timeline-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition-smooth);
}

.timeline-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.timeline-year {
  display: inline-block;
  padding: 4px 14px;
  background: var(--gradient-orange);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.timeline-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.timeline-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* ---------- Manufacturing ---------- */
.manufacturing {
  padding: var(--section-padding);
  background: var(--off-white);
}

.mfg-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.mfg-card {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,60,143,0.06);
  transition: var(--transition-smooth);
  position: relative;
}

.mfg-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.mfg-step {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--orange-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mfg-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.mfg-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--near-black);
  margin-bottom: 10px;
}

.mfg-card p {
  font-size: 0.85rem;
  color: var(--medium-gray);
  line-height: 1.7;
}

.mfg-connector {
  display: flex;
  align-items: center;
  padding-top: 60px;
}

/* ---------- Product Range Overview ---------- */
.product-range-overview {
  padding: var(--section-padding);
  background: var(--white);
}

.range-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.range-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.range-item:hover {
  background: var(--white);
  border-color: rgba(26,60,143,0.08);
  transform: translateX(8px);
  box-shadow: var(--shadow-sm);
}

.range-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: var(--transition-bounce);
}

.range-item:hover .range-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
}

.range-info {
  flex: 1;
}

.range-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--near-black);
  margin-bottom: 2px;
}

.range-info p {
  font-size: 0.82rem;
  color: var(--medium-gray);
  line-height: 1.5;
}

.range-count {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue-primary);
  flex-shrink: 0;
  opacity: 0.3;
  transition: var(--transition-base);
}

.range-item:hover .range-count {
  opacity: 1;
  color: var(--orange-primary);
}

/* ============================================
   RESPONSIVE — About Page
   ============================================ */
@media (max-width: 992px) {
  .page-hero-title { font-size: 2.6rem; }
  
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .overview-images {
    height: 400px;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .overview-content {
    padding-left: 0;
  }
  
  .mvv-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .timeline-line { left: 30px; }
  
  .timeline-item,
  .timeline-item.left,
  .timeline-item.right {
    left: 0;
    width: 100%;
    text-align: left;
    padding-left: 70px;
    padding-right: 0;
  }
  
  .timeline-item.left .timeline-dot,
  .timeline-item.right .timeline-dot {
    left: 21px;
  }
  
  .mfg-connector { display: none; }
  
  .mfg-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .mfg-card {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 350px;
    padding: 120px 0 80px;
  }
  
  .page-hero-title { font-size: 2.2rem; }
  
  .overview-images {
    height: 350px;
  }
  
  .overview-img-main {
    width: 250px;
    height: 300px;
  }
  
  .overview-img-secondary {
    width: 170px;
    height: 200px;
    top: 20px;
  }
  
  .overview-img-tertiary {
    width: 140px;
    height: 140px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .mfg-grid {
    grid-template-columns: 1fr;
  }
  
  .range-item {
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .range-count {
    width: 100%;
    text-align: right;
  }
}

@media (max-width: 480px) {
  .page-hero-title { font-size: 1.8rem; }
  
  .overview-images {
    height: 300px;
  }
  
  .overview-img-main {
    width: 200px;
    height: 240px;
  }
  
  .overview-img-secondary {
    width: 140px;
    height: 170px;
  }
  
  .overview-img-tertiary { display: none; }
  
  .timeline-line { left: 20px; }
  
  .timeline-item,
  .timeline-item.left,
  .timeline-item.right {
    padding-left: 50px;
  }
  
  .timeline-item.left .timeline-dot,
  .timeline-item.right .timeline-dot {
    left: 11px;
  }
}
