/* =========================================
   ABOUT PAGE SPECIFIC STYLES
   ========================================= */

/* Hero Section (Compact) */
.page-hero {
  position: relative;
  min-height: 200px;
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-primary); /* Pure black background */
  z-index: -1;
}

.page-hero-content {
  z-index: 10;
}

.page-hero-content h1 {
  font-size: clamp(24px, 4vw, 36px);
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #fff;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-body);
  font-size: 14px;
}

.breadcrumb a {
  color: #fff;
  transition: color 0.3s;
}

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

.breadcrumb i {
  width: 14px;
  height: 14px;
}

.breadcrumb span {
  color: var(--accent-orange);
  font-weight: 600;
}

/* Our Story Section */
.our-story {
  padding: 40px 0 80px;
  background-color: transparent;
  color: #fff;
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.subheading {
  color: var(--accent-orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  display: block;
  margin-bottom: 12px;
}

.story-text h2 {
  font-size: 40px;
  color: #fff;
  margin-bottom: 24px;
}

.story-text p {
  color: #cbd5e1;
  font-size: 18px;
  margin-bottom: 20px;
}

.signature {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 2px solid rgba(255,255,255,0.1);
}

.signature h4 {
  font-size: 20px;
  color: #fff;
}

.signature span {
  color: var(--accent-orange);
  font-size: 14px;
  font-weight: 600;
}

.story-image {
  display: flex;
  justify-content: center;
}

.circular-mask {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--accent-orange);
  box-shadow: 0 10px 40px rgba(234, 88, 12, 0.2);
}

.circular-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.circular-mask:hover img {
  transform: scale(1.05);
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.value-card {
  padding: 40px 30px;
  background: transparent;
  border-radius: 0;
  text-align: center;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition-bounce);
}

.value-card:hover {
  background: var(--accent-orange);
  color: #fff;
  transform: translateY(-10px);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: none;
  transition: all 0.3s;
}

.value-card:hover .value-icon {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
}

.value-icon i {
  color: var(--accent-orange);
  width: 32px;
  height: 32px;
}

.value-card h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.value-card:hover h3 {
  color: #fff;
}

.value-card p {
  color: #cbd5e1;
  font-size: 15px;
  transition: color 0.3s;
}

.value-card:hover p {
  color: rgba(255, 255, 255, 0.9);
}

/* Leadership Team */
.leadership {
  padding: 100px 0;
  background-color: var(--bg-primary);
}

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

.team-card {
  background: transparent; /* Removed background */
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-bounce);
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-img {
  height: 300px;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  transition: filter 0.5s;
  position: relative;
  overflow: hidden;
}

.team-card:hover .team-img {
  filter: grayscale(0%);
}

.team-socials {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  transition: bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-socials {
  bottom: 0;
}

.team-socials a {
  width: 36px;
  height: 36px;
  background: var(--accent-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.2s;
}

.team-socials a:hover {
  transform: scale(1.1);
}

.team-socials i {
  width: 18px;
  height: 18px;
}

.team-info {
  padding: 24px;
  text-align: center;
  background: var(--bg-secondary);
}

.team-info h3 {
  font-size: 20px;
  margin-bottom: 4px;
  color: #fff;
}

.team-info span {
  font-size: 14px;
  color: var(--accent-orange);
  font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {

  .values-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .circular-mask {
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .story-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .leadership-team {
    justify-content: center;
    align-items: center;
  }

  .signature {
    display: inline-block;
    text-align: center;
    margin: 0 auto;
  }

  .circular-mask {
    width: 300px;
    height: 300px;
    margin: 0 auto;
  }

  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
}