/* Premium icon system */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.icon--badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(145deg, #e8f4f8 0%, #ffffff 100%);
  border: 1px solid rgba(26, 107, 138, 0.12);
  color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(26, 107, 138, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.amenity:hover .icon--badge {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 107, 138, 0.14);
}

.icon--badge svg {
  width: 26px;
  height: 26px;
}

.icon--logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(26, 107, 138, 0.3);
}

.icon--logo svg {
  width: 22px;
  height: 22px;
}

.icon--stat {
  width: 48px;
  height: 48px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.icon--stat svg {
  width: 24px;
  height: 24px;
}

.icon--inline {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  vertical-align: -4px;
  margin-right: 10px;
}

.icon--contact {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  margin-right: 8px;
  vertical-align: -3px;
}

.booking__contact {
  display: flex;
  align-items: center;
}

.about__features li {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.about__features .icon--inline {
  margin-top: 2px;
}

.icon--modal {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
  color: #2e7d32;
  border: 1px solid rgba(46, 125, 50, 0.15);
}

.icon--modal svg {
  width: 32px;
  height: 32px;
}

.stat--icon {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat--icon .stat__label {
  margin-top: 0;
}

.amenity__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
