/* ==============================
   ABOUT US SECTION STYLES
   ============================== */

.about-section {
  background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
    url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4') no-repeat center/cover;
  background-attachment: fixed;
  color: #fff;
  padding: 80px 0 60px;
  position: relative;
}

.about-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-label i {
  font-size: 16px;
}

.about-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  max-width: 700px;
}

/* Philosophy */
.philosophy-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.philosophy-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

/* Years Badge */
.years-badge {
  text-align: center;
}

.years-badge .star {
  color: #c9a84c;
  font-size: 18px;
  position: relative;
  top: -15px;
  left: -5px;
}

.years-badge .number {
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.years-badge .label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
}

/* Explore More Button */
.btn-explore-more {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 0.3s;
}

.btn-explore-more:hover {
  background: #fff;
  color: #0f2a3c;
  border-color: #fff;
}

/* Feature Cards */
.feature-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 25px;
  flex: 1;
  min-width: 200px;
  transition: 0.3s;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 28px;
  color: #c9a84c;
  margin-bottom: 12px;
}

.feature-card h6 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* Play Button */
.play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #c9a84c;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 30px;
}

.play-btn:hover {
  background: #b8932e;
  transform: scale(1.1);
}

.play-btn i {
  color: #fff;
  font-size: 22px;
  margin-left: 3px;
}

@media (max-width: 768px) {
  .about-title {
    font-size: 28px;
  }
  .years-badge .number {
    font-size: 42px;
  }
  .feature-cards {
    flex-direction: column;
  }
  .feature-card {
    min-width: 100%;
  }
}
