

/* PAGE HERO - OUR TEAMS */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(
    135deg,
    rgba(16, 64, 102, 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;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

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

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 16px;
  color: var(--medium-gray);
}

/* TEAM CULTURE */
.culture-section {
  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;
}

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

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

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

.culture-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.culture-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  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: 20px;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.feature-content p {
  font-size: 14px;
  color: var(--medium-gray);
  margin-bottom: 0;
}

.culture-visual {
  height: 300px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  /*background-image: url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=800");*/
  background-image: url("../../public/img/out-teams-1.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.culture-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: linear-gradient(*/
  /*  135deg,*/
  /*  rgba(16, 64, 102, 0.7) 0%,*/
  /*  rgba(207, 1, 6, 0.3) 100%*/
  /*);*/
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  padding: 40px;
}

/* TEAMS OVERVIEW */
.teams-overview {
  padding: 80px 0;
  background-color: var(--off-white);
}

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

.team-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.team-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.team-image.trading {
  background-image: url("../img/our_team/trading.jpg");
}

.team-image.supply-chain {
  background-image: url("../img/our_team/supply-chain.jpg");
}

.team-image.technology {
  background-image: url("../img/our_team/technology.jpg");
}

.team-image.logistics {
  background-image: url("../img/our_team/logistics.jpg");
}

.team-image.overseas {
  background-image: url("../img/our_team/overseas.jpg");
}

.team-image.qa {
  background-image: url("../img/our_team/qa.png");
}

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

.team-overlay h3 {
  color: white;
  margin-bottom: 5px;
  font-size: 22px;
}

.team-content {
  padding: 25px;
}

.team-specialization {
  display: inline-block;
  background-color: rgba(207, 1, 6, 0.1);
  color: var(--primary-red);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
}

.team-description {
  color: var(--medium-gray);
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.6;
}

.team-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 13px;
}

.team-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--medium-gray);
}

.team-detail i {
  color: var(--primary-red);
}

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

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

.spotlight-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 30px;
  align-items: center;
  background-color: var(--off-white);
  border-radius: 8px;
  padding: 30px;
  transition: var(--transition);
}

.spotlight-card:hover {
  background-color: rgba(16, 64, 102, 0.05);
  transform: translateY(-5px);
}

.spotlight-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 5px solid white;
  box-shadow: var(--shadow);
}

.spotlight-image.member1 {
  background-image: url("https://images.unsplash.com/photo-1560250097-0b93528c311a?auto=format&fit=crop&w=400");
}

.spotlight-image.member2 {
  background-image: url("https://images.unsplash.com/photo-1582750433449-648ed127bb54?auto=format&fit=crop&w=400");
}

.spotlight-content h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

.spotlight-role {
  color: var(--primary-red);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}

.spotlight-quote {
  color: var(--medium-gray);
  font-style: italic;
  margin-bottom: 15px;
  line-height: 1.6;
}

.spotlight-tenure {
  font-size: 13px;
  color: var(--medium-gray);
}

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

.environment-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.environment-image {
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: var(--transition);
}

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

.environment-image.office1 {
  /*background-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=600");*/
  background-image: url("../../public/img/out-teams-1.png");
}

.environment-image.office2 {
  /*background-image: url("https://images.unsplash.com/photo-1568992688065-536aad8a12f6?auto=format&fit=crop&w=600");*/
  background-image: url("../../public/img/out-teams-2.png");
}

.environment-image.team1 {
  /*background-image: url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=600");*/
  background-image: url("../../public/img/out-teams-3.jpg");
}

/*.environment-image.team2 {*/
/*  background-image: url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=600");*/
/*}*/

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

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

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

.join-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto 50px;
}

.process-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px 15px;
  border-radius: 8px;
  transition: var(--transition);
}

.process-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.process-number {
  width: 40px;
  height: 40px;
  background-color: var(--primary-red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-weight: 700;
}

.process-item h4 {
  color: white;
  margin-bottom: 10px;
  font-size: 16px;
}

.process-item p {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 0;
}

/* RESPONSIVE STYLES */
@media (max-width: 1200px) {

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

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

@media (max-width: 1024px) {
  .teams-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

}

@media (max-width: 768px) {

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

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

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

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

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

  .spotlight-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .spotlight-image {
    margin: 0 auto;
  }

  .culture-features {
    grid-template-columns: 1fr;
  }

  .join-process {
    grid-template-columns: 1fr;
  }

}

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

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

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

  .culture-visual {
    height: 350px;
  }
}
