/* Lien He Page Specific Styles */

/* Main Content Layout */
.main-content-wrapper {
  padding: 60px 0;
}

/* Contact Info Section */
.contact-info-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  background: linear-gradient(135deg, #fff9f0 0%, #ffffff 100%);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-info-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #cd3333, #ffd591, #cd3333);
}

.contact-title {
  font-size: 48px;
  font-weight: 900;
  color: #cd3333;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 60px;
  line-height: 1.2;
  position: relative;
  padding-bottom: 20px;
}

.contact-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #cd3333, transparent);
}

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

.contact-info-item {
  display: flex;
  gap: 20px;
  padding: 35px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.contact-info-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #cd3333, #ffd591);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.contact-info-item:hover {
  box-shadow: 0 8px 25px rgba(205, 51, 51, 0.2);
  transform: translateY(-5px);
  border-color: #ffd591;
}

.contact-info-item:hover::before {
  transform: scaleY(1);
}

.contact-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffd591, #fed187);
  border-radius: 50%;
  color: #cd3333;
  box-shadow: 0 4px 12px rgba(205, 51, 51, 0.15);
  transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(205, 51, 51, 0.25);
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-info-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-info-label {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin: 0;
  line-height: 1.3;
}

.contact-info-text {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.contact-info-link {
  font-size: 16px;
  color: #cd3333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-link:hover {
  color: #b21c24;
  text-decoration: underline;
}

.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-social-link {
  display: inline-block;
  padding: 10px 18px;
  background: linear-gradient(135deg, #ffd591, #fed187);
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
}

.contact-social-link:hover {
  background: linear-gradient(135deg, #cd3333, #b21c24);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(205, 51, 51, 0.3);
  border-color: #ffd591;
}

/* Job Listings Section */
.job-listings {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.job-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.job-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.job-image {
  width: 200px;
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.job-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.job-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.job-title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
}

.job-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.job-detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #666;
}

.job-detail-item.salary {
  color: #b21c24;
  font-weight: 600;
}

.job-detail-item.location,
.job-detail-item.date,
.job-detail-item.positions {
  color: #333;
}

.job-actions {
  margin-top: auto;
}

.detail-btn {
  background-color: #ffd591;
  color: #333;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.detail-btn:hover {
  background-color: #fed187;
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-section {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sidebar-header {
  background-color: #b21c24;
  color: white;
  padding: 15px 20px;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.sidebar-content {
  padding: 20px;
}

/* Job Categories */
.job-categories {
  list-style: none;
}

.job-category-item {
  margin-bottom: 10px;
}

.job-category-link {
  display: block;
  padding: 12px 15px;
  color: #333;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  font-size: 16px;
}

.job-category-link:hover,
.job-category-link.active {
  background-color: #ffd591;
  color: #333;
}

/* News Section */
.news-content {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 1200px) {
  .contact-info-section {
    padding: 60px 30px;
  }

  .contact-info-grid {
    gap: 30px;
  }

  .contact-title {
    font-size: 40px;
    margin-bottom: 50px;
  }
}

@media (max-width: 968px) {
  .contact-info-section {
    padding: 50px 25px;
    border-radius: 15px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .contact-info-item {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .main-content-wrapper {
    padding: 40px 0;
  }

  .contact-info-section {
    padding: 40px 20px;
    border-radius: 12px;
  }

  .contact-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .contact-info-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 15px;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
  }

  .contact-icon svg {
    width: 20px;
    height: 20px;
  }

  .contact-info-label {
    font-size: 18px;
  }

  .contact-info-text,
  .contact-info-link {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .contact-info-section {
    padding: 30px 15px;
  }

  .contact-title {
    font-size: 28px;
    margin-bottom: 25px;
  }

  .contact-info-item {
    padding: 20px;
  }

  .contact-social-links {
    gap: 8px;
  }

  .contact-social-link {
    padding: 6px 12px;
    font-size: 12px;
  }
}
