/* Option 2: Glassmorphism Design */

.details-status-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* Background handling */
.ds-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(4px); /* Blurs the image slightly */
  transform: scale(1.1);
}

.ds-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(250, 245, 239, 0.85); /* Beige tint over image */
}

.ds-heading-glass {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: #2b2b2b;
  margin-bottom: 12px;
}

.ds-sub-glass {
  font-size: 1.1rem;
  color: #555;
}

/* The Glass Card */
.glass-card {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.6); /* Semi-transparent white */
  backdrop-filter: blur(12px); /* The frost effect */
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 30px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.glass-card:hover {
  transform: translateY(-5px) scale(1.02);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 15px 45px rgba(179, 106, 34, 0.15); /* Gold shadow */
  border-color: #b36a22;
}

.glass-icon-box {
  width: 60px;
  height: 60px;
  background: #b36a22;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  flex-shrink: 0;
  margin-right: 20px;
}

.glass-info h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #222;
  margin-bottom: 6px;
}

.glass-info p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

.glass-arrow {
  margin-left: auto;
  padding-left: 15px;
  color: #b36a22;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.glass-card:hover .glass-arrow {
  transform: translateX(5px);
}