/* ══════════════════════════════
     ABOUT-HERO SECTION
  ══════════════════════════════ */
.about-hero {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}

/* Background image */
.about-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  /* transform: scale(1.04);
  transition: transform 8s ease; */
}

.about-hero:hover .about-hero__bg {
  transform: scale(1);
}

/* Dark overlay — stronger at bottom-left for text legibility */
.about-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(5, 10, 20, 0.82) 0%,
      rgba(5, 10, 20, 0.45) 55%,
      rgba(5, 10, 20, 0.15) 100%
    ),
    linear-gradient(to top, rgba(5, 10, 20, 0.55) 0%, transparent 60%);
}

/* Content */
.about-hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 52px 52px;
  max-width: 1500px;
  margin: 0 auto;
}

.about-hero__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
}

.about-hero__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.about-hero__divider {
  width: 40px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 18px;
}

.about-hero__body {
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  max-width: 500px;
}

/* Responsive */
@media (max-width: 600px) {
  .about-hero {
    height: 340px;
  }
  .about-hero__content {
    padding: 0 28px 36px;
  }
}
/* ══════════════════════════════
     ABOUT-GRID
  ══════════════════════════════ */
.about-grid {
  max-width: 1500px;
  margin: 60px auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 20px;
}

.about-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
}

.about-row.reverse {
  grid-template-columns: 1fr 1.5fr;
}

/* Grid Cards */
.grid-card {
  background: var(--bg-white);
  border-radius: 0;
  overflow: hidden;
  height: 480px; /* Fixed height for squares */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Text Card Styling */
.text-card {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.about-label svg {
  flex-shrink: 0;
}

.about-label span {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
}

.text-card p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
}

.text-card p .highlight {
  color: var(--primary);
  font-weight: 600;
}

/* Image Card Styling */
.image-card {
  position: relative;
  display: flex;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

/* Responsive */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .grid-card {
    height: auto;
    min-height: 350px;
  }
  .text-card {
    padding: 40px;
  }
}

@media (max-width: 680px) {
  .text-card {
    padding: 30px 20px;
  }
  .grid-card {
    min-height: 300px;
  }
  .about-row,
  .about-row.reverse {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════
     STRIP SECTION
  ══════════════════════════════ */
.strip {
  background: var(--primary);
  padding: 28px 52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.strip-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 0 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.strip-item:first-child {
  padding-left: 0;
}
.strip-item:last-child {
  border-right: none;
}

.strip-item__value {
  font-size: 2rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0.01em;
}

.strip-item__label {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 600px) {
  .strip {
    grid-template-columns: 1fr 1fr;
    gap: 28px 0;
    padding: 32px 28px;
  }
  .strip-item {
    padding: 0 16px;
    border-right: none;
  }
  .strip-item:nth-child(odd) {
    padding-left: 0;
  }
  .strip-item__value {
    font-size: 1rem;
  }
}

.about-li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 12px;
}

.about-li__item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.about-li__item svg {
  flex-shrink: 0;
  height: 16px;
  width: 16px;
}

.about-li__item span {
  font-size: 12px;
  font-weight: 500;
  color: var(--primary);
}
