/* PAGE HERO - OUR CULTURE */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, rgba(207, 1, 6, 0.05) 0%, rgba(248, 249, 250, 1) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><path fill="%23cf0106" fill-opacity="0.03" d="M200,0 C310.46,0 400,89.54 400,200 C400,310.46 310.46,400 200,400 C89.54,400 0,310.46 0,200 C0,89.54 89.54,0 200,0 Z M200,50 C118.43,50 50,118.43 50,200 C50,281.57 118.43,350 200,350 C281.57,350 350,281.57 350,200 C350,118.43 281.57,50 200,50 Z"></path></svg>') center/contain no-repeat;
  opacity: 0.5;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.page-hero p {
  font-size: 20px;
  color: var(--medium-gray);
  max-width: 800px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 2;
}

/* CULTURE INTRODUCTION */
.culture-intro {
  padding: 80px 0;
  background-color: white;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.section-title p {
  color: var(--medium-gray);
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
}

.intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.intro-text h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--primary-blue);
}

.intro-text p {
  color: var(--medium-gray);
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.7;
}

.intro-image {
  height: 400px;
  border-radius: 8px;
  background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=800');
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

/* CORE VALUES */
.values-section {
  padding: 80px 0;
  background-color: var(--off-white);
}

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

.value-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  align-items: start;
}

.value-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(207, 1, 6, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  font-size: 32px;
}

.value-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.value-content p {
  color: var(--medium-gray);
  line-height: 1.6;
}

/* TEAM GALLERY */
.gallery-section {
  padding: 80px 0;
  background-color: white;
}

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

.gallery-item {
  height: 300px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.gallery-item.team-building {
  background-image: url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?auto=format&fit=crop&w=800');
}

.gallery-item.birthday {
  background-image: url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?auto=format&fit=crop&w=800');
}

.gallery-item.awards {
  background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=800');
}

.gallery-item.training {
  background-image: url('https://images.unsplash.com/photo-1543269865-cbf427effbad?auto=format&fit=crop&w=800');
}

.gallery-item.social {
  background-image: url('https://images.unsplash.com/photo-1559028012-481c04fa702d?auto=format&fit=crop&w=800');
}

.gallery-item.office {
  background-image: url('https://images.unsplash.com/photo-1568992687947-868a62a9f521?auto=format&fit=crop&w=800');
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(16, 64, 102, 0.9));
  color: white;
}

.gallery-overlay h4 {
  color: white;
  margin-bottom: 5px;
  font-size: 18px;
}

.gallery-overlay p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin-bottom: 0;
}

/* WORK ENVIRONMENT */
.environment-section {
  padding: 80px 0;
  background-color: var(--off-white);
}

.environment-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.environment-image {
  height: 450px;
  border-radius: 8px;
  background-image: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w-800');
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.environment-features {
  list-style: none;
}

.environment-features li {
  margin-bottom: 25px;
  padding-left: 40px;
  position: relative;
}

.environment-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-red);
  font-weight: bold;
  font-size: 24px;
  width: 30px;
  height: 30px;
  background-color: rgba(207, 1, 6, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.environment-features h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--dark-blue);
}

.environment-features p {
  color: var(--medium-gray);
  line-height: 1.6;
}

/* GROWTH & DEVELOPMENT */
.growth-section {
  padding: 80px 0;
  background-color: white;
}

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

.growth-card {
  background-color: var(--off-white);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  border-top: 5px solid var(--primary-red);
}

.growth-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  background-color: white;
}

.growth-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(207, 1, 6, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--primary-red);
  font-size: 30px;
}

.growth-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.growth-card p {
  color: var(--medium-gray);
}

/* JOIN OUR TEAM CTA */
.join-team-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  color: white;
  text-align: center;
}

.join-team-section h2 {
  color: white;
  font-size: 36px;
  margin-bottom: 20px;
}

.join-team-section p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

.team-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 50px;
}

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

.team-stat-number {
  font-size: 42px;
  font-weight: 700;
  color: white;
  margin-bottom: 5px;
}

.team-stat-label {
  font-size: 16px;
  opacity: 0.9;
}

@media (max-width: 1024px) {
  .intro-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .environment-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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


}

@media (max-width: 768px) {

  .page-hero {
    padding: 140px 0 60px;
  }

  .page-hero h1 {
    font-size: 36px;
  }

  .page-hero p {
    font-size: 18px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .growth-grid {
    grid-template-columns: 1fr;
  }

  .team-stats {
    flex-direction: column;
    gap: 30px;
  }

  .value-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .value-icon {
    margin: 0 auto;
  }

}

@media (max-width: 480px) {
  .page-hero h1 {
    font-size: 32px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .intro-text h3 {
    font-size: 28px;
  }

  .join-team-section h2 {
    font-size: 30px;
  }

  .intro-image {
    height: 300px;
  }

  .environment-image {
    height: 350px;
  }
}