/* ============================================
   WHY CHOOSE LIBERTY
   ============================================ */
.why-choose {
  background: linear-gradient(135deg, var(--navy-blue) 0%, #0a2244 100%);
  position: relative;
  overflow: hidden;
}

.why-choose::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('') center/cover;
  opacity: 0.1;
  z-index: 0;
}

.why-choose .container {
  position: relative;
  z-index: 1;
}

.why-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-header .section-label {
  justify-content: center;
}

.why-header .section-label::before {
  display: none;
}

.why-header .section-title {
  color: var(--white);
}

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

.why-card {
  text-align: center;
  padding: 40px 25px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(200, 161, 74, 0.08);
  border-color: var(--gold);
  transform: translateY(-10px);
}

.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(200, 161, 74, 0.3);
}

.why-icon i {
  font-size: 2rem;
  color: var(--midnight-black);
}

.why-card h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--white);
}

.why-card p {
  font-size: 0.88rem;
  color: var(--light-gray);
  line-height: 1.7;
}

/* ============================================
   PROJECTS
   ============================================ */
.projects {
  background: var(--midnight-black);
}

.projects-header {
  text-align: center;
  margin-bottom: 60px;
}

.projects-header .section-label {
  justify-content: center;
}

.projects-header .section-label::before {
  display: none;
}

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

.project-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 380px;
  cursor: pointer;
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

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

.project-card:hover img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 28px;
  background: linear-gradient(to top, rgba(11, 11, 11, 0.95) 0%, rgba(11, 11, 11, 0.6) 60%, transparent 100%);
  transition: var(--transition);
}

.project-category {
  display: inline-block;
  padding: 5px 14px;
  background: var(--gold);
  color: var(--midnight-black);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.project-card h4 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 8px;
}

.project-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--light-gray);
  margin-bottom: 10px;
}

.project-location i {
  color: var(--gold);
  font-size: 0.8rem;
}

.project-desc {
  font-size: 0.85rem;
  color: var(--gray);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease;
}

.project-card:hover .project-desc {
  max-height: 100px;
  margin-top: 8px;
}

/* ============================================
   INDUSTRIES
   ============================================ */
.industries {
  background: var(--dark-gray);
}

.industries-header {
  text-align: center;
  margin-bottom: 60px;
}

.industries-header .section-label {
  justify-content: center;
}

.industries-header .section-label::before {
  display: none;
}

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

.industry-card {
  position: relative;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

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

.industry-card:hover img {
  transform: scale(1.1);
}

.industry-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11, 11, 11, 0.9) 10%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 28px;
  transition: var(--transition);
}

.industry-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.industry-card h4 {
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 6px;
}

.industry-card p {
  font-size: 0.85rem;
  color: var(--light-gray);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.industry-card:hover p {
  max-height: 60px;
}

/* ============================================
   SAFETY SECTION
   ============================================ */
.safety {
  background: var(--midnight-black);
  position: relative;
  overflow: hidden;
}

.safety::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 161, 74, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.safety-content h2 {
  margin-bottom: 24px;
}

.safety-content > p {
  color: var(--gray);
  margin-bottom: 35px;
  line-height: 1.9;
  font-size: 1.02rem;
}

.safety-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.safety-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-fast);
}

.safety-feature:hover {
  border-color: rgba(200, 161, 74, 0.3);
  background: rgba(200, 161, 74, 0.05);
  transform: translateX(5px);
}

.safety-feature-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background: linear-gradient(135deg, var(--navy-blue), var(--navy-blue-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.safety-feature-icon i {
  color: var(--gold);
  font-size: 1.2rem;
}

.safety-feature h5 {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 5px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.safety-feature p {
  font-size: 0.82rem;
  color: var(--gray);
  margin: 0;
}

.safety-image {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 500px;
}

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

.safety-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 45, 82, 0.3), transparent);
}

.safety-badge {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: rgba(11, 11, 11, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 20px 25px;
  border-radius: 10px;
  border: 1px solid var(--gold);
  z-index: 2;
}

.safety-badge .badge-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.safety-badge h5 {
  font-size: 1rem;
  color: var(--white);
}

.safety-badge p {
  font-size: 0.8rem;
  color: var(--light-gray);
  margin: 4px 0 0;
}
