/* =============================================
   ABOUT US PAGE — Soleko IOL CMS
   Extracted from about-us.html inline styles
   ============================================= */

/* HERO SECTION */
.about-hero {
  min-height: 75vh;
  background: var(--primary);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 4% 80px
}

/* ::before removed — overlay handled by .about-hero-overlay div only */

.about-hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0,59,92,0.55) 0%,
      rgba(0,166,214,0.35) 100%);
  z-index: 1
}

.about-hero-content {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center
}

.about-hero h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2
}

.about-hero p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8
}

/* STORY SECTION */
.story-section {
  padding: 70px 4%;
  background: var(--white)
}

.story-inner {
  max-width: 1300px;
  margin: 0 auto
}

.story-section h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 3rem;
  text-align: center
}

.story-block,
.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px
}

.story-block:last-child,
.story-content:last-child {
  margin-bottom: 0
}

.story-block:nth-child(even),
.story-content:nth-child(even) {
  direction: rtl
}

.story-block:nth-child(even) > *,
.story-content:nth-child(even) > * {
  direction: ltr
}

.story-text h3 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 700
}

.story-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 1rem
}

.story-image {
  width: 100%;
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card)
}

.story-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1)
}

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

/* VALUES SECTION */
.values-section {
  padding: 70px 4%;
  background: var(--gradient-soft)
}

.values-inner {
  max-width: 1300px;
  margin: 0 auto
}

.values-section h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 3rem;
  text-align: center
}

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

.value-card {
  background: var(--white);
  padding: 48px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1)
}

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

.value-icon {
  width: 72px; height: 72px;
  background: var(--gradient-accent);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1)
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg)
}

.value-icon svg {
  width: 40px; height: 40px;
  stroke: var(--white);
  stroke-width: 2;
  fill: none
}

.value-card h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 700
}

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

/* NUMBERS SECTION */
.numbers-section {
  padding: 70px 4%;
  background: var(--primary);
  color: var(--white);
  position: relative;
  overflow: hidden
}

.numbers-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,166,214,0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0
}

.numbers-inner {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.numbers-section h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center
}

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

.number-card {
  text-align: center;
  padding: 32px 20px
}

.number-card h3 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-light);
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-heading)
}

.number-card p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500
}

/* COMMITMENT SECTION */
.commitment-section {
  padding: 70px 4%;
  background: var(--white)
}

.commitment-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center
}

.commitment-section h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 2rem
}

.commitment-section p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--gray-600);
  margin-bottom: 1.5rem
}

/* RESPONSIVE */
@media(max-width:1024px) {
  .about-hero h1 { font-size: 2.5rem }

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

  .story-block:nth-child(even),
  .story-content:nth-child(even) { direction: ltr }

  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }

  .numbers-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }
}

@media(max-width:768px) {
  .about-hero {
    min-height: 60vh;
    padding: 100px 4% 60px
  }

  .about-hero h1 { font-size: 2rem }
  .about-hero p { font-size: 1rem }

  .story-section,
  .values-section,
  .numbers-section,
  .commitment-section { padding: 60px 4% }

  .values-grid { grid-template-columns: 1fr }
  .numbers-grid { grid-template-columns: 1fr 1fr }
  .number-card h3 { font-size: 2.5rem }
}

@media(max-width:640px) {
  .numbers-grid { grid-template-columns: 1fr }
}
