/* ========================================================================
   ABOUT PAGE STYLESHEET - Rong Ta Coconut
   ======================================================================== */

/* ========================================================================
   1. ABOUT HERO SECTION
   ======================================================================== */
.about-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10rem 0 6rem;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.9) 0%,
    rgba(5, 150, 105, 0.85) 100%
  );
}

.about-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  color: white;
}

.badge-label {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 2rem;
}

.about-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.about-hero-content .gradient-text {
  background: linear-gradient(135deg, #fff 0%, #f0fdf4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
  opacity: 0.95;
}

/* ========================================================================
   2. COMPANY STORY SECTION
   ======================================================================== */
.company-story {
  padding: 6rem 0;
  background: white;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-content {
  padding-right: 2rem;
}

.story-text p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

.story-text strong {
  color: var(--primary);
  font-weight: 700;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 2px solid var(--gray-200);
}

.story-stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--gray-600);
  font-weight: 600;
}

/* Story Images */
.story-images {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.story-image-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.story-image-main img {
  width: 100%;
  height: auto;
  display: block;
}

.story-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.story-image-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.story-image-grid img:hover {
  transform: scale(1.05);
}

/* ========================================================================
   3. PRODUCTS OVERVIEW SECTION
   ======================================================================== */
.products-overview {
  padding: 6rem 0;
  background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.product-card {
  padding: 2.5rem 2rem;
  background: white;
  border-radius: 24px;
  border: 2px solid var(--gray-200);
  transition: all 0.4s ease;
  text-align: center;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 60px rgba(16, 185, 129, 0.15);
}

.product-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 20px;
  color: white;
  font-size: 2rem;
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
}

.product-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.product-features {
  list-style: none;
  text-align: left;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--gray-700);
}

.product-features i {
  color: var(--primary);
  font-size: 1rem;
}

/* ========================================================================
   4. QUALITY PROCESS SECTION
   ======================================================================== */
.quality-process {
  padding: 6rem 0;
  background: white;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--gray-50);
  border-radius: 20px;
  border: 2px solid var(--gray-200);
  position: relative;
  transition: all 0.4s ease;
}

.process-step:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  background: white;
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.15);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.step-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  border-radius: 18px;
  color: white;
  font-size: 2rem;
}

.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--gray-600);
}

/* ========================================================================
   5. GLOBAL MARKET SECTION
   ======================================================================== */
.global-market {
  padding: 6rem 0;
  background: var(--gray-50);
}

.market-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.market-content {
  padding-right: 2rem;
}

.market-regions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.market-region {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  border: 2px solid var(--gray-200);
  transition: all 0.3s ease;
}

.market-region:hover {
  transform: translateX(8px);
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.12);
}

.region-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 14px;
  color: white;
  font-size: 1.5rem;
}

.region-info h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.region-info p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Market Image */
.market-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.market-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.market-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.market-badge i {
  font-size: 2rem;
  color: var(--primary);
}

.badge-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.badge-text {
  font-size: 0.875rem;
  color: var(--gray-600);
  font-weight: 600;
}

/* ========================================================================
   6. OUR COMMITMENT SECTION
   ======================================================================== */
.our-commitment {
  padding: 6rem 0;
  background: white;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.commitment-card {
  padding: 2.5rem 2rem;
  background: var(--gray-50);
  border-radius: 20px;
  border: 2px solid var(--gray-200);
  transition: all 0.4s ease;
}

.commitment-card:hover {
  transform: translateY(-8px);
  background: white;
  border-color: var(--primary);
  box-shadow: 0 16px 48px rgba(16, 185, 129, 0.12);
}

.commitment-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 18px;
  color: white;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.commitment-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
}

.commitment-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-600);
}

/* ========================================================================
   7. CONTACT CTA SECTION
   ======================================================================== */
.contact-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: white;
  color: var(--primary);
}

.cta-buttons .btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.cta-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: white;
}

/* ========================================================================
   8. ANIMATIONS
   ======================================================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================================================
   9. RESPONSIVE DESIGN
   ======================================================================== */

/* Tablet */
@media (max-width: 968px) {
  .about-hero {
    min-height: 50vh;
    padding: 8rem 0 4rem;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .story-content {
    padding-right: 0;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .market-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .market-content {
    padding-right: 0;
  }

  .market-image {
    order: -1;
  }

  .commitment-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .about-hero {
    padding: 7rem 0 3rem;
  }

  .about-hero-content h1 {
    font-size: 2rem;
  }

  .story-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

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

  .story-image-grid img {
    height: 250px;
  }

  .process-step {
    padding: 1.5rem 1rem;
  }

  .step-icon {
    width: 64px;
    height: 64px;
    font-size: 1.75rem;
  }

  .market-badge {
    bottom: 1rem;
    left: 1rem;
    padding: 1rem 1.25rem;
  }

  .badge-number {
    font-size: 1.5rem;
  }

  .commitment-card {
    padding: 2rem 1.5rem;
  }

  .commitment-icon {
    width: 64px;
    height: 64px;
    font-size: 1.75rem;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* ========================================================================
   10. PRINT STYLES
   ======================================================================== */
@media print {
  .about-hero {
    min-height: auto;
    padding: 2rem 0;
  }

  .contact-cta {
    display: none;
  }
}

/* END OF ABOUT PAGE CSS */