/* ===== BENTO GRID ===== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* ===== GLASS CARD ===== */
.glass-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(116, 119, 131, 0.1);
}

/* ===== FEATURE LIST ===== */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 14px;
  font-weight: 600;
  color: var(--on-surface);
}

.feature-list li .material-symbols-outlined {
  color: var(--safety-orange);
  font-size: 20px;
}

/* ===== TAG ===== */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tag-orange {
  background: rgba(245, 130, 32, 0.1);
  color: var(--safety-orange);
}

/* ===== MAP CONTAINER ===== */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border: 1px solid rgba(196, 198, 211, 0.3);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* ===== SERVICE DETAIL CARD ===== */
.service-detail-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: all 0.5s ease;
}

.service-detail-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.service-detail-card .card-image {
  height: 192px;
  overflow: hidden;
  position: relative;
}

.service-detail-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-detail-card:hover .card-image img {
  transform: scale(1.08);
}

.service-detail-card .card-image .icon-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255,255,255,0.9);
  padding: 8px;
  border-radius: 8px;
  backdrop-filter: blur(4px);
}

.service-detail-card .card-image .icon-overlay .material-symbols-outlined {
  color: var(--primary);
}

.service-detail-card .card-body {
  padding: 1.5rem;
}

.service-detail-card .card-body h3 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.service-detail-card .card-body p {
  color: var(--steel-grey);
  font-size: 15px;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-detail-card .card-body ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.service-detail-card .card-body ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 13px;
  color: var(--on-surface-variant);
  font-weight: 500;
}

.service-detail-card .card-body ul li .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--safety-orange);
  flex-shrink: 0;
}

/* ===== PROGRESS STEP CONTAINER ===== */
.progress-line {
  position: absolute;
  top: 36px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.1);
  z-index: 0;
}

/* ===== HERO OVERLAY GRADIENT ===== */
.gradient-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.gradient-dark {
  background: linear-gradient(to bottom, rgba(0, 40, 105, 0.7), rgba(0, 40, 105, 0.9));
}

.gradient-right {
  background: linear-gradient(to right, rgba(0, 40, 105, 0.85), rgba(0, 40, 105, 0.4));
}

.gradient-top {
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent, rgba(0,0,0,0.7));
}

/* ===== IMAGE PLACEHOLDER ===== */
.img-placeholder {
  background: var(--primary);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
