/* ====== LUXURY ABOUT SECTION ====== */
.about-luxury {
  background: linear-gradient(to bottom, #0e0e0e, #1a1a1a);
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
  color: #fff;
  margin-top: 100px;
}

/* Split layout */
.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 80px;
}

.about-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.2);
  transition: transform 0.6s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

.about-content {
  flex: 1;
  min-width: 320px;
}

.section-title {
  font-size: 2.8rem;
  background: linear-gradient(90deg, #ffd700, #ffb700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
}

.gold-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #ffd700, #ffb300);
  margin: 25px 0;
  border-radius: 10px;
  animation: glowLine 3s ease-in-out infinite alternate;
}

@keyframes glowLine {
  from { box-shadow: 0 0 10px #ffb300; }
  to { box-shadow: 0 0 25px #ffd700; }
}

.sub-text {
  color: #d4d4d4;
  font-size: 1rem;
}

/* Service Cards */
.about-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  width: 300px;
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: #ffd700;
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.service-card i {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 15px;
}

/* Vision / Leadership / Promise */
.about-extra {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.extra-card {
  background: linear-gradient(145deg, rgba(255, 215, 0, 0.07), rgba(255, 255, 255, 0.05));
  border-radius: 15px;
  padding: 30px;
  text-align: left;
  border: 1px solid rgba(255, 215, 0, 0.15);
  transition: all 0.4s ease;
}

.extra-card:hover {
  transform: scale(1.02);
  border-color: #ffd700;
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.25);
}

.extra-card h3 {
  color: #ffd700;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.about-footer {
  margin-top: 100px;
  text-align: center;
  font-size: 1.1rem;
  color: #ffd700;
}

/* Responsive */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-content {
    max-width: 600px;
  }
  .service-card {
    width: 100%;
  }
}

.explore-btn {
    background: rgb(58, 58, 58);
    color: gold;
}
