:root {
  --purple-glow: radial-gradient(
    circle,
    rgba(163, 71, 255, 0.15) 0%,
    transparent 70%
  );
  --blue-glow: radial-gradient(
    circle,
    rgba(0, 102, 255, 0.1) 0%,
    transparent 70%
  );
  --gold-glow: radial-gradient(
    circle,
    rgba(201, 168, 106, 0.15) 0%,
    transparent 70%
  );
}

.details-section {
  padding: 80px 50px;
  background-color: var(--dark-blue);
  color: #ffffff;
  overflow: hidden;
}

.detail-row {
  display: flex;
  align-items: stretch;
  gap: 60px;
  margin-bottom: 80px;
  position: relative;
  min-height: 400px;
}

.detail-row.reverse {
  flex-direction: row-reverse;
}

.detail-image,
.detail-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.detail-image {
  position: relative;
}

.detail-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  filter: blur(50px);
  z-index: 1;
  opacity: 0.5;
}

.image-glow.blue {
  background: var(--blue-glow);
}
.image-glow.purple {
  background: var(--purple-glow);
}
.image-glow.gold {
  background: var(--gold-glow);
}

.detail-subtitle {
  color: var(--accent-gold);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

.detail-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.detail-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
  max-width: 100%;
}

.detail-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: 1px solid var(--accent-gold);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 5px;
  transition: 0.3s;
  align-self: flex-start;
}

.detail-btn:hover {
  background: var(--accent-gold);
  color: var(--dark-blue);
  transform: translateY(-2px);
}

/* =========================
   DETAILS SECTION RESPONSIVE
========================= */

/* ===== Large Laptop (1400px ↓) ===== */
@media (max-width: 1400px) {
  .detail-row {
    gap: 50px;
  }

  .detail-content h2 {
    font-size: 2rem;
  }
}

/* ===== Laptop (1200px ↓) ===== */
@media (max-width: 1200px) {
  .details-section {
    padding: 70px 20px;
  }

  .detail-row {
    gap: 40px;
    margin-bottom: 70px;
  }

  .detail-image img {
    height: 320px;
  }

  .detail-content h2 {
    font-size: 1.9rem;
  }
}

/* ===== Tablet (992px ↓) ===== */
@media (max-width: 992px) {
  .detail-row,
  .detail-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .detail-content {
    align-items: center;
  }

  .detail-btn {
    align-self: center;
  }

  .detail-image img {
    height: 300px;
  }

  .detail-content p {
    max-width: 650px;
  }
}

/* ===== Mobile Large (768px ↓) ===== */
@media (max-width: 768px) {
  .details-section {
    padding: 60px 20px;
  }

  .detail-row {
    margin-bottom: 60px;
    gap: 30px;
  }

  .detail-content h2 {
    font-size: 1.7rem;
    line-height: 1.3;
  }

  .detail-content p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .detail-image img {
    height: 260px;
  }

  .image-glow {
    width: 90%;
    height: 90%;
  }
}

/* ===== Small Mobile (480px ↓) ===== */
@media (max-width: 480px) {
  .detail-content h2 {
    font-size: 1.5rem;
  }

  .detail-subtitle {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
  }

  .detail-content p {
    font-size: 0.9rem;
  }

  .detail-image img {
    height: 220px;
    border-radius: 10px;
  }

  .detail-btn {
    padding: 9px 18px;
    font-size: 0.8rem;
  }
}

/* ===== Extra Small (360px ↓) ===== */
@media (max-width: 360px) {
  .detail-content h2 {
    font-size: 1.3rem;
  }

  .detail-content p {
    font-size: 0.85rem;
  }

  .detail-image img {
    height: 200px;
  }
}
